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.