Creating Custom Post Types by PHP code

WordPress
There are two methods by which we can use to create our own custom post types: 1. By Using Plugins 2. By Using hard code into your theme’s functions.php file. "Custom Post Type UI" is a nice plugin that allows you to easily create custom post types as well as taxonomies. This also provides PHP code to create custom post types, so you can use it into your theme’s functions.php file. If you want to use custom post types without a plugin, then just add the following PHP code to your functions.php file: // Creating Videos a Custom Post Type register_post_type('videos', array( 'label' => 'Videos', 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => array('slug' => 'videos'), 'query_var' => true, 'supports' => array( 'title', 'editor',…
Read More

WordPress permalinks and passing custom Variables to it

WordPress
Sometimes we need a simple way of passing a custom variable(s) to WordPress. WordPress has a organised way in this respect as it passes a lot of arguments in URL, so unless you want to grub around directly with the $_GET array, then this solution is a little more elegant. First look at the code: function add_query_vars($aVars) { $aVars[] = "myVar"; // represents the name of the custom variable you want to add in URL return $aVars; } add_filter('query_vars', 'add_query_vars'); function add_rewrite_rules($aRules) { $aNewRules = array('mypage/([^/]+)/?$' => 'index.php?pagename=mypage&myVar=$matches[1]'); $aRules = $aNewRules + $aRules; return $aRules; } add_filter('rewrite_rules_array', 'add_rewrite_rules'); Explanation: function add_query_vars($aVars) { $aVars[] = "myVar"; // represents the name of the custom variable you want to add in URL return $aVars; } add_filter('query_vars', 'add_query_vars'); This function tells wordpress that we…
Read More
Best WordPress Framework to Use?

Best WordPress Framework to Use?

WordPress
WordPress theme developers have created some schemes and processes to make theme development faster and easier. Some develop  an HTML pages first and then develop the WordPress theme of it. This way they have to re-write all codes from HTML to PHP. This time of developing WordPress theme can be reduced by a other way. You can start with the WordPress codes and develop your design around that. This increases the speed of the coding process because you just type in a language that WordPress understands. A Theme Framework is a code library that can be used to speed up the process of Wordpress Theme Development. It can be Another Theme that act as a Starter or a Parent Theme. Theme Frameworks are those tools that make the process of creating WordPress function. A Developer need not to re-write the…
Read More
Twitter AutoPost WordPress Plugin

Twitter AutoPost WordPress Plugin

Free WordPress Plugins, Plugins
WP Twitter Autopost allows WordPress Authors to set their twitter status be updated whenever a new post is published,keeping your content alive and drive traffic to your site. It allows wordpress publishers to automatically post their new posts to their Twitter account. It will take the title of a new post and will submit it to the Twitter account specified that is connected in the options. It will also add the link back to the post, allowing your twitter followers to access the post details. Rate Us / Feedback Please take the time to let us and others know about your experiences by leaving a review, so that we can improve the plugin for you and other users. Want More? If You Want more functionality or some modifications, just drop…
Read More
WordPress Responsive Slider plugin

WordPress Responsive Slider plugin

Free WordPress Plugins, Plugins
Description WP Responsive Jquery Slider is world renowned as the most beautiful and easy to use slider on the market. Create dynamic slideshows that adapt to any screen in just few clicks. WP Responsive Jquery Slider one of the best ways to display lots of information in a relatively small space while adding cool functionality to a web page. The jQuery plugin is completely free and totally open source, and there is literally no better way to make your website look totally stunning. Features -Easy to install. -Tons of configuration options. -Fully responsive - will adapt to any device. -Uses jQuery transitions for slide/fade animation. -Browser support: Firefox, Chrome, Safari, Opera , IE7+ Rate Us / Feedback Please take the time to let us and others know about your experiences…
Read More
Facebook Auto Post WordPress Plugin

Facebook Auto Post WordPress Plugin

Free WordPress Plugins, Plugins
Description A Simple wordpress plugin to automatically post your wordpress posts and pages on Facebook along with their featured image. You can also auto post your custom post on facebook wall. It is very easy to set up and configure. You can also customize setting for following features: You can auto post you facebook posts, page and custom post on facebook ball. All the post and page will posted on facebook along with their feature image. You can auto publish the post and page on your or others facebook page You can easily authicate yourself by just clicking on Authenticate button. You can customize the setting for sending a default image if no image is available for your post. You can also set the default image by putting the link…
Read More
Facebook Comments WordPress Plugin by Vivacity

Facebook Comments WordPress Plugin by Vivacity

Free WordPress Plugins, Plugins
Description A simple Facebook Comments plugin for your site.It is a social plugin for enables Facebook users commenting on your site.There are potions for enable Facebook comments on posts/pages/home of your site. You cab also customize setting for following features: * Hide/show facebook comments on posts/pages/home. * You can customize Width. * You can set - Color Scheme (Light or Dark) * HTML5 and XFBML versions of facebook comments. * Moderation option. Rate Us / Feedback Please take the time to let us and others know about your experiences by leaving a review, so that we can improve the plugin for you and other users. Want More? If You Want more functionality or some modifications, just drop us a line what you want and We will try to add or…
Read More
Creating WordPress Network

Creating WordPress Network

WordPress
A multisite network is a collection of websites that all share the same WordPress installation." These websites in a network can also share plugins and themes. The individual websites in the network are virtual websites because they do not have their own directories on your hosting server, although they do have separate directories for media uploads within the shared installation, and they do have separate tables in the database too. WordPress 3.x version have a important feature to create a network of websites by using its multi-site feature. Here We will have all instructions for creating a multisite network for your Wordpress blog. You can create a multisite network in which administrator can add new websites.A multisite network can be very similar to your own personal version of WordPress.com. Step…
Read More

Adding Rupees Sign to Magento Store

Magento
Now adding Rupee Sign to your Magento Store is very easy, just follow these steps and you will be done. 1. Download this JS file from here and upload to root/js folder. 2. Open file here app/design/frontend/default/YOUR THEME/layout/page.xml and add a new line <action method=”addJs”><script>rupee.js</script></action> after  <block type=”page/html_head” name=”head” as=”head”>. 3. Open a file lib/Zend/Locale/Data/root.xml and find code <symbol>Rs</symbol> and replace it with <symbol>Rs. </symbol> That`s It. Note: Dont forget to clear cache. Now you can see a nice Rupee Sign in frontend.
Read More
Responsive Slider for Magento

Responsive Slider for Magento

Extensions, Free Magento Extensions
Slider adds a nice feature to a website, and if its responsive then it becomes a super feature, users can play it on mobile devices too.   We have recently launched a Magento Reposive Slider Extension. Its easy to install and configure, you can add it to your Magento store within few minutes. Just Download it here ,and upload it to your Magento sore with Magento connect feature. If you are having any trouble for configuring Magento Extension or looking for a Eexpert Magento Developer , click here for help.
Read More