Jump to content

ilovekutchi.com

Members
  • Posts

    117
  • Joined

  • Last visited

Contact Methods

Profile Information

  • Location
    Portugal
  • Activity
    Agency

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ilovekutchi.com's Achievements

Newbie

Newbie (1/14)

9

Reputation

  1. I got a similar error when I changed to https. The solution was to change 'img_ps_dir' => 'http://' to 'img_ps_dir' => 'https://' in classes/pdf/HTMLtemplate.php and HTMLTemplateSupplyOrderForm.php...
  2. Found this in spanish: https://www.prestashop.com/forums/topic/2320[spam-filter]aporte-integrar-wordpress-con-prestashop-15/ https://www.prestashop.com/forums/topic/436733-solucionado-integrar-wordpress-con-prestashop-16014/ It's working for 1.6.1.18 Basically: - The blog needs to be in the folder /blog/ insides your shop (yourshop/blog/) - Replace the header.php of your blog for: <?php require_once(dirname(__FILE__).'/../../../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../../../header.php'); ?> - Replace the footer.php for: <?php require_once(dirname(__FILE__).'/../../../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../../../footer.php'); ?> - In style.css of wordpress you might need to add div.row to some selectors and this code somewhere in the file: #pagenotfound #left_column, #pagenotfound #right_column, #pagenotfound #footer {display:block !important;} - In the header.tpl of your theme, right before <body... add: {$dir=$smarty.server.PHP_SELF} {if strpos($dir,"/blog/")!==false} <link href="{$tpl_uri|escape:'html':'UTF-8'}css/global.css" rel="stylesheet" type="text/css" media="all" /> <link rel='stylesheet' href='{$base_dir}blog/wp-content/themes/olsen-light/style.css' type='text/css' media='all' /> </head> <body id="blog"> {else}</head> and after the original <body (...)> add {/if}. Don't forget to replace "olsen-light" for your theme name. - In the same file, right before <title> add: {$dir=$smarty.server.PHP_SELF} {if strpos($dir,"/blog/")===false} and before <meta name="generator" (...) add {/if}. - Also in header.tpl add {hook h='displayMyNewHook'} between meta and link tags. - Install the module modulewp 1_5_4.zip from the first link of this post. To solve javascript errors, put this into modulowp.tpl: <!-- Inicio Modulo integracion WP --> {$messageSmarty} {$js_def} {foreach from=$js_files item=js_uri key=i} <script type="text/javascript" src="{$js_uri|escape:'html':'UTF-8'}"></script> {/foreach} <!-- Fin Modulo integracion WP --> I hope I didn't forget anything.
  3. @bahamut zero creo haber encontrado una solucion para el javascript: En el modulowp.tpl, debajo de {$messageSmarty} poner esto: {$js_def} {foreach from=$js_files item=js_uri key=i} <script type="text/javascript" src="{$js_uri|escape:'html':'UTF-8'}"></script> {/foreach} Lo he cojido del header.tpl, sin el {if isset($js_defer) && !$js_defer && isset($js_files) && isset($js_def)}. A mi me está funcionando todo bien de momento.
  4. Changing the SEO-URLs and the .htaccess solved the issue, for now... PS: I had to delete the folder cache/smarty/cache/blockpermanentlinks_header/ to update the link to the contact form. version 1.5.6.2
  5. @bahamut zero está muy guapa tu tienda y la integración del blog! No encuentro errores, ¿has solucionado todo? Es que a mi solo de cambiar el header.php, el blog (/blog/) redireciona a la tienda online (/shop/). EDIT: bueno... he visto aqui https://amdisenoweb.es/integrar-prestashop-wordpress-parte-final/ que el wordpress tendría que estar en el directorio de la tienda. A mi no me sirve...
  6. One would expect 1.7 to be an upgrade of 1.6, but it's now clear that it's a downgrade. And that's not good for Prestashop. What I got from my research was a headache, so many options and so many opinions...
  7. Hi. I am looking for a module that integrates an existing wordpress blog into prestashop. It is essential that the blog main page (eg. www.shop.com/blog) keeps the looks of wordpress, but also has the cart, shop menus, shop search, etc. The blog stays at wordpress (same files, database, URLs) and posting too. Also, it should include a block to show recent blog posts in the main page (www.shop.com). Do you know of any module, paid or free, that meets my needs? Should go for woocommerce if I want that? Many thanks!
  8. wow, how I miss the community from the early 2010's...
  9. We want to upgrade our 1.5.6 store. What do you recommend? Thanks
  10. Maybe it's psycological... When it's time to update, you want to update to the most recent. I read the whole thread about 1.7 launch and I thought that, by now, it should be "stable". If they are not able to make a stable platform in 1.5 years, what is the future of PS?!
  11. Sorry for writing in english, I am also interested on this. It is sad to see that, even after one year and a half, experts like @Eolia or @nadie do not recommend 1.7... Is it time to move to other platforms?!
  12. Thanks for your answer. I'm using 1.5.6 There's something that puzzles me: only in the last few months I've started to notice this lentitude to update products or cms pages. Before it was not as slow, so I don't understand how a simple switch can affect this...
  13. the "disable Apache mod_security module" trick also worked for me, but I'm afraid it's making my shop less secure... :s
×
×
  • Create New...