Sunday, December 29, 2013

Wordpress Banner Slider (Backend Side)

Sorry, no attachments exist.
WordPress banner Slider by mayank patel


Wordpress Banner Slider (Backend Side)

Saturday, December 14, 2013

Sunday, December 8, 2013

Wordpress change email from wordpress@domain.com to custom email address

function change_from_email_name()


$message = get_option(‘blogname’);

return $message;


add_filter(‘wp_mail_from_name’, ‘change_from_email_name’); // // changes email from default “wordpress@yourdomain.com”//

function change_from_email()


$message = get_option(‘admin_email’);

return $message;


add_filter(‘wp_mail_from’, ‘change_from_email’); /// Changed by mayank patel over ////


Wordpress change email from wordpress@domain.com to custom email address

Wordpress change registration email from wordpress@domainname.com to custom email.

On function.php file of current theme place follownig code at last

function change_from_email_name()

$message = get_option(‘blogname’);

return $message;


add_filter(‘wp_mail_from_name’, ‘change_from_email_name’);

//

// changes email from default “wordpress@yourdomain.com”

//

function change_from_email()

$message = get_option(‘admin_email’);

return $message;


add_filter(‘wp_mail_from’, ‘change_from_email’);


Wordpress change registration email from wordpress@domainname.com to custom email.

Sunday, December 1, 2013

Magento print query for throughout site.

Lib/zend/Db/Adapter/Abstract.php

find :

public function query($sql, $bind = array())


after :

$sql = $sql->assemble();

//echo $sql . “\n<br />\n”;

// var_dump($bind);


Magento print query for throughout site.

Magento extension for facebook comments from product detail page.

Sorry, no attachments exist.

Magento extension for facebook comments from product detail page.


Magento extension for facebook comments from product detail page.

Magento customer credit extension.

Sorry, no attachments exist.

Magento customer credit extension.


Magento customer credit extension.

Thursday, November 28, 2013

Magento blacklist email address extension

Sorry, no attachments exist.

Magento blacklist email address extension



Magento blacklist email address extension

Magento extension for one page easy checkout

Sorry, no attachments exist.

Magento extension for one page easy checkout



Magento extension for one page easy checkout

Magento improve one page checkout with designing (css only)

Sorry, no attachments exist.

Magento improve one page checkout with designing (css only)



Magento improve one page checkout with designing (css only)

Magento Google analytics extension

Sorry, no attachments exist.

Magento Google analytics extension



Magento Google analytics extension

Magento comments on checkout extension

Sorry, no attachments exist.

Magento comments on checkout extension



Magento comments on checkout extension

Magento developer toolbar extension

Sorry, no attachments exist.

Magento developer toolbar extension



Magento developer toolbar extension

Magento facebook likebox and connect extension.

Sorry, no attachments exist.

Magento facebook likebox and connect extension.



Magento facebook likebox and connect extension.

Wordpress Extension for Album and image gallery

Sorry, no attachments exist.

Wordpress Extension for Album and image gallery


Wordpress Extension for Album and image gallery

Wordpress Extension BackUpWordPress files and databases

Sorry, no attachments exist.

Simple automated back ups of your WordPress powered website.

Wordpress Extension BackUpWordPress files and databases



Wordpress Extension BackUpWordPress files and databases

Wordpress Extension for page navigation (pageination display format)

Sorry, no attachments exist.

Wordpress Extension for page navigation (pageination display format)



Wordpress Extension for page navigation (pageination display format)

Wordpress Extension for maintanance mode

Sorry, no attachments exist.

Wordpress Extension for maintanance mode



Wordpress Extension for maintanance mode

Magento Video Gallery Extensions

Sorry, no attachments exist.

Magento Video Gallery Extensions)



Magento Video Gallery Extensions

Steps to Move WordPress From Local Server to Live Site

Step 1: Export Local WordPress Database

Step 2: Uploading WordPress Files to Live Site

Step 3: Creating MySQL Database on Live Site

Step 4: Importing WordPress Database on Live Site

Step 5: Changing the Site URL (on wp_options table see siteurl option , update it),(on wp_options table see home option , update it)

Step 6: Setting Up your Live Site

Step 7: Fixing Images and Broken Links by updating Paths

UPDATE wp_posts SET post_content = REPLACE(post_content, ‘localhost/test/’, ‘www.yourlivesite.com’);



Steps to Move WordPress From Local Server to Live Site