At last i have done a good job normally every one set there newsletter ans run this link from there browser
"http://yoursite.com/index.php/admin/newsletter_queue/sending"
but i have change it a little bit
i have found the page which is 'app\design\adminhtml\default\default\template\newsletter\queue\list.phtml'
in this page getChildHtml('grid') ?> this function call the list body
which come from 'app\code\core\Mage\Adminhtml\Block\Newsletter\Queue\Grid\Renderer\Action.php' open this page and add this code
$actions[] = array(
'url'=> $this->getUrl('*/newsletter_queue/sending'),
'caption'=>Mage::helper('newsletter')->__('Send'),
'popup' =>true
);
in line number 77 before this code $this->getColumn()->setActions($actions);
now you can see a drop down list in your newsletter queue click on it , it will send your not sent news letter.
Tuesday, September 21, 2010
Friday, September 17, 2010
Change your Customer welcome email template
It is very simple to do but you have to know the proper process.
If you want to create a customize template for the welcome email then you have to create it first from System -> Transactional Emails , Now add a new Template , create it and save it.
Now go to the System -> Configuration. then Customers -> Customer Configuration ,and then "Customer New account options"
change the Default Welcome Email, Confirmation Link Email, Welcome Email with your template.
save config
Now your welcome mail will send with your template.....
If you want to create a customize template for the welcome email then you have to create it first from System -> Transactional Emails , Now add a new Template , create it and save it.
Now go to the System -> Configuration. then Customers -> Customer Configuration ,and then "Customer New account options"
change the Default Welcome Email, Confirmation Link Email, Welcome Email with your template.
save config
Now your welcome mail will send with your template.....
Wednesday, September 15, 2010
Soap api use in magento
This was a very big problem for me. Soap client is running in the local host but it's not working in live server.
In be4 i used this code
$proxy = new SoapClient("http://navsoft.co.in/ironore/api/soap/?wsdl");
but it's not running at last i have solved it
i use this code
$proxy = new SoapClient("http://192.168.0.65:80/ironore/api/soap/?wsdl");
where 192.168.0.65 is the local ip of navsoft.co.in now the magic point is that you have to put the port number which is 80 . after that it will run in the server.
In be4 i used this code
$proxy = new SoapClient("http://navsoft.co.in/ironore/api/soap/?wsdl");
but it's not running at last i have solved it
i use this code
$proxy = new SoapClient("http://192.168.0.65:80/ironore/api/soap/?wsdl");
where 192.168.0.65 is the local ip of navsoft.co.in now the magic point is that you have to put the port number which is 80 . after that it will run in the server.
Tuesday, September 7, 2010
Extension for WYSIWYG Editor
magento-community/Fontis_Wysiwyg
this is the best extension for gift coupon magento-community/Unirgy_Giftcert
this is the best extension for gift coupon magento-community/Unirgy_Giftcert
Thursday, September 2, 2010
There have an extension available for magento to integrate eBay store.
http://rapidshare.com/files/416607210/m2epro_2.zip
download the file from the above link, now extract the rar file and paste all the folder in your magento root directory. Now you can see in your admin panel a menu "M2E Pro" added in the top menu.
http://rapidshare.com/files/416607210/m2epro_2.zip
download the file from the above link, now extract the rar file and paste all the folder in your magento root directory. Now you can see in your admin panel a menu "M2E Pro" added in the top menu.
Subscribe to:
Posts (Atom)