Posts

Showing posts from April, 2013

prestashop images not displaying in IE

This problem is specific to Prestashop version: 1.5.3.1 Change the following file /classes/ImageType.php - look at the bottom of the page public static function getFormatedName($name) {                    $theme_name = Context::getContext()->shop->theme_name;                                          $name_without_theme_name = str_replace(array('_'.$theme_name, $theme_name.'_'), '', $name); Change this to public static function getFormatedName($name) {                    $theme_name = Context::getContext()->shop->theme_name;           ...

Disable search bar in prestashop

( Do not confuse with quick search box) Normally we would uninstall quick search which will not solve the problem. Open module - To Horizontal Menu Uncheck search bar

JSON error - Prestashop

Prestashop - error - not possible to add to cart Error message Impossible to add the product to the cart. textStatus: 'parsererror' errorThrown: 'SyntaxError: JSON.parse: unexpected character' responseText: <html> <body> <h1>site upgrade. Please visit later</h1> </body> </html> Solution Delete/rename index.html at the root

Inserting flash banner in Joomla 3

 Inserting flash banner in Joomla 3 (Compnent banner) <div style="width:950px;height:70px;"> <object type="application/x-shockwave-flash"  data="http://domain.com/banner.swf" width="950" height="70"> <param name="movie" value="http://domain.com/banner.swf"> <param name="wmode" value="opaque"> <param name="flashvars"  value="direct_link=true"> <embed src="http://domain.com/banner.swf" width="950" height="70"  wmode="opaque" flashvars="direct_link=true" /> </object> </div>