-
12 Sep
How to add your custom column on post or page list page in wordpress
Want to add your plugin custom column to post or page list page ? here is the code for add column to post listing table
- Category :
- Wordpress
-
12 Sep
Add color picker to your plugin or theme in wordpress 3.5 and heigher version
Want to add new color picker in your wordpress plugin or theme ? Here is step by step guide for how to add new color picker in your plugin or theme
- Category :
- Wordpress
-
11 Sep
How to make form in ZEND Framework
Anyone can create form in Zend framework by following steps Zend Framework follow as MVC Framework (MODEL-VIEW-CONTROLLER) . So need to create three folder as per MVC structure
- Category :
- PHP
-
11 Sep
How to Customization X-Cart Template
There are three different home templates.Which is defined by selected layout
- Category :
- ecommerce
- oscommerce
-
11 Sep
Display your custom help tabs in any wordpress admin page
do you want to display your plugin guide or video on wordpress admin help section ? Here is code for how to add your custom help tabs in help section of wordpress admin View Code PHP1 2 3 4 5 <?php
class myCustomhelp {
public function __construct() {
add_filter(’contextual_help’, array($this, ‘my_custom_help_tab’), 10, 2);
}- Category :
- Wordpress
-
11 Sep
Content tagging in Joomla
Every joomla user wants a content tagging. While this is already available feature in core in WordPress, but in Joomla we had to install additional component to have such feature. So now the wait is over as Joomla 3.1 has content tagging. Feature that is easy to use and implement.
- Category :
- Joomla
-
10 Sep
Display Products image using thickbox to oscommerce admin section
This article describe how can you can display products image in thickbox in admin panel. First download jquery thickbox plugin from any website. thickbox plugin is contain thickbox css and js file and images.
- Category :
- ecommerce
- oscommerce
-
09 Sep
How to set SMTP with Oscommerce ?
Following way we can setup SMTP to Oscommerce based web application First of all go to admin panel ,
- Category :
- ecommerce
- oscommerce
-
07 Sep
Display Product manufacturer name and logo on products listing page in oscommerce
This article describe how can you can display manufacturer name and logo on product listing page in your oscommerce store. Login in your oscommerce store admin panel and go to configuration -> product listing section. Now click on the display product manufacturer name option and click on edit button.
- Category :
- oscommerce
-
07 Sep
How to assign Smarty Variable using Object
In Smarty Framework widely used today as template based engine. So developer can easily update site layout without touch php code. Lets see how to assign smarty variable using object
- Category :
- ecommerce