Here is the simple code to calculate date difference 123456789$date_to="2011-11-26"; //(Year / Month / Day) $date_from="2009-11-12"; $date_to= date("d-M-Y",strtotime($date_to)); $date_from= date("d-M-Y",strtotime($date_from)); $date_to = strtotime($date_to); $date_from = strtotime($date_from); $diff = $date_to-$date_from; $days = floor($diff/(60*6
Read MoreMagento wordpress extension (Fishpig) template modification
Hello everyone; Are you using wordpress fishpig extension with Magento ? and do you want to restrict the contents with blog post in blog home page? I was on working on Magento last week and one of my client want to restrict the content show in blog home page and he want to show only one attached image (not costume image) with every blog post in home page. I thougt may be I can find out some option to manage this, but I could not able to...
Read MoreHow to remove ‘category’ from wordpress website URL?
Have you ever tried to remove ‘category’ from wordpress website URL ? eg : http://www.yourdomain.com/category/blog/wordpress/ and you want to use URL like : http://www.yourdomain.com/blog/wordpress/ pls try below and see it will work for you! open wp-includes/category-template.php and then add 1$catlink=str_replace("category/","",$catlink); code under 1 $catlink = home_url(...
Read MoreChange text under paypal payment select radio button in magento
If you want to change the ‘You will be redirected to the PayPal website’ text under paypal radion button in magento site, please try the following ways: 1 – You can change the text from Mage_Paypal.csv (app/locale/en_US) sometime you need to do this change directly in the code Open app/code/core/Mage/Paypal/Block/Express/Form.php and find out the text then change. I had faced the problem with one of my recent magento site and I...
Read More
Recent Comments