Posts Tagged ‘How To’

 
 

Display video from any source with proplayer

Posted 18 Nov 2011 — by herman
Category WordPress Plugins

Do you have website/blog has contain video? or do you want to make a website with video as the content. Now you can use this plug in to show any video. You can places video not just from youtube but you can places any video from other source like vimeo, veoh, etc. every your posting by using JWFLV Player.

You can display it as one single player with 27 different skins, custom playlists, and also you can add the rating of each video posted. Also you can adding Audio Visualizer, Watermarks Displaying.

ProPlayer with watermark display

You may choose video from many server,currently supported video source are :

  1. Dailymotion
  2. Google Video
  3. Youtube included youtube playlist
  4. Vimeo
  5. Myspace
  6. Veoh
  7. Youku

and for you own video you can upload your video to youtube or other supported video source then get the code.

Do you interested to use this plugin, please download here , Then upload and install it as your new plug in.

How To Change Search URL on WordPress

Posted 19 Sep 2011 — by WPGPL Team
Category WordPress Tricks

We already know that WordPress Search URL is http://wpgpl.com/search/keyword right? Now we got nicely tips and we will show you how to change this search URL permalink. This tips coming from Andrew Keith. You need to paste this code on functions.php to make it works.

Open your functions.php on your theme and add this code

function custom_search_url( $search_rewrite ) {
if( !is_array( $search_rewrite ) ) { return $search_rewrite; }

$new_array = array();
foreach( $search_rewrite as $pattern => $s_query_string ) {
$new_array[ str_replace( 'search/', 'new-search-url/', $pattern ) ] = $s_query_string;
}
$search_rewrite = $new_array;
unset( $new_array );
return $search_rewrite;
}
add_filter("search_rewrite_rules", "custom_search_url");

Please notes this code didn’t redirect any /?s=Search but this code will redirect any /search/ into something else domain. We hope this tutorial to change search URL on WordPress worked on you

WP Tutorual: Rename a WordPress Post Format

Posted 24 Aug 2011 — by WPGPL Team
Category WordPress Tricks

WPMU.org has been introduced wonderful ways about How to Quickly Rename a WordPress Post Format. You can follow the step on WPMU.org about the details how to do it.

Please note you will need text editor, because you will needed to edit and added some function on your functions.php in your current theme. Check it out

Tutorial Enable Google’s Social Interaction Analytics for Your WordPress Site

Posted 11 Aug 2011 — by WPGPL Team
Category WordPress Tricks

Like we all know, Google has a new toy, Google+ Social Network Application that try to give something different what Facebook has been made.

Before Google+ launches, Google Already introducing +1, another service to interact user and their search result. More details instruction how to Integrate Google’s Social Interaction Analytics is easy. You can read more details here before you decide to move on. And you can began to implemented it using Google Sample Analytics code on this page

How To Create Dynamically Search Categories and Child Categories Only Form

Posted 14 Dec 2010 — by WPGPL Team
Category WordPress Tricks

Using WordPress there are unlimited abilites, all you can do on WordPress. Today WordPress Tutorial is How To Create Dynamically Search Categories and Child Categories Only Form.

There are some problem or litle bit hack to create custom WordPress, example we want to create search form only on spesify categories. Using This code below you can do it easely. Read the rest of this entry »

How To Change Favicon on My Themes

Posted 31 May 2009 — by WPGPL Team
Category WordPress Tricks

favicon

Have you ever know, almost my Free WordPress Theme, contain small icon that display on the url bar. This icon is small sign that more easy to indicate which web address that you currently view or easy to manage if you have a lot of tabs opened together.

This Post will show you how to change Original Theme Favicon, with your own favicon. To change this icon is simple. You must have the favicon that you want to use. You can made it with Adobe Photoshop and looking around the net some favicon generator. After your favicon ready, all need to do just replaced my original theme favicon that usually placed on MyThemeName/favicon.ico with your favicon. Read the rest of this entry »

How To Fix Popularity Contest Plugins

Posted 14 May 2009 — by WPGPL Team
Category WordPress Tricks

popularity-contest

Popularity Contest is wonderful plugins developed by Alex King. This is my favorite plugins so far. Favorite to add little stats for my popular content on my current blog. The problem is, this plugins can’t be activated in WordPress 2.5 – 2.7. Some user give suggestion to execute this plugin manually. Read the rest of this entry »