PSD to HTML Conversion at affordable prices

PSD to HTML Conversion at affordable prices

HTML5, WordPress
We put focus and attention to your website and ensure that we only create the best professional designs for you.We design websites that are cross browser compatible, visually incredible and very easy to navigate. Our priority and responsibility is to give full customer satisfaction by providing the most affordable and highly impressive website designs with latest web standareds. We make sure that we know every little thing about the company to make sure that we incorporate the image and brand of the company in their websites. We put time to really conceptualize a design that is professionally done and very well represents a company.
Read More

WHY WORDPRESS ASKS FOR FTP CONNECTION INFO?

PHP, Web Design & Programming, Web Development Services, WordPress
Whenever you use the WordPress admin panel to  install, upgrade, or delete plugins, WordPress must make changes to files on their filesystem.Before making any changes, WordPress first checks to see whether or not it has access to directly manipulate the file system. If WordPress does not have the necessary permissions to modify the filesystem directly, you will be asked for FTP credentials so that WordPress can try to do what it needs to via FTP. HOW TO RESOLVE IT? In order to fix this issue, you will need to make sure that the scripts which need to write to the filesystem are owned by the same user that apache is running as. WordPress asks for your FTP credentials when it can't access the files directly. This isusually caused by PHP running…
Read More

Adding Menu Descriptions in a WordPress Theme

CMS, Web Design & Programming, Web Development Services, WordPress
WordPress 3.x menu has a very nice feature where you can add descriptions with each menu items. But this feature is hidden by default. When enabled displaying these description is not supported sometime in few themes. These menu descriptions provides a better user experience on your website and these descriptions can be used to show visitors more about a menu item. Most of the themes are not designed with menu-item descriptions but here We can guide you how to enable menu descriptions in WordPress and how to add each menu descriptions in your WordPress theme. You can follow these simple steps to show menu description for your WordPress theme: 1. Go to Menu section and click on screen option in top right. 2. Tick the checkbox of description and click…
Read More

WordPress Category template

Web Design & Programming, WordPress
If you want to create a different category template of wordpress theme to display specific category. You can do this by saving your Category template as category-xxx.php . Please note that adding hyphen ("-") and the category id to the file name. So, category-xxx.php will be used to display category that have ID  xxx, & category-1.php will be used for category ID 1. You can follow the same logic of hyphen and id number for individual post template creation.
Read More

How to Customize the WordPress admin bar?

CMS, PHP Scripts, Tutorials, Web Design & Programming, WordPress
In WordPress 3.3 version there is a handy admin bar that provides quick access to some Admin features for logged in users. There are several ways to do customize it by creating functions. Here I will show, how you can customize the admin bar the way you want. WorPress adds a black menu bar (Admin Bar or Toolbar) at the top of the screen when user is logged in. This menu bar is also visible even when you are at the front end of the site and provide you a quick links of pages quickly. WordPress allows us to customize the this bar and it’s possible to add new links (menu items) in that bar or remove or change the existing ones. Using admin_bar_menu or wp_before_admin_bar_render hook we can customize…
Read More

How to customize your WordPress dashboard

CMS, PHP, Tutorials, Web Development Services, WordPress
There are many ways to customize the WordPress Dashboard. In default Wordpress Installation WP Dashboard have a brief view of the main sections of your site in terms of meta boxes, they also provide granular & graphical data on everything from recent comments & plugin updates to incoming links as well as WordPress latest news. There are many of dashboard widgets and plugins available in the WordPress Plugin Directory that you can use to transform your Dashboard into nice customized dashboard with your own text/images and links, or even disable it completely. The details of new plugins, WordPress News & Blog Updates , all these sections are added using the wp_dashboard_setup() hook and we can used it to remove them. You can use below code in your theme`s functions.php file…
Read More

AJAX in WordPress

Ajax, CMS, PHP, Tutorials, WordPress
Introduction AJAX = Asynchronous JavaScript and XML AJAX is not a programming language, but a way to use existing standards, AJAX is the art of exchanging data with a web-server, and updating parts of a web page - without reloading the whole page. Here is a basic example of how we use AJAX in WordPress. It explains how to take a variables from JavaScript and pass it to a PHP function,  and then pass it back to the JavaScript. For using this you must know how to enqueue JavaScript in Wordpress. JavaScriptCode [code] //PS: you may need to add jQuery Library in your theme for using this in some cases, but in admin side, jQuery is already added. jQuery(document).ready(function($) { // here you can get any user input or can…
Read More

Powerful WooCommerce Plugins for Your WordPress eCommerce Sites

CMS, Web Development Services, WordPress
All WordPress users knows about WooCommerce, It is very popular eCommerce plugin. WooCommerce provides you opportunity to turn your WordPress websites into a Powerful eCommerce websites with unlimited features. If you are looking for plugins that allows you to sell your products on your WordPress website, we recommend WooCommerce. Here are some WooCommerce plugins we collected by search engines as well as while working on many websites. You also can use these plugin for eCommerce websites.  Some of those are having multi-language feature,  so it can be transform your store into any language you need with WPML! These are the Powerful WooCommerce Plugins for Your WordPress eCommerce sites: WooCommerce Product Already In Cart Woocommerce Order Limits WooCommerce Product Listing WooCommerce – ShareASale Merchant Connector Loyalty Rewards Product Slider Multiple Images…
Read More

WordPress permalinks issue on Yahoo hosting

News, WordPress
Yahoo doesn't allow users access to the .htaccess file which means that you can`t use custom permlinks in Wordpress. The Only way that works is to add "/index.php/" to the beginning of your permalinks structure so set the value as /index.php/%postname%/ or what ever you want as long as you add /index.php/ before them. http://codex.wordpress.org/Using_Permalinks#Permalinks_without_mod_rewrite You may also try this which do same as .htaccess do.
Read More