Posts categorized into Tutorial :

Limited Fixed Area Using jQuery

Written by Fikri Rasyid at

Limited Fixed Area

Have you seen or used Thoughtplifier theme? If you notice, there is this “limited fixed sidebar“. Basically it’s an element which is positioned using the position: relative absolute combo and its top CSS property is dynamically modified using jQuery. read more →

Tables Involved in WordPress Menu Feature

Written by Fikri Rasyid at

WordPress Menu Builder

Lately one of the project i’m involved in is having this weird issue which unable to save the whole menu items we made (The menu item saving process is suddenly ended after 80-something menu items are saved). Okay, it. read more →

Simple Do-It-Yourself Modal Box

Written by Fikri Rasyid at

Modal Box in action

Here’s a simple truth about modal box: It is ridiculously easy to be made.. read more →

Dead Simple Do-It-Yourself Tabbed Area Using jQuery

Written by Fikri Rasyid at

Tabbed Area

Why do we have to learn how to code tabbed area while there are so many plugins that able to create a tabbed area instantly? Why do we have to reinvent the wheel? Because understanding how it works is. read more →

Filling Form Field by Clicking Image Using jQuery’s .attr()

Written by Fikri Rasyid at

Screen shot 2011-09-25 at 4.36.13 PM

Someone asked me how did i make the kartunama.net’s shopping chart on its order page. To be honest, it’s just a simple form with lots of javascript functions to make it interactive. The basic principle of the form is. read more →

WordPress Manageable Random Background Using Post-Type

Written by Fikri Rasyid at

WordPress Tutorials

We’ve discussed about creating simple random background in WordPress, including its cons which has no back-end interface, on the previous post. Some people are okay with having no backend interface since they have access to put the image directly. read more →

WordPress Simple Random Background Using Matt Mullenweg’s randomimage script

Written by Fikri Rasyid at

WordPress Tutorials

Several days ago, a friend of mine @arhamHaryadi asked me about how to make a random background which changes every time visitor visit / refresh the page. The answer is simple yet easy, use Matt Mullenweg’s randomimage script. Instruction. read more →

Using wp_enqueue_style() to load Google Webfonts in WordPress

Written by Fikri Rasyid at

Google Webfonts

Google webfonts rocks. I had used it in some projects and it worked like a charm. To use Google webfont, basically all you need to do is adding the stylesheet which is hosted in Google servers to your <head>. read more →

Problem With WordPress Custom Nav Menu

Written by Fikri Rasyid at

WordPress Custom Nav Menu

Yesterday i was changing my personal blog’s theme due to compatibility problem with WordPress 3.1.1. FYI, the theme was developed for 3.0 version so it has a problem on its custom post type archive page. However, weird thing happened:. read more →

Hooking Function Using add_action()

Written by Fikri Rasyid at

WordPress Tutorials

If you want to “hook” a function into another function in WordPress, add_action() is what you need. Why do you want to hook a function into another function? Because there is functionality which is not accommodated by current function,. read more →