jQuery Tutorial : Simple ajax star rating with php (extended)
Some people ask me question about how to implement my last star rating in multiple star rating, and here is the answer on how to implement it. 1. Upgrade latest table Since you’ll need to add ‘id’ on...
View ArticleWPTrick : Add new element into wp menu
A simple trick to add new element into your wp menu.In this case I want to add custom search form to may Just add this codes to your wp code I usually put in in functions.php <?php // Filter...
View ArticleWordPress : Get page permalink by name, slug or title outside loop
I know we have get_permalink() in WordPress to get permalink by id of specific page. So this post is only alternative how to get the permalink by name, slug or title. 1. Get Page ID by name, slug or...
View ArticleRH Yahoo! Messenger WordPress Plugin
Hi, there. In this post I want to introduce my first WordPress plugin :D. This plugin is a widget plugin that will shows multiple Yahoo! Messenger Status of your own. So here it is.. Installation The...
View ArticleNewscoop Contest Design
Newscoop is an open source CMS used by hundreds of independent news organisations to publish content online. Sourcefabric are looking for individuals to create a new theme that brings together quality...
View ArticleWordPress : Custom Action Hook in Action
There are two types of hook in WordPress, filter and action. And in this occasion I will try to give examples about Actions hook. According to codex.wordpress.org: Actions: Actions are the hooks that...
View ArticleWordPress : How to get category ancestor
Here is code I usually use to find ancestor or parent of a category function getCategoryAncestor($cat,$index=0){ $parentCatList = get_category_parents($cat,false,','); $parentCatListArray =...
View ArticleOut of memory when running large queries in Laravel
Have you ever faced “Out of memory” issue when running some large queries in Laravel?exception 'Symfony\Component\Debug\Exception\FatalErrorException' with message 'Out of memory (allocated xxxx)...
View ArticleLaravel 5.1 Pretty Pagination URL
I’m currently working on Laravel 5.1 websites and need some modification to laravel pagination. So in this post we will create laravel 5.1 pretty pagination URL. This steps will produce...
View ArticleEmbed facebook conversion pixel for woocommerce
This code will track product purchase / checkout. Copy and paste below codes to your functions.php and don’t forget to change xxxxxxxxxx with your own facebook pixel code.<?php function...
View Article