<?xml version="1.0"?>
<rss version="2.0"><channel><title>Configuring and using PrestaShop Latest Topics</title><link>https://www.prestashop.com/forums/forum/104-configuring-and-using-prestashop/</link><description>Configuring and using PrestaShop Latest Topics</description><language>en</language><item><title>Main menu automatically disables</title><link>https://www.prestashop.com/forums/topic/995627-main-menu-automatically-disables/</link><description><![CDATA[
<p>
	Hi there!
</p>

<p>
	I have a small problem with my PrestaShop main menu. A long time ago I decided that I didn't needed the plugin so I disabled it. But now I want to enable it and it keeps enabled for a couple of hours after it disables again automatically. Can somebody help me with this problem?
</p>

<p>
	Thanks in advance!
</p>
]]></description><guid isPermaLink="false">995627</guid><pubDate>Sat, 06 Jul 2019 19:15:27 +0000</pubDate></item><item><title>Allow/Disallow ordering products out of stock</title><link>https://www.prestashop.com/forums/topic/1011797-allowdisallow-ordering-products-out-of-stock/</link><description><![CDATA[
<p>
	Prestashop: 1.7.6.2
</p>

<p>
	My shop had <strong>Allow ordering of out-of-stock products</strong> set to YES, but now, i wanted to change it to NO so in:
</p>

<p>
	Preferences -&gt; Products -&gt; Product Stock -&gt; Allow ordering of out-of-stock products ------ i've changed it to 'NO' 
</p>

<p>
	and it was working for about 4 minutes and after that it still have option turned to 'NO' but it doesn't work. I've tried with dev/prod mod and it always revert my changes. Had someone issue like this? I was removing caches, overwrite src and classes directories with new ones, yet still it is wrong.
</p>

<p>
	I also did:
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">UPDATE `ps_product` SET `out_of_stock` = 1;
UPDATE `ps_stock_available` SET `out_of_stock` = 1;</span></pre>

<p>
	which also was working.... but after few minutes again, everyone can order products that are out of stock. Any idea why it doesn't keep changes (but it keep in BO)?
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1011797</guid><pubDate>Mon, 30 Dec 2019 22:33:19 +0000</pubDate></item><item><title>PS 1.7.4 Multiple carriers - conflcit on checkout</title><link>https://www.prestashop.com/forums/topic/927202-ps-174-multiple-carriers-conflcit-on-checkout/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I'm having a bit of a problem : I have 4 carriers on my shop with product restrictions.
</p>

<p>
	Products from category A are paired with carriers 1 and 2 (shipping prices by weight), products from category B are paired with carrier 3 (unique price regardless of quantity nor weight) and products from category C are paired with carrier 4 (free shipping).
</p>

<p>
	Everything is fine when customers only order within each category, but if one of them order from any combination of categories, then the carrier of the 1st product in the cart is used for the entire order.
</p>

<p>
	Namely : If I order 1 product C and 10 product A, the shipping is free when it should not; and if I order 1 product B and 10 product A, the shipping will be 19€ instead of 50€
</p>

<p>
	Does anyone know a solution to allow multiple carrier for an order (before the order is paid) or any module that would do the trick ? Or anything else, really...
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">927202</guid><pubDate>Tue, 30 Oct 2018 13:40:45 +0000</pubDate></item><item><title>Adding new carrier to items in bulk</title><link>https://www.prestashop.com/forums/topic/274111-adding-new-carrier-to-items-in-bulk/</link><description><![CDATA[
<p>Hello all,</p>
<p> </p>
<p>I signed up a new shipping carrier to my store but I have over 1000 items in store, what do I do to have the new carrier showing up with the old one without editing each product to unselect all/select all under shipping?</p>
<p>Thanks</p>
]]></description><guid isPermaLink="false">274111</guid><pubDate>Wed, 11 Sep 2013 08:43:01 +0000</pubDate></item><item><title>Prestashop 1.7 delivery time labels not showing</title><link>https://www.prestashop.com/forums/topic/1011387-prestashop-17-delivery-time-labels-not-showing/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	I use Prestashop 1.7.5 and I try to show on product details pages the deliveries time labels.
</p>

<p>
	When I add a product I can select or add delivery time for when the product is on stock and for when the product is out of stock but I don't know how to show this 2 informations on product details page. Can anyone help me with this ?
</p>

<p>
	I imagine I have to add something like that in the product.tpl
</p>

<p>
	{$product-&gt;additional_shipping_time} 
</p>

<p>
	 
</p>

<p>
	thanks!
</p>
]]></description><guid isPermaLink="false">1011387</guid><pubDate>Sun, 22 Dec 2019 23:27:01 +0000</pubDate></item><item><title>wrong availability label on product page since i move the code in product.tpl</title><link>https://www.prestashop.com/forums/topic/586699-wrong-availability-label-on-product-page-since-i-move-the-code-in-producttpl/</link><description><![CDATA[
<p>Hello everybody,</p>
<p> </p>
<p>I updated my shop from version 1.5.6.1 to version 1.6.1.10 locally to develop a new theme with the default theme.</p>
<p> </p>
<p>I want to transform the product page and i<span><span> have modified the location of  the availability label of a product under the price block.</span></span></p>
<p> </p>
<p>This is the code i have move on product.tpl from my theme :</p>
<pre class="ipsCode prettyprint lang-html">
{if ($display_qties == 1 &amp;&amp; !$PS_CATALOG_MODE &amp;&amp; $PS_STOCK_MANAGEMENT &amp;&amp; $product-&gt;available_for_order)}
				&lt;!-- number of item in stock --&gt;
				&lt;p id="pQuantityAvailable"{if $product-&gt;quantity &lt;= 0} style="display: none;"{/if}&gt;
					&lt;span id="quantityAvailable"&gt;{$product-&gt;quantity|intval}&lt;/span&gt;
					&lt;span {if $product-&gt;quantity &gt; 1} style="display: none;"{/if} id="quantityAvailableTxt"&gt;{l s='Item'}&lt;/span&gt;
					&lt;span {if $product-&gt;quantity == 1} style="display: none;"{/if} id="quantityAvailableTxtMultiple"&gt;{l s='Items'}&lt;/span&gt;
				&lt;/p&gt;
			{/if}
			&lt;!-- availability or doesntExist --&gt;
			&lt;p id="availability_statut"{if !$PS_STOCK_MANAGEMENT || ($product-&gt;quantity &lt;= 0 &amp;&amp; !$product-&gt;available_later &amp;&amp; $allow_oosp) || ($product-&gt;quantity &gt; 0 &amp;&amp; !$product-&gt;available_now) || !$product-&gt;available_for_order || $PS_CATALOG_MODE} style="display: none;"{/if}&gt;
				{*&lt;span id="availability_label"&gt;{l s='Availability:'}&lt;/span&gt;*}
				&lt;span id="availability_value" class="label{if $product-&gt;quantity &lt;= 0 &amp;&amp; !$allow_oosp} label-danger{elseif $product-&gt;quantity &lt;= 0} label-warning{else} label-success{/if}"&gt;{if $product-&gt;quantity &lt;= 0}{if $PS_STOCK_MANAGEMENT &amp;&amp; $allow_oosp}{$product-&gt;available_later}{else}{l s='This product is no longer in stock'}{/if}{elseif $PS_STOCK_MANAGEMENT}{$product-&gt;available_now}{/if}&lt;/span&gt;
			&lt;/p&gt;
			{if $PS_STOCK_MANAGEMENT}
				{if !$product-&gt;is_virtual}{hook h="displayProductDeliveryTime" product=$product}{/if}
				&lt;p class="warning_inline" id="last_quantities"{if ($product-&gt;quantity &gt; $last_qties || $product-&gt;quantity &lt;= 0) || $allow_oosp || !$product-&gt;available_for_order || $PS_CATALOG_MODE} style="display: none"{/if} &gt;{l s='Warning: Last items in stock!'}&lt;/p&gt;
			{/if}
			&lt;p id="availability_date"{if ($product-&gt;quantity &gt; 0) || !$product-&gt;available_for_order || $PS_CATALOG_MODE || !isset($product-&gt;available_date) || $product-&gt;available_date &lt; $smarty.now|date_format:'%Y-%m-%d'} style="display: none;"{/if}&gt;
				&lt;span id="availability_date_label"&gt;{l s='Availability date:'}&lt;/span&gt;
				&lt;span id="availability_date_value"&gt;{if Validate::isDate($product-&gt;available_date)}{dateFormat date=$product-&gt;available_date full=false}{/if}&lt;/span&gt;
			&lt;/p&gt;
			&lt;!-- Out of stock hook --&gt;
			&lt;div id="oosHook"{if $product-&gt;quantity &gt; 0} style="display: none;"{/if}&gt;
				{$HOOK_PRODUCT_OOS}
			&lt;/div&gt;
</pre>
<p><span><span>But my problem is that the label is wrong for the products with combinations. Instead of having the label "this product is available with other options", i have "in stock". </span></span></p>
<p><span><span><span><span>I activated the display of the quantity of products in stock on the product page and I noted that it indicates the total quantity of products including the combinations.</span> </span></span></span></p>
<p><span><span><span><span>For example, for a product with 3 combinations, I have 2 products in stock for the blue color, 4 products in stock for the pink color and 0 product in stock for the grey color. When i am on the product sheet, in all the case the quantity display is 6 in the place to display only</span> <span>the quantity of the chosen combination.</span> <span>I think this is the reason why the availability label is wrong but I do not know how to change this mecanism.</span></span></span></span></p>
<p> </p>
<p><span><span><span><span>It will be great if someone could help me because it blocks me. </span></span></span></span></p>
<p> </p>
<p><span><span><span><span>Thanks community.</span></span></span></span></p>
<p> </p>
<p><span><span><span><span>Céline. </span></span></span></span></p>
]]></description><guid isPermaLink="false">586699</guid><pubDate>Fri, 06 Jan 2017 10:19:29 +0000</pubDate></item><item><title>Stripe official (SCA-ready)	Module Problems</title><link>https://www.prestashop.com/forums/topic/1000346-stripe-official-sca-ready%09module-problems/</link><description><![CDATA[
<p>
	Has anyone else been experiencing issues with the Stripe Module recently?.   Since upgrading a week or so ago we've had issues with the module undercharging, overcharging and simply omitting other amounts randomly, to the point where we had to disable the app but at present we're running an older version that still works but Stripe are literally screaming at us to update to the SCA-ready version, which doesn't work.   I'm not sure if it's only a few affected, but having searched the forums recently the only other thread that has similar issues is over on the French forum, and clearly the French moderators over there are not happy that us English people are trying to join the conversation, and have warned that further posts made in English will be deleted!.
</p>

<p>
	Currently, we're running Prestashop 1.6.1.24 and were running 2.0.3 of the Stripe module, but on the developers instructions they presented us with v2.0.4 which didn't work either, so we're still running an older version that was offered by one of the other English users on the French thread.   Problem is, it's went quiet over there and there is still no word back from the developers, so just wondering if anyone else is getting payment errors, etc, with their prestashop.
</p>

<p>
	Cheers
</p>

<p>
	Marko
</p>
]]></description><guid isPermaLink="false">1000346</guid><pubDate>Fri, 30 Aug 2019 18:23:05 +0000</pubDate></item><item><title>Order related  Emails not going to Customer and website admin</title><link>https://www.prestashop.com/forums/topic/1011700-order-related-emails-not-going-to-customer-and-website-admin/</link><description><![CDATA[
<p>
	I recently developed my website on prestashop 1.7 and hosted on BlueHost premium plan of shared hosting.
</p>

<p>
	I am not getting any order confirmation emails and neither customer is getting any email regarding order they placed on my website.
</p>

<p>
	But when I sent an test email through "Email" option under advanced then I found that test email is working Fine.
</p>

<p>
	I am using by default option PHP mail function on prestashop backend and I confirmed with hosting that this feature is enabled on server.
</p>

<p>
	 
</p>

<p>
	What could be the issue that test email is coming but no other email is coming related to order and other. Request you guys to help me on this. thanks in advance.
</p>
]]></description><guid isPermaLink="false">1011700</guid><pubDate>Sun, 29 Dec 2019 07:37:32 +0000</pubDate></item><item><title>Redirect issue from .com to .it</title><link>https://www.prestashop.com/forums/topic/1011646-redirect-issue-from-com-to-it/</link><description><![CDATA[
<p>
	Here's the deal.
</p>

<p>
	One of our customer have multiple PrestaShop website hosted with Plesk, since yesterday the customer wanted the .com redirected automatically to .it
</p>

<p>
	We made it few years ago by adding to the primary domain (domain.it) an additional alias domain (domain.com) and by enabling the 301 Redirect everything works fine
</p>

<p>
	Now the customer want to separate the two domain, not everything, just the URL....no sense
</p>

<p>
	But, we disabled the 301 redirect and by some magic tricks this works 50/50
</p>

<p>
	If I navigate to domain.com it keeps redirect me to domain.it
</p>

<p>
	If I navigate to https://domain.com i'm not getting redirect
</p>

<p>
	Checked HTACCESS, DB, DNS, PLESK, PRESTASHOP but really can't figure it out
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1011646</guid><pubDate>Fri, 27 Dec 2019 18:13:54 +0000</pubDate></item><item><title>How do I reinstall a module without reuploading it?</title><link>https://www.prestashop.com/forums/topic/1011654-how-do-i-reinstall-a-module-without-reuploading-it/</link><description><![CDATA[
<p>
	Hooks modules use seem to have to be defined in their install() methods, and install() seems to be executed only once per module installation.
</p>

<p>
	Thus, how do I reinstall a module without reuploading its .zip file? I just want Presta to reparse the existing files in /modules/foo without a hassle.
</p>
]]></description><guid isPermaLink="false">1011654</guid><pubDate>Sat, 28 Dec 2019 00:26:18 +0000</pubDate></item><item><title>New user, can't login to Admin interface</title><link>https://www.prestashop.com/forums/topic/1004097-new-user-cant-login-to-admin-interface/</link><description><![CDATA[
<p>
	Hi, I'm a new user, so new I haven't even logged in yet, but unfortunately I don't seem able to.
</p>

<p>
	I bought a domain and plan with OVH that includes Prestashop. I've installed the module (1.7.5.1), and have transferred over my domain, so this morning I went to the admin login to get started with Prestashop. However, every time I put in my login details and click login, I just get returned to a blank login screen. There are no errors in the console, I've changed my password, but it won't let me, what can I do?
</p>
]]></description><guid isPermaLink="false">1004097</guid><pubDate>Sat, 12 Oct 2019 08:16:13 +0000</pubDate></item><item><title>Server error- file does not exist themes/new-theme/public/index.php</title><link>https://www.prestashop.com/forums/topic/1011647-server-error-file-does-not-exist-themesnew-themepublicindexphp/</link><description><![CDATA[
<p>
	Hi all,
</p>

<p>
	I did a fresh install of 1.7.6.2 and migrated my database from 1.6.
</p>

<p>
	After a few days spent in front of the PC, the front and back office seem to be working alright, but  I keep getting a weird error on the server's error log from time to time. The error seems to be quite random and I don't know if it is linked to an action being done on the website. The error looks like this:
</p>

<p>
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">[Fri Dec 27 00:24:40.046042 2019] [:error] [pid 15967:tid 47270165772032] [client xxx.xxx.xx.x:3819] File does not exist: /home/alexispo/public_html/Backoffice/themes/new-theme/public/index.php, referer: https://alexisport.com/Backoffice/index.php/sell/catalog/products/4212?_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx</span></pre>

<p>
	 
</p>

<p>
	I can't seem to find much about it online and am really curious to see why it keeps coming up. Any clues?
</p>
]]></description><guid isPermaLink="false">1011647</guid><pubDate>Fri, 27 Dec 2019 19:08:51 +0000</pubDate></item><item><title>Payment method list by address</title><link>https://www.prestashop.com/forums/topic/1011541-payment-method-list-by-address/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	Is it possible to get all the payment methods available for any specific address (user defined).? please help.
</p>

<p>
	Thanks
</p>
]]></description><guid isPermaLink="false">1011541</guid><pubDate>Thu, 26 Dec 2019 09:37:10 +0000</pubDate></item><item><title>Step Quantities</title><link>https://www.prestashop.com/forums/topic/250538-step-quantities/</link><description><![CDATA[
<p>Hello,</p>
<p> </p>
<p>How can you configure Prestashop to use step quantities in a specific product.</p>
<p>on step quantities i mean that a specific product only can be sold in pack of 10 units, so the client will only have the ability to select 10, 20, 30, 40, .....</p>
<p>even when you press the "+" button, the quantity will increase whatever is defined in product specifications. in this case 10.</p>
<p> </p>
<p>Thanks in advance</p>
<p> </p>
<p>Rui Banha</p>
]]></description><guid isPermaLink="false">250538</guid><pubDate>Tue, 28 May 2013 11:19:19 +0000</pubDate></item><item><title>error in id_lang` = 2 AND  `id_shop</title><link>https://www.prestashop.com/forums/topic/791657-error-in-id_lang-2-and-id_shop/</link><description><![CDATA[
<p style="color:#000000;font-size:14px;">
	please i get there error how can i fix it <img alt=":)" data-emoticon="" height="20" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" srcset="https://www.prestashop.com/forums/uploads/emoticons/smile@2x.png 2x" title=":)" width="20" data-src="https://www.prestashop.com/forums/uploads/emoticons/default_smile.png"> 
</p>

<p style="color:#000000;font-size:14px;">
	<b>Unknown column 'r.id_shop' in 'field list'</b><br>
	 
</p>

<pre style="background-color:#eafee1;border:1px solid #236b04;color:#000000;font-size:14px;padding:5px;">
<b>SELECT r.`id_info`, r.`id_shop`, rl.`text`
            FROM `ps_info` r
            LEFT JOIN `ps_info_lang` rl ON (r.`id_info` = rl.`id_info`)
            WHERE `id_lang` = 2 AND  `id_shop` = 1 LIMIT 1</b></pre>

<p>
	<br style="color:#000000;font-size:14px;"><i style="color:#000000;font-size:14px;">at line<span> </span></i><b style="color:#000000;font-size:14px;">746</b><i style="color:#000000;font-size:14px;"><span> </span>in file<span> </span></i><b style="color:#000000;font-size:14px;">classes/db/Db.php</b>
</p>

<p style="color:#000000;font-size:14px;">
	 
</p>

<div style="color:#000000;font-size:14px;">
	<pre style="background-color:#eafee1;border:1px solid #236b04;padding:5px;">
741.         if ($webservice_call &amp;&amp; $errno) {
742.             $dbg = debug_backtrace();
743.             WebserviceRequest::getInstance()-&gt;setError(500, '[SQL Error] '.$this-&gt;getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'-&gt;'.$dbg[3]['function'].'() Query was : '.$sql, 97);
744.         } elseif (_PS_DEBUG_SQL_ &amp;&amp; $errno &amp;&amp; !defined('PS_INSTALLATION_IN_PROGRESS')) {
745.             if ($sql) {
<span style="color:#f20000;">746.                 throw new PrestaShopDatabaseException($this-&gt;getMsgError().'&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;'.$sql.'&lt;/pre&gt;');
</span>747.             }
748. 
749.             throw new PrestaShopDatabaseException($this-&gt;getMsgError());
750.         }
751.     }</pre>
</div>
]]></description><guid isPermaLink="false">791657</guid><pubDate>Thu, 03 May 2018 11:04:34 +0000</pubDate></item><item><title>Signup Using Phone No or Email</title><link>https://www.prestashop.com/forums/topic/1011546-signup-using-phone-no-or-email/</link><description><![CDATA[<p>
	I want to configure prestashop 1.6 to signup using Email or Phone like we did in shopify. currently its email only that is mandatory.
</p>]]></description><guid isPermaLink="false">1011546</guid><pubDate>Thu, 26 Dec 2019 10:25:52 +0000</pubDate></item><item><title>Smartblog is not showing the content of the blogs</title><link>https://www.prestashop.com/forums/topic/373605-smartblog-is-not-showing-the-content-of-the-blogs/</link><description><![CDATA[
<p>Hi</p>
<p> </p>
<p>Can anyone help with the Smartblog module?</p>
<p> </p>
<p>all was working ok but for some unknown reason none of the blogs are showing any content other than the blog image.</p>
<p> </p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_10_2014/post-380599-0-67131500-1414351459.jpg" data-fileid="110869" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="110869" class="ipsImage ipsImage_thumbnailed" alt="post-380599-0-67131500-1414351459_thumb.jpg" data-src="https://www.prestashop.com/forums/uploads/monthly_10_2014/post-380599-0-67131500-1414351459_thumb.jpg" width="100" data-ratio="97"></a> </p>
]]></description><guid isPermaLink="false">373605</guid><pubDate>Sun, 26 Oct 2014 19:24:32 +0000</pubDate></item><item><title>Visitors online issue</title><link>https://www.prestashop.com/forums/topic/1011324-visitors-online-issue/</link><description><![CDATA[
<p>
	Hello All,
</p>

<p>
	 
</p>

<p>
	Spent a while trying to figure this one out, online visitors does not work no matter what i try,
</p>

<p>
	 
</p>

<p>
	Prestashop version 1.7.6.2
</p>

<p>
	URL : <a href="https://predator-aquatics.co.uk" rel="external nofollow">https://predator-aquatics.co.uk</a>
</p>

<p>
	 
</p>

<p>
	ANY Help is greatly appreciated as i am now banging my head against the wall. 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1011324</guid><pubDate>Sat, 21 Dec 2019 12:25:03 +0000</pubDate></item><item><title>[SOLVED] Paypal Error Code 10413 totals of cart items don't match total</title><link>https://www.prestashop.com/forums/topic/162185-solved-paypal-error-code-10413-totals-of-cart-items-dont-match-total/</link><description><![CDATA[
<p><em>Hi,</em></p>
<p> </p>
<p><em>My website (</em><a href="http://www.paperbliss.com.au" rel="external nofollow"><em>www.paperbliss.com.au</em></a><em>) has only been active for 6 days and I have experienced 3 cases of the following Paypal error:</em></p>
<p> </p>
<p>										<em><strong>A client has encountered a problem with the module PayPalAPI, see the report:</strong></em>											 											<em><strong>PayPal response:</strong></em></p>
<p><em>				TIMESTAMP -&gt; 2012-03-27T11:38:05Z</em></p>
<p><em>				L_ERRORCODE0 -&gt; 10413</em></p>
<p><em>				L_SHORTMESSAGE0 -&gt; Transaction refused because of an invalid argument. See additional error messages for details.</em></p>
<p><em>				L_LONGMESSAGE0 -&gt; The totals of the cart item amounts do not match order amounts.</em></p>
<p><em>				L_SEVERITYCODE0 -&gt; Error</em>			</p>
<p> </p>
<p>I understand this has something to do with rounding to 2 decimal places. I am using Prestashop V 1.4.3 and Paypal module V2.4.</p>
<p> </p>
<p>Could someone please advise how I resolve this issue?</p>
<p>Thanks in advance,</p>
<p>Nadine</p>
]]></description><guid isPermaLink="false">162185</guid><pubDate>Tue, 27 Mar 2012 20:47:40 +0000</pubDate></item><item><title>Order by invoice</title><link>https://www.prestashop.com/forums/topic/1011500-order-by-invoice/</link><description><![CDATA[
<p>
	I want to use order by invoice: a customers orders first, I send an invoice and he gets his stuff. Which payment method can I use (or adapt) for that? 
</p>

<p>
	TIA
</p>
]]></description><guid isPermaLink="false">1011500</guid><pubDate>Tue, 24 Dec 2019 16:26:03 +0000</pubDate></item><item><title>Amazon Marketplace Addon - Can Someone Help?</title><link>https://www.prestashop.com/forums/topic/1011499-amazon-marketplace-addon-can-someone-help/</link><description><![CDATA[
<p>
	I have had this addon for almost a month and still cannot get support to help get me up and running.  If you have used this one can you help me with the parentage  Sku and UPC Configuration? Thier documentation does not seem to match the programming.
</p>

<p>
	This is what they are saying
</p>

<p>
	The structure of product with combination is not correct.
</p>

<p>
	The reference code of parent item is required with unique code.
</p>

<p>
	The upc code of parent item must be blank.
</p>

<p>
	The upc code of child item is required  and unique.
</p>

<p>
	See pic of what I have....
</p>

<p>
	 
</p>

<p>
	 
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/peas.jpg.d87607ec6be1c8b4afe88f6868066ff1.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="233466" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/peas.thumb.jpg.30356350439c7c4c58e9d50956ef98c2.jpg" data-ratio="86.9" width="1000" class="ipsImage ipsImage_thumbnailed" alt="peas.jpg"></a></p>]]></description><guid isPermaLink="false">1011499</guid><pubDate>Tue, 24 Dec 2019 15:23:12 +0000</pubDate></item><item><title>Can't Add Products</title><link>https://www.prestashop.com/forums/topic/497787-cant-add-products/</link><description><![CDATA[
<p>Hello,</p>
<p> </p>
<p>I just install the prestashop, configure the categories and when i go to products i get this problem..</p>
<p> </p>
<blockquote data-ipsquote="" class="ipsQuote"><div>
<p>Bad SQL query</p>
<p>Unknown column 'image_shop.id_product' in 'on clause'</p>
</div></blockquote>
<p> </p>
<p>What happen? What can i do?</p>
<p> </p>
<p>Thanks.</p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_01_2016/post-22178-0-54269800-1452286393.png" data-fileid="140933" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="140933" class="ipsImage ipsImage_thumbnailed" alt="post-22178-0-54269800-1452286393_thumb.png" data-src="https://www.prestashop.com/forums/uploads/monthly_01_2016/post-22178-0-54269800-1452286393_thumb.png" width="100" data-ratio="54"></a></p>
]]></description><guid isPermaLink="false">497787</guid><pubDate>Fri, 08 Jan 2016 20:53:16 +0000</pubDate></item><item><title>Module Issue when clearing cache</title><link>https://www.prestashop.com/forums/topic/1011470-module-issue-when-clearing-cache/</link><description><![CDATA[<p>
	Under advanced parameters / performance i like to use the clear cache because my back-office can take a long time to load if i do not clear the cache each month. But recently i found that now when i clear cache my payware module re-captcha will not appear on the contact page or registration page. The hooks are still there but i physically have to go to the module configuration and click save. Then the re-captcha re appears. This never happened from clearing cache until this month. What happened?
</p>]]></description><guid isPermaLink="false">1011470</guid><pubDate>Tue, 24 Dec 2019 08:04:40 +0000</pubDate></item><item><title>Prestashop multistore and importing</title><link>https://www.prestashop.com/forums/topic/1011459-prestashop-multistore-and-importing/</link><description><![CDATA[
<p>
	Am I just being stupid?
</p>

<p>
	I already had a store set up for one website
</p>

<p>
	Went to add another store for another site for something completely different and after 3 days have given up and just installed a separate instance
</p>

<p>
	Importing categories is totally random, they may end up in your shop, may end up in the other shop, may end up in cyber space even tho they are in the database
</p>

<p>
	Even when the categories do get imported the relationship (sub categories etc) is completely ignored as is the shop ID assignment (they just seem to get assigned to all shops even if you can see them at the end)
</p>

<p>
	I have tried every variation of importing stuff and am now bald
</p>

<p>
	Everything works great for a single store
</p>

<p>
	From what I can surmise in a multi store the shop id has no effect and using something like cat1/cat2/cat3 has no effect as every category is created as a separate instance (tried importing categories first and then products - all that happened is all the categories disappeared from the shop and some random category became root!) and god knows where the products are assigned to 
</p>
]]></description><guid isPermaLink="false">1011459</guid><pubDate>Mon, 23 Dec 2019 23:57:46 +0000</pubDate></item><item><title>Kicking me back to dashboard</title><link>https://www.prestashop.com/forums/topic/1011456-kicking-me-back-to-dashboard/</link><description><![CDATA[<p>
	I imported csv file only to have 1 out of 500 items actually import. Since then I haven't been able to manually add a product. When I click on the add product button it redirects me to the dashboard even ctrl+p kicks me back to the dashboard. I have 1.7.6.2 prestashop
</p>]]></description><guid isPermaLink="false">1011456</guid><pubDate>Mon, 23 Dec 2019 22:47:35 +0000</pubDate></item><item><title>New product page redirects to dashboard</title><link>https://www.prestashop.com/forums/topic/679564-new-product-page-redirects-to-dashboard/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I have set u a new installation of prestashop to a new host.<br />
	After migration of the databases, i have some problems with my products.
</p>

<p>
	When i want to edit a product, i can't do that.<br />
	When i want to add a new product, i am redirected to the dashboard.
</p>

<p>
	<br />
	Could eanywone help me with this?
</p>
]]></description><guid isPermaLink="false">679564</guid><pubDate>Thu, 08 Mar 2018 14:41:52 +0000</pubDate></item><item><title>extension intl</title><link>https://www.prestashop.com/forums/topic/1011452-extension-intl/</link><description><![CDATA[
<p>
	Hello guys,
</p>

<p>
	Im having my first issue with prestashop.
</p>

<p>
	I started to use it on a mamp server (on windows).
</p>

<p>
	But at the third step i seen i should use the intl extension and other (php accelerator, php info...). So i had install those extension but intl don't work. However i wrote
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">extension=php_intl.dll</span></pre>

<p>
	in the php.ini file, so i don't understand what i have to do.
</p>

<p>
	Thanks for your futur answers guys!
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1011452</guid><pubDate>Mon, 23 Dec 2019 20:26:43 +0000</pubDate></item><item><title>[Solved] Horizontal top menu drop down problem</title><link>https://www.prestashop.com/forums/topic/634960-solved-horizontal-top-menu-drop-down-problem/</link><description><![CDATA[
<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	Hello everyone
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I would very much like to disable the sub categories drop down menu. I want the sub categories shown in the left column when a visitor clicks on a main category in the horizontal top menu. It works like intended but the 'on hover drop down menu' is messing up the page display - see att. or visit site -  and i don't need it. Is there a way to disable it?
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I'm running free classic theme and prestashop 1.7. Website address: <a href="http://www.printervenner.dk" rel="external nofollow">http://www.printervenner.dk</a>
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I'm stuck here so help will be very much appreciated
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	/Jens
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_2017_11/5a0738806aeae_ScreenShot11-11-17at11_43AM.PNG.0c42c0448a428de9ba13037a16f279a9.PNG" data-fileid="172615" rel=""><img alt="Screen Shot 11-11-17 at 11.43 AM.PNG" class="ipsImage ipsImage_thumbnailed" data-fileid="172615" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2017_11/5a073880c3f8a_ScreenShot11-11-17at11_43AM.thumb.PNG.8a59046e43b48f7b9d748ba404a87465.PNG" width="1000" data-ratio="60.7"></a>
</p>
]]></description><guid isPermaLink="false">634960</guid><pubDate>Sat, 11 Nov 2017 17:52:25 +0000</pubDate></item><item><title>configuracion modulo redys</title><link>https://www.prestashop.com/forums/topic/953527-configuracion-modulo-redys/</link><description><![CDATA[
<p>
	me sale este mensaje
</p>

<p>
	<span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">Notice en línea 356 en archivo /hosting/www/motoimportonil.com/public/modules/redsysoficial/redsysoficial.php</span><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">[8] Undefined property: Redsysoficial::$html</span><br style="color:#d27c82;font-size:12px;" />
	y este
</p>

<p>
	<span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">Notice en línea 349 en archivo /hosting/www/motoimportonil.com/public/modules/redsysoficial/redsysoficial.php</span><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">[8] Undefined property: Redsysoficial::$post_errors</span><br style="color:#d27c82;font-size:12px;" /><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">Warning en línea 349 en archivo /hosting/www/motoimportonil.com/public/modules/redsysoficial/redsysoficial.php</span><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">[2] count(): Parameter must be an array or an object that implements Countable</span><br style="color:#d27c82;font-size:12px;" /><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">Notice en línea 229 en archivo /hosting/www/motoimportonil.com/public/modules/redsysoficial/redsysoficial.php</span><br style="color:#d27c82;font-size:12px;" /><span style="background-color:#ffe2e4;color:#d27c82;font-size:12px;">[8] Undefined property: Redsysoficial::$html</span><br style="color:#d27c82;font-size:12px;" />
	tengo que dejar desativado este modulo ya que si o no sale ningun metodo de pago 
</p>

<p>
	alguna solucion soy novato
</p>
]]></description><guid isPermaLink="false">953527</guid><pubDate>Fri, 25 Jan 2019 08:09:02 +0000</pubDate></item><item><title>Mobile compatability</title><link>https://www.prestashop.com/forums/topic/1011434-mobile-compatability/</link><description><![CDATA[
<p>
	I have installed a tabbed sub category app
</p>

<p>
	The display on my mobile is not good 
</p>

<p>
	If you go to my website on your phone (www.borabeads.co.uk), you will see the tabbed menu is displayed.
</p>

<p>
	When I click on Bracelets for example, to the user it doesn't look like anything has happened, although if you scroll down it has worked but not all users would think to do that.
</p>

<p>
	Is there an easy fix to this? I am using v 1 7 6
</p>

<p>
	 
</p>

<p>
	thank you
</p>
]]></description><guid isPermaLink="false">1011434</guid><pubDate>Mon, 23 Dec 2019 14:24:38 +0000</pubDate></item><item><title>categories don't show in front office nor in back office (they 're still in the database)</title><link>https://www.prestashop.com/forums/topic/898694-categories-dont-show-in-front-office-nor-in-back-office-they-re-still-in-the-database/</link><description><![CDATA[
<p>
	PS 1.7.3.3 and Template Panda2 (2.3.7). Everything working decently well. But then ... i switched to multistore ...
</p>

<p>
	Then I noticed in the front office that the category tree was not showing the plus simbol where you click to unfold subcategories.
</p>

<p>
	In the category manager page, in the back office, the first level categories were the only showing there. The action buttons only let me modify the category but the "view" button is missing.
</p>

<p>
	Then i went to phpmyadmin and i didn't see any missing category at first sight (not an expert). So the categories still are there, stored in the database, but somehow they not show in prestashop.
</p>

<p>
	I tried to add a brand-new category having one of the first level categories (the ones showed normally in prestashop) as parent, and it worked. 
</p>

<p>
	And then, back in the category manager, the button for "View" shows again.
</p>

<p>
	I don't know how to solve this. I'm afraid i'm going to manualy rebuild the category tree structure and prestashop is going to wreck it again, and again.
</p>

<p>
	Anyone has an idea what is happening?
</p>

<p>
	Later Update:  Multishop mode is active. I've just noticed the categories not showing in prestashop ar missing in the database table <span style="background-color:#e5e5e5;color:#0055aa;font-size:10.66px;text-align:left;">`ps_category_shop`</span>
</p>

<p>
	If i create a new category, a new record is added to the table, but i don't know the cause for the missing ones. 
</p>

<p>
	Perhaps when i went to multishop not all the categories were included in the table ps_category_shop.
</p>

<p>
	Is this a Prestashop Bug?
</p>

<p>
	Is there an easy way (prestashop function or script) to rebuild the ps_category_shop table from the existing ps_category table?
</p>
]]></description><guid isPermaLink="false">898694</guid><pubDate>Wed, 05 Sep 2018 12:40:12 +0000</pubDate></item><item><title>Missing subcategories after setting multistore</title><link>https://www.prestashop.com/forums/topic/1011422-missing-subcategories-after-setting-multistore/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	I use Prestashop 1.7.5.0. I set up multistore and after setting up my subcategories on back office disappeared but when I choose a product, I can access to them via breadcrumb.
</p>

<p>
	and alose I can"t see subcategories on megamenu.
</p>

<p>
	I checked the database also. I can see them in their tables.
</p>

<p>
	Could someone help me?
</p>

<p>
	I hope I could say exactly what is the problem.
</p>
]]></description><guid isPermaLink="false">1011422</guid><pubDate>Mon, 23 Dec 2019 12:04:55 +0000</pubDate></item><item><title>BackOffice http error 500 and connection denied by mysql</title><link>https://www.prestashop.com/forums/topic/1011118-backoffice-http-error-500-and-connection-denied-by-mysql/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I have two issues after migrating. I am opening a separate topic for each, to simplify the discussion.
</p>

<p>
	In this issue, connecting to the back office with debug mode off (_PS_MODE_DEV_ false in config/define.inc.php) will result in a http 500 error.
</p>

<p>
	In the apache error log there is, indeed, a stack entry where it shows the user and password still being the one of the original installation, not the new migrated one.
</p>

<p>
	[Tue Dec 17 13:07:21.048002 2019] [:error] [pid 7604:tid 2016] [client ::1:58362] PHP Fatal error:  Uncaught PDOException: SQLSTATE[HY000] [1045] Access denied for user <strong>'old_user</strong>'@'localhost' (using password: YES) in D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\PDOConnection.php:43\nStack trace:\n#0 D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\PDOConnection.php(43): PDO-&gt;__construct('mysql:host=127....', '<strong>old_user</strong>', 'xxxx', Array)\n#1 D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\PDOMySql\\Driver.php(44): Doctrine\\DBAL\\Driver\\PDOConnection-&gt;__construct('mysql:host=127....', <strong>'old_user</strong>', 'xxxx', Array)\n#2 D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Connection.php(360): Doctrine\\DBAL\\Driver\\PDOMySql\\Driver-&gt;connect(Array, '<strong>old_user</strong>', 'xxxx', Array)\n#3 D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Connection.php(942): Doctrine\\DBAL\\Connection-&gt;connect()\n#4 D:\\xampp\\htdocs\\PS\\src\\PrestaShopBundle\\Kernel\\ModuleRepository.php(59): Doctrine\\DBAL\\Connection-&gt;query('SELECT name FRO...')\n#5 D:\\xampp\\htdocs\\PS\\src\\Prest in D:\\xampp\\htdocs\\PS\\vendor\\doctrine\\dbal\\lib\\Doctrine\\DBAL\\Driver\\AbstractMySQLDriver.php on line 103<br /><br /><br />
	However: if I set debug mode on in define.inc.php, it connects without any problem.
</p>

<p>
	Things I have done after migrating:
</p>

<ul><li>
		updated ps_configuration with the new PS_SHOP_DOMAIN, PS_SHOP_DOMAIN_SSL, PS_SHOP_NAME, PS_SSL_ENABLED_EVERYWHERE
	</li>
	<li>
		updated ps_shop_url with the new domain for domain, domain_ssl, physical_uri
	</li>
	<li>
		updated ps_shop with the new name
	</li>
	<li>
		updated the file app/config/parameter.php with the new database name, location, user and password
	</li>
	<li>
		regenerated /htaccess
	</li>
	<li>
		ensured that php.ini has all the limits and timers as required and verified with phppsinfo.php: all green.
	</li>
</ul><p>
	Finally, the environment the store has been migrated from is a linux, while the new environment is on windows, with php any MySQL versions matching.
</p>

<p>
	Does anyone have some idea where prestashop is taking the username from, when attempting to connect to the back office?
</p>
]]></description><guid isPermaLink="false">1011118</guid><pubDate>Tue, 17 Dec 2019 13:19:19 +0000</pubDate></item><item><title>[solved]PrestaShopDatabaseException - ps_layered_filter_block' doesn't exist</title><link>https://www.prestashop.com/forums/topic/1011380-solvedprestashopdatabaseexception-ps_layered_filter_block-doesnt-exist/</link><description><![CDATA[
<blockquote class="ipsQuote" data-ipsquote="" data-ipsquote-contentapp="forums" data-ipsquote-contentclass="forums_Topic" data-ipsquote-contentcommentid="2972034" data-ipsquote-contentid="903544" data-ipsquote-contenttype="forums" data-ipsquote-timestamp="1537103844" data-ipsquote-userid="228329" data-ipsquote-username="NemoPS">
	<div class="ipsQuote_citation">
		On 9/16/2018 at 3:17 PM, NemoPS said:
	</div>

	<div class="ipsQuote_contents">
		<p>
			The Tag override you use is bugged, have a look at override/classes/Tag.php at line 247. Feel free to copy it over here if you need specific advice on how to fix it
		</p>
	</div>
</blockquote>

<p>
	hi, how come there is no Tag.php in my override/classes? mine is 1.7.  help please
</p>
]]></description><guid isPermaLink="false">1011380</guid><pubDate>Sun, 22 Dec 2019 17:21:32 +0000</pubDate></item><item><title>Width of Classic compared with Demo Shop</title><link>https://www.prestashop.com/forums/topic/1011139-width-of-classic-compared-with-demo-shop/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I noticed that the Demo shop online has a slightly wider layout than the Classic theme.
</p>

<p>
	I spent a lot of time analyzing the differences but cant find it.
</p>

<p>
	Does anyone know to make the Classic theme a bit wider?
</p>

<p>
	Thank you!
</p>

<p>
	Regards,<br />
	Fem
</p>
]]></description><guid isPermaLink="false">1011139</guid><pubDate>Tue, 17 Dec 2019 21:50:59 +0000</pubDate></item><item><title>Much better tutorial for csv import</title><link>https://www.prestashop.com/forums/topic/1011358-much-better-tutorial-for-csv-import/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	1) My provvider was not able to fully set-up my shop via .CSV (no capable to send categories url etc...) so I've to do I by myself.
</p>

<p>
	Finally I've a partial result for the categories, BUT
</p>

<p>
	the 2 years old info page DON NOT SHOW STEP BY STEP how the program reason when you import, so I spent several hours just to understad, via trial error process, that you have just to import in the category NOT the ID, NOT the mother category, but the "Parent category".
</p>

<p>
	- Nothing into the same page for the Product import, on the main point: each product has to by connected to the right "Parent category"....
</p>

<p>
	File as example ar too poor and unuseful... no subcategories structure etc...
</p>

<p>
	Now the problem: I download from AS400 db a file with all products and category... so there is no function allow one, f.ex. to load at the same time products and categories...
</p>

<p>
	the same no way to self assign parent just reading a TAG field.
</p>

<p>
	For example I've main cat as XXXX001 to 999,  cat ans XXX0001 to 9999, subcat  as WW00001 to WW99999.... and since th import program my provvider create do not work... I've to now to write code to create the parent link...  XXXX... becomes 0001+xxx;   XXX... becomes 001+xxxx ; WW... becomes 01+xxxxx
</p>

<p>
	And I've to work in VB to assing to each one the parent....
</p>

<p>
	While if there is a self adjusting File Importing Form Structure,  I can just assing who is who (so when a tag appear hold it as main, cat or sub ...etc...), and he holds the parent till the new one will arrive into the single file....
</p>

<p>
	happy is someone has time to do so, viceversa prestashop will rest a non easy to be used instrument.
</p>

<p>
	2) My provvider own part of the administration right... so I'm not able to enter (still as Superadmin) into al the structure... so f.ex. I cannot change the fact that price are not immediately shown... (the prestashop flag is already in show price.
</p>

<p>
	Any idea to get back rights (we are already starting a legal fighting... ) ?
</p>

<p>
	3) World wide we all say the same thing:
</p>

<p>
	the shop take TOO MUCH TIME TO BE LOADED ! Several second !
</p>

<p>
	 
</p>

<p>
	Thanks
</p>

<p>
	Ciao<br />
	Stefano
</p>

<p>
	 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_2019_12/MARU-LIST.jpg.02d59aa6d237850dd4fe31f44eef7106.jpg" data-fileid="233355" data-fileext="jpg" rel=""><img alt="MARU-LIST.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="233355" data-ratio="52.6" style="height:auto;" width="1000" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/MARU-LIST.thumb.jpg.a7e6c89f13f692eafabfd6b08de071d6.jpg" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" /></a>
</p>
]]></description><guid isPermaLink="false">1011358</guid><pubDate>Sun, 22 Dec 2019 10:01:50 +0000</pubDate></item><item><title>Removal of Information Section from Foot</title><link>https://www.prestashop.com/forums/topic/1011009-removal-of-information-section-from-foot/</link><description><![CDATA[
<p>
	Hi All,
</p>

<p>
	I am brand new to developing with Prestashop 1.7 and i am currently looking to remove the information section (Image attached) from the footer. I only seem to be able to manage our company and store info.
</p>

<p>
	Any help on this is much appreciated
</p>

<p>
	Thanks
</p>

<p>
	Jonathan
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/Capture.PNG.a251f4488bcb7b10ae9ac2bba78e96a7.PNG" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="232947" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/Capture.thumb.PNG.6dcde9d456462fdd32b138eb5abf2a3d.PNG" data-ratio="26.5" width="1000" class="ipsImage ipsImage_thumbnailed" alt="Capture.PNG"></a></p>]]></description><guid isPermaLink="false">1011009</guid><pubDate>Mon, 16 Dec 2019 11:37:18 +0000</pubDate></item><item><title>Changing combinations on product page is very slow</title><link>https://www.prestashop.com/forums/topic/1008913-changing-combinations-on-product-page-is-very-slow/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	I've got a little issue I've facing with the Prestahop website, 1.7. When a combination is selected on the product page, it takes the page a couple of seconds before it switches, i.e. loading in combination images. Customers are choosing a combination and adding to cart straight away but since the newly selected combination has not loaded they are adding the wrong one to cart.
</p>

<p>
	Is there a way to show like a spinning wheel to indicate to the customer to wait whiles Prestashop switches to combination the user selected?
</p>

<p>
	I appreciate any help.
</p>

<p>
	Regards,
</p>

<p>
	Hash
</p>
]]></description><guid isPermaLink="false">1008913</guid><pubDate>Mon, 18 Nov 2019 22:17:06 +0000</pubDate></item><item><title>FAQ CMS block</title><link>https://www.prestashop.com/forums/topic/297319-faq-cms-block/</link><description><![CDATA[
<p>Does anyone know, within the context of CMS, how to build a frequently asked questions list?  What I would like to do is have the questions with a + sign in front of them.  When the + is clicked, the questions expands with the anserer given. </p>
<p> </p>
<p>If anyone knows of a better way to do frequently asked questions, I would be glad to hear of it.</p>
<p> </p>
<p>Thanks in advance.</p>
<p> </p>
<p>Steve</p>
]]></description><guid isPermaLink="false">297319</guid><pubDate>Sat, 21 Dec 2013 18:17:27 +0000</pubDate></item><item><title>Completely eliminate a category and its subcontent from the frontend</title><link>https://www.prestashop.com/forums/topic/1011292-completely-eliminate-a-category-and-its-subcontent-from-the-frontend/</link><description><![CDATA[
<p>
	Hey.
</p>

<p>
	What's the best way to eliminate a category and all its subcontent (subcategories, subitems, other) from the frontend completely? Basically, it should only be visible in the backend and there should be no trace of it in the frontend whatsoever. It should only be visible (and editable) in the backend.
</p>

<p>
	Neither disabling a category or disconnecting it from all user groups did that.
</p>

<p>
	If it's not possible to do via the backend, I will try to hardcode a skip-this-category clause directly in code, but would rather avoid doing that.
</p>

<p>
	A permanently disabled "maintenance branch" of the category tree kind of feature would also do the trick.
</p>

<p>
	Thank you.
</p>
]]></description><guid isPermaLink="false">1011292</guid><pubDate>Fri, 20 Dec 2019 19:04:45 +0000</pubDate></item><item><title>Test and Production environment workflow</title><link>https://www.prestashop.com/forums/topic/1010858-test-and-production-environment-workflow/</link><description><![CDATA[
<p>
	hello,
</p>

<p>
	I am fairly new here, so forgive my post if this has been already discussed and my search were unsuccessful in finding the related threads.
</p>

<p>
	I am administrating an existing PrestaShop environment for a new client who didn't have any backup, so I proceeded immediately to backup the web folder structure and the database without any problem.
</p>

<p>
	But my question is about restoring and also creating a test environment to try new setups and changes before bringing them in his production environment.
</p>

<p>
	The migration and restore procedures I found so far for 1.7.x do not completely address certains aspects, such as https certificates, changing config for potentially different versions of apache environments and other things. The procedure I followed is: <a href="https://websitemigrationguides.com/guide.php?migrate=4" rel="external nofollow">https://websitemigrationguides.com/guide.php?migrate=4</a>, (very well explained indeed). Unfortunately, once done, for some reason I can't pass the home page when I restore it into my localhost environment.
</p>

<p>
	Does anyone know of any other documented complete procedure to migrate a working environment into another one and to verify that all is good in case it needs to be restored? <br />
	Other things that I understood needed to be done are beside the aforementioned procedure are:
</p>

<p>
	* update the ps_configuration table with the new PS_SHOP_DOMAIN and PS_SHOP_DOMAIN_SSL with the new domain<br />
	* update ps_shop_url with the new url.<br />
	* update config/parameter.php with the new db location and credential. <br />
	all done ok, and the home page loads, but clicking on any item result into a xampp dashboard page. Also the browser complain about wrong certificates.
</p>

<p>
	Any clue that could point me to a step forward in the resolution of this issue is very appreciated. Again: the goal is to replicate the working environment into a local one.
</p>

<p>
	Regards,
</p>

<p>
	/Flavio
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010858</guid><pubDate>Fri, 13 Dec 2019 17:32:21 +0000</pubDate></item><item><title>How to remove a specific word from invoice</title><link>https://www.prestashop.com/forums/topic/1010868-how-to-remove-a-specific-word-from-invoice/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	As per my screen shot, i want to remove a specific word from the invoice which it is (tax excl), how to do that.
</p>

<p>
	 
</p>

<p>
	thank you,
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/Screenshot_2.png.5c1f97a2c07974a511c4f22fd73da4a1.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="232818" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/Screenshot_2.png.5c1f97a2c07974a511c4f22fd73da4a1.png" data-ratio="5.8" width="896" class="ipsImage ipsImage_thumbnailed" alt="Screenshot_2.png"></a></p>]]></description><guid isPermaLink="false">1010868</guid><pubDate>Sat, 14 Dec 2019 00:29:40 +0000</pubDate></item><item><title>[SOLVED]All links broken on website</title><link>https://www.prestashop.com/forums/topic/272940-solvedall-links-broken-on-website/</link><description><![CDATA[
<p>Hello I hope someone can tell me what the heck is going on with my site. </p>
<p>I am running v1.4.11 if you go to my site<a href="http://www.mustangfactory.net" rel="external nofollow">.mustangfactory</a> you will see that all the links do not work.</p>
<p>If I go into admin I can see all the products, pricing, store info etc. </p>
<p>I downloaded 1 click update, thinking I could rebuild the bad file but it also will not install comes up with missing token and missing error pages.</p>
<p>Thanks for the help, Phil</p>
]]></description><guid isPermaLink="false">272940</guid><pubDate>Fri, 06 Sep 2013 00:36:08 +0000</pubDate></item><item><title>Problems to access from back office BO to product edition</title><link>https://www.prestashop.com/forums/topic/1009625-problems-to-access-from-back-office-bo-to-product-edition/</link><description><![CDATA[
<p>
	Hi everybody,
</p>

<p>
	I post something similar a few days ago.
</p>

<p>
	My problem / issue is, that I have a large number of categories in my prestashop: more than 5.000 unique categories (and subcategories, both).
</p>

<p>
	When I try to access for product detail (or product edition) from backoffice, It doesn't work, because the back end is trying to charge ALL categories.
</p>

<p>
	In my local, I change memory_limit to -1 (infinite), but it wans't a good idea, my machine was very slow and cause other problems in general.
</p>

<p>
	Now, I am with a live website and I have same issue. i have a very good server, so that's not the problem.
</p>

<p>
	I read github prestashop issues, they talked about it:
</p>

<p>
	<a href="https://github.com/PrestaShop/PrestaShop/pull/8896" rel="external nofollow">https://github.com/PrestaShop/PrestaShop/pull/8896</a>
</p>

<p>
	 
</p>

<p>
	I am following all changes in commits, but nothing happends, just differents errors, that I can't manage either.
</p>

<p>
	 
</p>

<p>
	I am wondering if someone knows how to NOT charge / load categories when accessing to product details in BO.
</p>

<p>
	<br />
	Please help!
</p>
]]></description><guid isPermaLink="false">1009625</guid><pubDate>Wed, 27 Nov 2019 15:01:09 +0000</pubDate></item><item><title>Cache problem with leotheme theme</title><link>https://www.prestashop.com/forums/topic/617386-cache-problem-with-leotheme-theme/</link><description><![CDATA[
<p><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">Hi,</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">we used leo_xalem theme for our ecommerce, but we have a problem.</span><br /> </p>
<p><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">When the prestashop cache is enabled we noticed that every 60 seconds the cached files are created again (in the path /cache/<span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">smarty/</span>).</span><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">The same does not happen with the default prestashop template.</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">For instance: the file in the path</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">/cache/smarty/cache/socialsharing/1488/1/3/3/10/86/fb/3a/86fb3aaf697b1d3a8c25d8285b85f4b22972068b.socialsharing.tpl.php</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">With leo_xalem the file is recreated every 60 seconds, with default prestashop theme does not happen.</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">To say this we see the "last modification time" of the file.</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">The same happens for the other modules and files in the cache directory (<span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);"><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">/cache/<span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">smarty/)</span></span></span>.</span><br /><br /><span style="color:rgb(102,102,102);font-family:roboto;font-size:16px;font-style:normal;font-weight:300;background-color:rgb(255,255,255);">Where is the problem? It seems that the cache time in only 60 seconds when a leotheme is used.</span></p>
]]></description><guid isPermaLink="false">617386</guid><pubDate>Wed, 28 Jun 2017 07:39:35 +0000</pubDate></item><item><title>Modifying Product Page on Classic Theme</title><link>https://www.prestashop.com/forums/topic/1010845-modifying-product-page-on-classic-theme/</link><description><![CDATA[
<p>
	Hi. 
</p>

<p>
	I am busy setting up my store using the free "Classic"  theme. I want to make changes to the look of the product pages but I am not sure if this is posssible, and if so, where to do this. Or do I need to add another module. With reference to the jpeg below, I would like to make the block marked "1" smaller to show only one line of text, and I would like to make the product block marked "2"  big enough to show up to 3 lines of text. Any help will be appreciated. 
</p>

<p>
	Thanks
</p>

<p>
	Kevin
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/Changes.jpg.583a7860a7de622320f1f4757a491e37.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="232810" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/Changes.thumb.jpg.32be4e5a9e582831eb7fd0a768b805c7.jpg" data-ratio="68.6" width="1000" class="ipsImage ipsImage_thumbnailed" alt="Changes.jpg"></a></p>]]></description><guid isPermaLink="false">1010845</guid><pubDate>Fri, 13 Dec 2019 14:31:56 +0000</pubDate></item><item><title>How to modify prestashop so that an order don't decrease products quantity</title><link>https://www.prestashop.com/forums/topic/1010723-how-to-modify-prestashop-so-that-an-order-dont-decrease-products-quantity/</link><description><![CDATA[
<p>
	Hey guys, I have a question.<br /><br />
	Is it possibile when clients place an order in the store, prestashop don't change the stock quantity of the product purchased. So product quantity always remains the same.
</p>

<p>
	I use Prestashop 1.7.4
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010723</guid><pubDate>Thu, 12 Dec 2019 11:26:00 +0000</pubDate></item><item><title>Checkout error: security code does not match</title><link>https://www.prestashop.com/forums/topic/1010958-checkout-error-security-code-does-not-match/</link><description><![CDATA[<p>
	Hi guys. Will you help.me please. When customer trying to order as guest or by creating an acc the error is showing as on attached picture. Not sure whats wrong
</p>
<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/741583966_Screenshot_20191215-184928_SamsungInternet.jpg.f3287eb5dc45218062d708261843293d.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="232904" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/448767984_Screenshot_20191215-184928_SamsungInternet.thumb.jpg.f98ad526850ea59189f153bdae62e788.jpg" data-ratio="204.92" width="366" class="ipsImage ipsImage_thumbnailed" alt="Screenshot_20191215-184928_Samsung Internet.jpg"></a></p>]]></description><guid isPermaLink="false">1010958</guid><pubDate>Sun, 15 Dec 2019 19:42:43 +0000</pubDate></item><item><title>Attaching the invoice to Mail Alerts email</title><link>https://www.prestashop.com/forums/topic/1011182-attaching-the-invoice-to-mail-alerts-email/</link><description><![CDATA[<p>
	How can I attach the same invoice pdf that is sent to the customer to the new order email sent by the Mail Alerts module to the merchants? Basically, I want the invoice to be attached to both the customer and the merchant email when a new order is placed (the merchant email is sent using the Mail Alerts module). Thank you in advance.
</p>]]></description><guid isPermaLink="false">1011182</guid><pubDate>Wed, 18 Dec 2019 15:08:27 +0000</pubDate></item><item><title>Prestablog - Mandatory Permanent redirect url??</title><link>https://www.prestashop.com/forums/topic/1011052-prestablog-mandatory-permanent-redirect-url/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	I recently installed the Prestablog module. And when i edit the existing news article or make a new one and then edit it, i receive the error: "Error<br />
	The field Permanent redirect url is not a correct. ‌"
</p>

<p>
	I don't need a redirect and will not fill out the field. Is this a bug? 
</p>

<p>
	I can only save my changes by filling in an URL. But then the news is unavailable. 
</p>

<p>
	Cheers
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1011052</guid><pubDate>Mon, 16 Dec 2019 20:06:37 +0000</pubDate></item><item><title>Slow categoy list, lot of features</title><link>https://www.prestashop.com/forums/topic/1011208-slow-categoy-list-lot-of-features/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I'm facing with slow Prestashop. Version im using is 1.7.6.1. Z.one theme. Few modules (disabling them is not helping to improve speeds). Site is <a href="https://shop.merttech.ee" rel="external nofollow">Here</a><br />
	If i started adding products, site was very fast. Now i have ca 10000 products with lot of features (approx 5-15 features pear product on about 2-k products). I made all optimizations i can do in backoffice, added redis cache to cache repeated db queries. It helped, but not too much. Front page is loading less then 4 secs, but some categories with lot of products, are loading slow.
</p>

<p>
	We are using local shared server. They said, our subscription plan is enough to run our shop. And they said, that i have to look into queries. 
</p>

<p>
	Should we move to VPS or dedicated server?
</p>

<p>
	Really waiting help from you guys <span><img alt=":)" data-emoticon="" height="20" src="https://www.prestashop.com/forums/uploads/emoticons/default_smile.png" srcset="https://www.prestashop.com/forums/uploads/emoticons/smile@2x.png 2x" title=":)" width="20" /></span><br />
	 
</p>

<p>
	With Regards
</p>

<p>
	Omeri
</p>
]]></description><guid isPermaLink="false">1011208</guid><pubDate>Thu, 19 Dec 2019 09:09:01 +0000</pubDate></item><item><title>Smart Blog 2 Module Post detail page getting 404</title><link>https://www.prestashop.com/forums/topic/1003692-smart-blog-2-module-post-detail-page-getting-404/</link><description><![CDATA[
<p>
	Hello
</p>

<p>
	I was hoping someone could help me with this website which uses Smart Blog 2 module.
</p>

<p>
	The news page works fine, listing the blogs https://solmedialtd.com/blog
</p>

<p>
	But when i click on the "Read more" button is tries to load the blog page but gives me a 404 error. 
</p>

<p>
	If you click the top one
</p>

<p>
	CRISTALLO - THE CLEAR SOLUTION IS ON ITS WAY
</p>

<p>
	Any ideas?
</p>

<p>
	Thank you <span><img alt=":)" data-emoticon="" height="20" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" srcset="https://www.prestashop.com/forums/uploads/emoticons/smile@2x.png 2x" title=":)" width="20" data-src="https://www.prestashop.com/forums/uploads/emoticons/default_smile.png"></span>
</p>
]]></description><guid isPermaLink="false">1003692</guid><pubDate>Mon, 07 Oct 2019 20:30:33 +0000</pubDate></item><item><title>Copy Problem</title><link>https://www.prestashop.com/forums/topic/1003271-copy-problem/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	when we edit a product and we do copy paste, we get this part of code copied in the text ?
</p>

<p>
	&lt;div id="gtx-trans" style="position: absolute; left: 188px; top: 102px;"&gt;<br />
	&lt;div class="gtx-trans-icon"&gt;&lt;/div&gt;<br />
	&lt;/div&gt;
</p>

<p>
	We don't want to copy this in the code. Is a bug ? What is it ?
</p>

<p>
	When we do copy paste in product text, it add this code to the end of the text.
</p>

<p>
	Thanks
</p>
]]></description><guid isPermaLink="false">1003271</guid><pubDate>Wed, 02 Oct 2019 22:34:12 +0000</pubDate></item><item><title>SQL Manager query</title><link>https://www.prestashop.com/forums/topic/1011198-sql-manager-query/</link><description><![CDATA[
<p>
	hi<br />
	How to create a SQL Manager query for:<br />
	referenced - FROM ps_product<br />
	JOIN<br />
	description - FROM ps_product_lang
</p>

<p>
	Prestashop. 1.6.1.13
</p>
]]></description><guid isPermaLink="false">1011198</guid><pubDate>Thu, 19 Dec 2019 06:36:27 +0000</pubDate></item><item><title>Solution for admin login problem</title><link>https://www.prestashop.com/forums/topic/213049-solution-for-admin-login-problem/</link><description><![CDATA[
<p>Hi all</p>
<p> </p>
<p>Recently, I've been having a problem when trying to login to my admin panel, I would be asked to login again and again, or after browsing 1 or 2 pages inside my admin panel, I would be asked to re-login.</p>
<p> </p>
<p>I suspected it was my cookies that had some problem, so I flushed them but the problem never went away.</p>
<p> </p>
<p>I tried this on FF and Chrome, same problem everywhere.</p>
<p> </p>
<p>So I googled and found a solution that worked for me. So I'm sharing it:</p>
<p> </p>
<p><strong>Disable the IP check</strong> in classes/Cookie.php (this can causes many issues with dynamics IP) : in isLoggedBack(), remove or comment the fourth condition :</p>
<p>AND (!isset($this-&gt;_content['remote_addr']) OR $this-&gt;_content['remote_addr'] == ip2long(Tools::getRemoteAddr()) OR !Configuration::get('PS_COOKIE_CHECKIP'))</p>
<p> </p>
<p>Solution found at <a href="http://stackoverflow.com/questions/11335073/prestashop-cant-login-in-admin" rel="external nofollow">http://stackoverflow.com/questions/11335073/prestashop-cant-login-in-admin</a></p>
]]></description><guid isPermaLink="false">213049</guid><pubDate>Sat, 29 Dec 2012 00:14:13 +0000</pubDate></item><item><title>OPTIN ERROR</title><link>https://www.prestashop.com/forums/topic/997058-optin-error/</link><description><![CDATA[
<pre class="ipsCode">
Hello, I use Presta 1.7.6 Unfortunately, no customer can invest more. He always gets that mistake. Even if I want to create it in the BO I get the Optin error. I hope you can serve me !? Thank you

PreaastaShopException]

Property Customer-&gt;optin is empty.
at line 1004 in file classes/ObjectModel.php

999. } 1000. 1001. $message = $this-&gt;validateField($field, $this-&gt;$field); 1002. if ($message !== true) { 1003. if ($die) { 1004. throw new PrestaShopException($message); 1005. } 1006. 1007. return $error_return ? $message : false; 1008. } 1009. }

ObjectModelCore-&gt;validateFields - [line 292 - classes/ObjectModel.php]

287. * 288. * @throws PrestaShopException 289. */ 290. public function getFields() 291. { 292. $this-&gt;validateFields(); 293. $fields = $this-&gt;formatFields(self::FORMAT_COMMON); 294. 295. // For retro compatibility 296. if (Shop::isTableAssociated($this-&gt;def['table'])) { 297. $fields = array_merge($fields, $this-&gt;getFieldsShop());

ObjectModelCore-&gt;getFields - [line 561 - classes/ObjectModel.php]

556. 557. // Database insertion 558. if (Shop::checkIdShopDefault($this-&gt;def['table'])) { 559. $this-&gt;id_shop_default = (in_array(Configuration::get('PS_SHOP_DEFAULT'), $id_shop_list) == true) ? Configuration::get('PS_SHOP_DEFAULT') : min($id_shop_list); 560. } 561. if (!$result = Db::getInstance()-&gt;insert($this-&gt;def['table'], $this-&gt;getFields(), $null_values)) { 562. return false; 563. } 564. 565. // Get object id in database 566. $this-&gt;id = Db::getInstance()-&gt;Insert_ID();

ObjectModelCore-&gt;add - [line 262 - classes/Customer.php] - [2 Arguments]

257. 258. /* Can't create a guest customer, if this feature is disabled */ 259. if ($this-&gt;is_guest &amp;&amp; !Configuration::get('PS_GUEST_CHECKOUT_ENABLED')) { 260. return false; 261. } 262. $success = parent::add($autoDate, $nullValues); 263. $this-&gt;updateGroup($this-&gt;groupBox); 264. 265. return $success; 266. } 267.

CustomerCore-&gt;add - [line 516 - classes/ObjectModel.php] - [2 Arguments]

511. * 512. * @throws PrestaShopException 513. */ 514. public function save($null_values = false, $auto_date = true) 515. { 516. return (int) $this-&gt;id &gt; 0 ? $this-&gt;update($null_values) : $this-&gt;add($auto_date, $null_values); 517. } 518. 519. /** 520. * Adds current object to the database. 521. *

ObjectModelCore-&gt;save - [line 195 - classes/form/CustomerPersister.php]

190. ); 191. 192. return false; 193. } 194. 195. $ok = $customer-&gt;save(); 196. 197. if ($ok) { 198. $this-&gt;context-&gt;updateCustomer($customer); 199. $this-&gt;context-&gt;cart-&gt;update(); 200. $this-&gt;sendConfirmationMail($customer);

CustomerPersisterCore-&gt;create - [line 59 - classes/form/CustomerPersister.php] - [2 Arguments]

54. public function save(Customer $customer, $clearTextPassword, $newPassword = '', $passwordRequired = true) 55. { 56. if ($customer-&gt;id) { 57. return $this-&gt;update($customer, $clearTextPassword, $newPassword, $passwordRequired); 58. } else { 59. return $this-&gt;create($customer, $clearTextPassword); 60. } 61. } 62. 63. private function update(Customer $customer, $clearTextPassword, $newPassword, $passwordRequired = true) 64. {

CustomerPersisterCore-&gt;save - [line 196 - classes/form/CustomerForm.php] - [4 Arguments]

191. 192. $ok = $this-&gt;customerPersister-&gt;save( 193. $this-&gt;getCustomer(), 194. $clearTextPassword, 195. $newPassword, 196. $this-&gt;passwordRequired 197. ); 198. 199. if (!$ok) { 200. foreach ($this-&gt;customerPersister-&gt;getErrors() as $field =&gt; $errors) { 201. $this-&gt;formFields[$field]-&gt;setErrors($errors);

CustomerFormCore-&gt;submit - [line 60 - controllers/front/AuthController.php]

55. function ($carry, $item) { 56. return $carry &amp;&amp; $item; 57. }, 58. true 59. ); 60. if ($hookResult &amp;&amp; $register_form-&gt;submit()) { 61. $should_redirect = true; 62. } 63. } 64. 65. $this-&gt;context-&gt;smarty-&gt;assign([

AuthControllerCore-&gt;initContent - [line 291 - classes/controller/Controller.php]

286. if (!$this-&gt;content_only &amp;&amp; ($this-&gt;display_header || (isset($this-&gt;className) &amp;&amp; $this-&gt;className))) { 287. $this-&gt;initHeader(); 288. } 289. 290. if ($this-&gt;viewAccess()) { 291. $this-&gt;initContent(); 292. } else { 293. $this-&gt;errors[] = $this-&gt;trans('Access denied.', array(), 'Admin.Notifications.Error'); 294. } 295. 296. if (!$this-&gt;content_only &amp;&amp; ($this-&gt;display_footer || (isset($this-&gt;className) &amp;&amp; $this-&gt;className))) {

ControllerCore-&gt;run - [line 515 - classes/Dispatcher.php]

510. if (isset($params_hook_action_dispatcher)) { 511. Hook::exec('actionDispatcher', $params_hook_action_dispatcher); 512. } 513. 514. // Running controller 515. $controller-&gt;run(); 516. 517. // Execute hook dispatcher after 518. if (isset($params_hook_action_dispatcher)) { 519. Hook::exec('actionDispatcherAfter', $params_hook_action_dispatcher); 520. }

DispatcherCore-&gt;dispatch - [line 28 - index.php]

23. * @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) 24. * International Registered Trademark &amp; Property of PrestaShop SA 25. */ 26. 27. require dirname(__FILE__).'/config/config.inc.php'; 28. Dispatcher::getInstance()-&gt;dispatch();</pre>

<p>
	Hello, I use Presta 1.7.6 Unfortunately, no customer can invest more. He always gets that mistake. Even if I want to create it in the BO I get the Optin error. I hope you can serve me !? Thank you
</p>
]]></description><guid isPermaLink="false">997058</guid><pubDate>Mon, 22 Jul 2019 22:14:30 +0000</pubDate></item><item><title>Discount only for newsletter subscribers</title><link>https://www.prestashop.com/forums/topic/278933-discount-only-for-newsletter-subscribers/</link><description><![CDATA[
<p>Hi everybody,</p>
<p> </p>
<p>I've tried to search the forums with no luck, so forgive me if this has already been answered.</p>
<p> </p>
<p>What I'm trying to achieve is a setup where all subscribers to my newsletter, will receive a 10% discount.</p>
<p> </p>
<p>I know how to add 10% discount to certain customer groups - but that doesn't quite do the trick. I would really like it to be only for any and all newsletter subscribers. </p>
<p> </p>
<p>Is that possible to do?</p>
]]></description><guid isPermaLink="false">278933</guid><pubDate>Wed, 02 Oct 2013 09:19:18 +0000</pubDate></item><item><title>Order status not added to order, also ordered products missing from list</title><link>https://www.prestashop.com/forums/topic/459533-order-status-not-added-to-order-also-ordered-products-missing-from-list/</link><description><![CDATA[
<p>Hi!</p>
<p> </p>
<p>In BO sometimes when an order placed there isn't attached order status and also if I check that particular order, the products are missing. That means I don't get order confirmation mail and I believe customers also doesn't. If I ask the customer to reorder, everything going back to normal. This thing just started a few days a go. When I trying to recreate the issue for myself it's not happens. Below I attached a few picture from the problem, please help.</p>
<p>PS version 1.6.0.11</p>
<p> </p>
<p> </p>
<p>I found only one relevant result, but that topic still unsolved:</p>
<p><a href="https://www.prestashop.com/forums/topic/382708-products-missing-from-order-page/?hl=%2Bproducts+%2Bmissing+%2Bfrom+%2Border" rel="">https://www.prestashop.com/forums/topic/382708-products-missing-from-order-page/?hl=%2Bproducts+%2Bmissing+%2Bfrom+%2Border</a></p>
<p> </p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_08_2015/post-202307-0-95666800-1438627829.png" data-fileid="132100" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="132100" class="ipsImage ipsImage_thumbnailed" alt="post-202307-0-95666800-1438627829_thumb.png" data-src="https://www.prestashop.com/forums/uploads/monthly_08_2015/post-202307-0-95666800-1438627829_thumb.png" width="100" data-ratio="43"></a></p>
<p> </p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_08_2015/post-202307-0-68823100-1438627845.png" data-fileid="132101" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="132101" class="ipsImage ipsImage_thumbnailed" alt="post-202307-0-68823100-1438627845_thumb.png" data-src="https://www.prestashop.com/forums/uploads/monthly_08_2015/post-202307-0-68823100-1438627845_thumb.png" width="100" data-ratio="24"></a></p>
<p> </p>
]]></description><guid isPermaLink="false">459533</guid><pubDate>Mon, 03 Aug 2015 18:51:46 +0000</pubDate></item><item><title>Default Newsletter module sends email when customer is buying some product</title><link>https://www.prestashop.com/forums/topic/1011174-default-newsletter-module-sends-email-when-customer-is-buying-some-product/</link><description><![CDATA[
<p>
	The default module of the newsletter send emails when customers are buyng some product. I don't want this happens.<br />
	It must send emails only if the customers decides to subscribe to the newsletter and not when is going to bui something.
</p>

<p>
	At this link: http://helpme.emeraldlab.it/prestashop/bug-newsletter.mp4<br />
	you can see the bug
</p>

<p>
	In the attachment you can see my setting for the module. It says that only if the user subscibe it will send the email. <br />
	Indeed, the system doesn't registry the customers as a newsletter subscriber when he buys something.<br />
	So, I don't know why it sends the email for the new newsletter subscribers.
</p>

<p>
	Is it a bug? How to fix it?
</p>

<p>
	I hope I explained myself
</p>

<p>
	Thank you,<br />
	Pekkhyu
</p>

<p>
	P.S: Prestashop Version 1.7.6
</p>

<p>
	Php version: 7.3
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_2019_12/Cattura.JPG.886a600482085797f361ac4b8046d1ba.JPG" data-fileid="233059" data-fileext="JPG" rel=""><img alt="Cattura.JPG" class="ipsImage ipsImage_thumbnailed" data-fileid="233059" data-ratio="42.14" style="height:auto;" width="693" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/Cattura.JPG.886a600482085797f361ac4b8046d1ba.JPG" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" /></a>
</p>
]]></description><guid isPermaLink="false">1011174</guid><pubDate>Wed, 18 Dec 2019 11:44:49 +0000</pubDate></item><item><title>Problem - 'Our Best Sellers' on homepage not updating</title><link>https://www.prestashop.com/forums/topic/309345-problem-our-best-sellers-on-homepage-not-updating/</link><description><![CDATA[
<p>We have a prestashop store with a purchased theme. The homepage has a 'Our Best Sellers' module in a very prominent position. The problem is, that the best sellers do not actually update? They have been the same products since last year and do not reflect what customers are actually buying?</p>
<p> </p>
<p>Any ideas very welcome...</p>
]]></description><guid isPermaLink="false">309345</guid><pubDate>Tue, 18 Feb 2014 09:43:24 +0000</pubDate></item><item><title>Error 500 Edit Customer</title><link>https://www.prestashop.com/forums/topic/998570-error-500-edit-customer/</link><description><![CDATA[
<p>
	Hi
</p>

<p>
	Think I posted this in the wrong place first time...
</p>

<p>
	Just starting out with PrestaShop and running 1.7.6.0, have purchased a module to migrate us from OpenCart 3 which has been installed and run.
</p>

<p>
	Now on trying to view a customer to edit that person I'm getting a Error 500 page, but only on customers who have previously placed an order. If it's a customer whos registered and not ordered it will show the page no problem.
</p>

<p>
	I've contacted the dev of the migration module and they have done a test migration of our current OpenCart shop to their server and it's worked fine so said it's our install or hosting which is the issue.
</p>

<p>
	<strong>I've turned on debug mode</strong> and on clicking a customer to edit I get the following:
</p>

<p>
	<em>Level Channel Message</em>
</p>

<p>
	<em>DEBUG18:23:41doctrineSELECT name FROM ps_module WHERE active = 1</em>
</p>

<p>
	<em>INFO18:23:41requestMatched route "admin_customers_edit".</em>
</p>

<p>
	<em>DEBUG18:23:41securityRead existing security token from the session.</em>
</p>

<p>
	<em>DEBUG18:23:41securityUser was reloaded from a user provider.</em>
</p>

<p>
	<em>INFO18:23:41phpUser Deprecated: Tools::displayPrice() is deprecated since version 1.7.6.0. Use PrestaShop\PrestaShop\Core\Localization\Locale::formatPrice() instead.</em>
</p>

<p>
	<em>INFO18:23:41phpUser Deprecated: Implementing "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface" without the "reset()" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class "Csa\Bundle\GuzzleBundle\DataCollector\GuzzleCollector".</em>
</p>

<p>
	<em>CRITICAL18:23:41phpUncaught Notice: Undefined variable: customerForm</em>
</p>

<p>
	<em>CRITICAL18:23:41requestUncaught PHP Exception Symfony\Component\Debug\Exception\ContextErrorException: "Notice: Undefined variable: customerForm" at /home/ttocco/public_html/prestatest/src/PrestaShopBundle/Controller/Admin/Sell/Customer/CustomerController.php line 203</em>
</p>

<p>
	<em>DEBUG18:23:41phpWarning: highlight_file() has been disabled for security reasons</em>
</p>

<p>
	Any help on this or what to try next please?
</p>

<p>
	Thanks
</p>
]]></description><guid isPermaLink="false">998570</guid><pubDate>Fri, 09 Aug 2019 14:04:00 +0000</pubDate></item><item><title>Instructions for RSS products feed v1.0.1?</title><link>https://www.prestashop.com/forums/topic/1010742-instructions-for-rss-products-feed-v101/</link><description><![CDATA[
<p>
	I have installed the free Prestashop RSS products feed v1.0.1 via the module manager. But there are no configuration or instructions found anywhere. A Google search was only showing results from 2010 - 2017.
</p>

<p>
	Where can I find the product feed URL that is outputted? Would be nice if they release a simple instructional sheet.
</p>
]]></description><guid isPermaLink="false">1010742</guid><pubDate>Thu, 12 Dec 2019 16:15:57 +0000</pubDate></item><item><title>Category delimiter</title><link>https://www.prestashop.com/forums/topic/1009776-category-delimiter/</link><description><![CDATA[<p>
	My CSV product file has products that have 1/2", 1/3" and 1/4" in several categories. I have replaced the separator comma to a semicolon in the field Categories. When importing all products are created in the root category even though I have entered semicolon in the multiple value separator when importing. I clear everything, products and categories before importing that allow Prestashop to auto create categories. Where am I going wrong?
</p>]]></description><guid isPermaLink="false">1009776</guid><pubDate>Fri, 29 Nov 2019 11:59:19 +0000</pubDate></item><item><title>Combination stock quantity issue for t-shirt printer sales.</title><link>https://www.prestashop.com/forums/topic/1011042-combination-stock-quantity-issue-for-t-shirt-printer-sales/</link><description><![CDATA[
<p>
	Hi all,
</p>

<p>
	We run a shop where we sell clothing.  The stock works great where it tells us what we have.  We have now bought a t-shirt printer and it is causing us issues with stock management.  <br />
	For example we purchased 100x blank t-shirts.  We have 10 different designs that people can choose from and they also have the option of putting their name on it, choose a font and a colour for their name.  I have therefore setup combinations and given each option 100 qty since that is how much stock of the bank t-shirt we have.  The issue is now there are over 300 different variations each with 100 qty in stock!  
</p>

<p>
	Is there any way to better work with combinations for this as surely I am not the only person who sells items that can be customised and therefore shows as many items in stock form, but is actually only 1?
</p>

<p>
	Cheers for any help you can give.
</p>
]]></description><guid isPermaLink="false">1011042</guid><pubDate>Mon, 16 Dec 2019 17:18:49 +0000</pubDate></item><item><title>Category pages only show products with this MAIN category</title><link>https://www.prestashop.com/forums/topic/1010146-category-pages-only-show-products-with-this-main-category/</link><description><![CDATA[
<p>
	Hello
</p>

<p>
	Im having troubles listing category products in PS 1.7.6.1. It has a different behaviour as PS 1.6
</p>

<p>
	My category three is really simple
</p>

<p>
	-Index<br />
	  -- Main<br />
	    ---- Subcat.
</p>

<p>
	I only place products in the subcategories, never in the main category. And I have some products with 3-4 subcategories associated
</p>

<p>
	Well, if I enter in any category page:
</p>

<p>
	It just show the products with this category as Main category. But not the other products associated to this category, but with another Main category
</p>

<p>
	If I enable the "Show products of subcategory" option in Faceted module, It works "fine", the category pages shows all products (with main and secondary categorys)
</p>

<p>
	The bad thing is that I dont want to enable this option. I dont want to show products if a category has subcategories.
</p>

<p>
	Am I loosing something? or is a bug?<br />
	 
</p>

<p>
	Regards!
</p>
]]></description><guid isPermaLink="false">1010146</guid><pubDate>Wed, 04 Dec 2019 16:24:47 +0000</pubDate></item><item><title>How to add a html link in Product Features</title><link>https://www.prestashop.com/forums/topic/452577-how-to-add-a-html-link-in-product-features/</link><description><![CDATA[
<p>In Prestashop 1.6, is it possible to add a html hyperlink within the product features? And if so, how would I do that?</p>
<p> </p>
<p>My shop has services provided by different companies. What I would like to do is have a link to the service companies website. Are there any other ways I could have such a link?</p>
<p> </p>
<p>Many thanks</p>
]]></description><guid isPermaLink="false">452577</guid><pubDate>Thu, 09 Jul 2015 10:17:49 +0000</pubDate></item><item><title>Smartblog error</title><link>https://www.prestashop.com/forums/topic/343532-smartblog-error/</link><description><![CDATA[
<p>Hi</p>
<p> </p>
<p>My smartblog has startet to make an error. (it use to work fine9</p>
<p> </p>
<p>i get "500 server error"</p>
<p> </p>
<p>the log says;</p>
<p> </p>	[PrestaShopException]<p><b>Invalid product vars</b><br /><i>at line </i><b>104</b><i> in file </i><b>classes/Link.php</b></p>
<div>
<pre>98. 			if (is_array($product) &amp;&amp; isset($product['id_product']))99. 				$product = new Product($product['id_product'], false, $id_lang, $id_shop);100. 			elseif ((int)$product)101. 				$product = new Product((int)$product, false, $id_lang, $id_shop);102. 			else103. 				throw new PrestaShopException('Invalid product vars');104. 		}105. 106. 		// Set available keywords107. 		$params = array();108. 		$params['id'] = $product-&gt;id;</pre>
<p>Any suggestion how to fix it</p>
<p> </p>
<p>Jesper</p>
<p>www.rulleskisport.dk</p>
<p>Prestashop 1.6.0.8</p>
</div>
<p> </p>
]]></description><guid isPermaLink="false">343532</guid><pubDate>Thu, 10 Jul 2014 22:24:05 +0000</pubDate></item><item><title>[SOLVED] problem backend after update  1.7.3.1 to 1.7.6.1</title><link>https://www.prestashop.com/forums/topic/1003787-solved-problem-backend-after-update-1731-to-1761/</link><description><![CDATA[
<p>
	Hi everyone,
</p>

<p>
	I have a problem with the backend of my store since the update  1.7.3.1 to 1.7.6.1. It seems to be that the update is missed some tables in the database, is there a way to fix this? I can log in to the backend, but on some pages, like the product page, i get a server error.
</p>

<blockquote class="ipsQuote" data-ipsquote="">
	<div class="ipsQuote_citation">
		Quote
	</div>

	<div class="ipsQuote_contents">
		<p>
			Uncaught Exception: An exception occurred while executing 'SELECT t0.id AS id_1, t0.employee AS employee_2, t0.shop AS shop_3, t0.controller AS controller_4, t0.action AS action_5, t0.filter AS filter_6, t0.filter_id AS filter_id_7 FROM cecf_admin_filter t0 WHERE t0.employee = ? AND t0.shop = ? AND t0.controller = ? AND t0.action = ? LIMIT 1' with params [1, 1, "category", "index"]: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.filter_id' in 'field list'
		</p>
	</div>
</blockquote>

<blockquote class="ipsQuote" data-ipsquote="">
	<div class="ipsQuote_citation">
		Quote
	</div>

	<div class="ipsQuote_contents">
		<p>
			Uncaught PHP Exception Doctrine\DBAL\Exception\InvalidFieldNameException: "An exception occurred while executing 'SELECT t0.id AS id_1, t0.employee AS employee_2, t0.shop AS shop_3, t0.controller AS controller_4, t0.action AS action_5, t0.filter AS filter_6, t0.filter_id AS filter_id_7 FROM cecf_admin_filter t0 WHERE t0.employee = ? AND t0.shop = ? AND t0.controller = ? AND t0.action = ? LIMIT 1' with params [1, 1, "category", "index"]: SQLSTATE[42S22]: Column not found: 1054 Unknown column 't0.filter_id' in 'field list'" at /home/public/sites/www.gessicadancewear.nl/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/AbstractMySQLDriver.php line 71
		</p>
	</div>
</blockquote>

<p>
	I hope someone can help me with this, i have no idea how to solve the problem.
</p>

<p>
	best regards, mirjam
</p>
]]></description><guid isPermaLink="false">1003787</guid><pubDate>Tue, 08 Oct 2019 16:52:58 +0000</pubDate></item><item><title>500,000+ rows on ps_guest sounds too big?</title><link>https://www.prestashop.com/forums/topic/266421-500000-rows-on-ps_guest-sounds-too-big/</link><description><![CDATA[
<p>I have performance issues with my site and on my last installation of Prestahop, I had a similar problem (and that was caused by large database files).</p>
<p> </p>
<p>ps_guest   has 513,386 rows  and is 30MB in size and I would imagine is the cause (or not helping) my performance issues?</p>
<p> </p>
<p>Is it safe to empty this table?  What does ps_guest do? </p>
<p> </p>
<p> </p>
<p>I have a couple of issues related to performance, the site randomly hangs (I think this is when there are a few people simultaneously browsing the site) and in the back office, the "customers" page is really slow to load.</p>
]]></description><guid isPermaLink="false">266421</guid><pubDate>Tue, 06 Aug 2013 11:28:23 +0000</pubDate></item><item><title>Terms pop up modal wont close</title><link>https://www.prestashop.com/forums/topic/1010962-terms-pop-up-modal-wont-close/</link><description><![CDATA[
<p>
	On checkout (using 1.7.5) when clicking on terms at checkout the modal that opens wont close. Any ideas what's up here?
</p>

<p>
	Here's the error that displays in Chrome Developer Tools
</p>

<p>
	Uncaught Error: Modal is transitioning<br />
	    at d.hide (bootstrap.min.js:6)<br />
	    at HTMLButtonElement.&lt;anonymous&gt; (bootstrap.min.js:6)<br />
	    at HTMLDivElement.dispatch (core.js:963)<br />
	    at HTMLDivElement.elemData.handle (core.js:939)
</p>
]]></description><guid isPermaLink="false">1010962</guid><pubDate>Mon, 16 Dec 2019 00:09:13 +0000</pubDate></item><item><title>Password Reset email Doesn't Contain Password</title><link>https://www.prestashop.com/forums/topic/546824-password-reset-email-doesnt-contain-password/</link><description><![CDATA[
<p>If a user tries to reset their password, they first get an email titled Password Query Confirmation, with a link in it.  They click on the link to reset their password, then they get a second email, titled Your New Password.  Problem is, this second email doesn't actually contain the new password.  It has a section labelled YOUR NEW TRINITY STORE LOGIN DETAILS, that contains the user's email address, but no password.  User is then stuck and has to have admin intervention.</p>
<p> </p>
<p>How do we fix this?</p>
<p> </p>
<p>Thanks,</p>
<p> </p>
<p>PacSD Inc., consultant for Trinity</p>
<p> </p>
<p> </p>
<p>Prestashop 1.6.1.1</p>
<p>Leo Watches theme</p>
]]></description><guid isPermaLink="false">546824</guid><pubDate>Tue, 02 Aug 2016 21:15:57 +0000</pubDate></item><item><title>Cant Add Product, Infinite Load Spinning</title><link>https://www.prestashop.com/forums/topic/505492-cant-add-product-infinite-load-spinning/</link><description><![CDATA[
<p>I have new clear shop installed 1.6.1.4, PHP 5.4, shared hosting</p>
<p> </p>
<p>When i am trying to add product, i got errors in my console:</p>
<p> </p>
<p>GET <a href="http://anirionline.com/aniriadmin/index.php?controller=AdminProducts&amp;token=" rel="external nofollow">http://anirionline.com/aniriadmin/index.php?controller=AdminProducts&amp;token=</a>…uleTmproductvideos&amp;updateproduct&amp;ajax=1&amp;rand=1455088907252&amp;_=1455088888947 508 (unused)</p>
<p> </p>
<p>and</p>
<p> </p>
<p>Uncaught TypeError: Cannot read property 'replace' of undefined</p>
<p> </p>
<p>pointed on line 177 in products.js</p>
<pre class="ipsCode prettyprint">
current_tab = $(request.responseText).filter('.product-tab').attr('id').replace('product-', '');</pre>
<p>I got infinite loading spin</p>
<p> </p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_02_2016/post-1191071-0-30358000-1455089743.png" data-fileid="142950" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="142950" class="ipsImage ipsImage_thumbnailed" alt="post-1191071-0-30358000-1455089743_thumb.png" data-src="https://www.prestashop.com/forums/uploads/monthly_02_2016/post-1191071-0-30358000-1455089743_thumb.png" width="100" data-ratio="62"></a></p>
<p> </p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_02_2016/post-1191071-0-34245900-1455089651.png" data-fileid="142951" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="142951" class="ipsImage ipsImage_thumbnailed" alt="post-1191071-0-34245900-1455089651_thumb.png" data-src="https://www.prestashop.com/forums/uploads/monthly_02_2016/post-1191071-0-34245900-1455089651_thumb.png" width="100" data-ratio="62"></a></p>
]]></description><guid isPermaLink="false">505492</guid><pubDate>Wed, 10 Feb 2016 07:39:11 +0000</pubDate></item><item><title>How to remove declination of product once the declination is sold</title><link>https://www.prestashop.com/forums/topic/1010576-how-to-remove-declination-of-product-once-the-declination-is-sold/</link><description><![CDATA[
<p>
	Hello, 
</p>

<p>
	I am the owner of CasiersGourmands.Com website. We are starting to sell fresh products online with variable weight. By definition fresh products with differences in weight is sold as a declination. 
</p>

<p>
	Example a filet of pork meat is registered under product XYZ but as various declinations ranging from 0.5 KG to 0.7 kg. We sell the product per Kg and we have two problems. 
</p>

<p>
	 
</p>

<p>
	1. Once the product is sold I need the declination to appear as product is sold and not available anymore. Currently the website tells me stock = 0 when product is sold but it is confusing for the consumer. So I was wondering if there is not a function somewhere in PS 1.7 allowing change of color or automatic text once the product is sold. 
</p>

<p>
	See link to the website below : 
</p>

<p>
	<a href="https://www.casiersgourmands.com/900023-25-roti-de-porc-fermier-filet-3000000002704.html#/34-poids-052_kg" rel="external nofollow">https://www.casiersgourmands.com/900023-25-roti-de-porc-fermier-filet-3000000002704.html#/34-poids-052_kg</a>
</p>

<p>
	2. At present we are unable to use standard import frames with price per kilo. 
</p>

<p>
	The price per kilo is not appearing in case of product with declination. Is this a bug or I missed something? 
</p>

<p>
	 
</p>

<p>
	Thanks in advance for your help, 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010576</guid><pubDate>Tue, 10 Dec 2019 18:04:22 +0000</pubDate></item><item><title>Product URL after duplicate</title><link>https://www.prestashop.com/forums/topic/636945-product-url-after-duplicate/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	Sorry for my English mistakes.. 
</p>

<p>
	I have an issue after I duplicate a product.
</p>

<p>
	Example. I create new produc: Red T-Shirt. The product URL will be www.myshop.com/3-tshirts/1-xxx<strong>-<span style="color:#d35400;">red-t-shirt</span>.</strong>html
</p>

<p>
	Than I duplicate this product ant give new name "Black jeans" ant the product URL will be almost the same as the first product: www.myshop.com/2-jeans/2-xxx-<span style="color:#d35400;"><strong><u>red-t-shirt</u></strong></span>.html
</p>

<p>
	How can I update product URL's to real names?
</p>

<p>
	I tried to find for solutinion in formun but unsuccessfully.
</p>

<p>
	Thank you in advance for the answers.
</p>
]]></description><guid isPermaLink="false">636945</guid><pubDate>Fri, 24 Nov 2017 15:34:23 +0000</pubDate></item><item><title>Contact form doesn't send email to admin</title><link>https://www.prestashop.com/forums/topic/349955-contact-form-doesnt-send-email-to-admin/</link><description><![CDATA[
<p>Hi guys,</p>
<p> </p>
<p>When I send a message through the contact form I don't receive an email. It does however register the message in the backend.</p>
<p> </p>
<p>I have set up the proper contact person the email should go to. I use the smtp server from the hoster to send and receive email notifications, because php mail() didn't work at all. Test emails and order emails work fine (admin and customer order notifications are sent). It's just the contact form which is giving me headaches now.</p>
<p> </p>
<p>I'm using prestashop 1.6.0.9</p>
<p> </p>
<p>Can anyone help me out?</p>
]]></description><guid isPermaLink="false">349955</guid><pubDate>Mon, 11 Aug 2014 22:06:11 +0000</pubDate></item><item><title>Add Icon to the Product Menu</title><link>https://www.prestashop.com/forums/topic/1009857-add-icon-to-the-product-menu/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	Who can I Add Icon to the Product Menu ?
</p>

<p>
	 
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_12/828060944_HOMECONICONE.jpg.0085fc08fd35fb352c7e6aeae9bb4af7.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="232027" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/161920547_HOMECONICONE.thumb.jpg.69e16d20396c7cb96606896e8c87bd73.jpg" data-ratio="97.15" width="772" class="ipsImage ipsImage_thumbnailed" alt="HOME CON ICONE.jpg"></a></p>]]></description><guid isPermaLink="false">1009857</guid><pubDate>Sun, 01 Dec 2019 11:03:16 +0000</pubDate></item><item><title>Localhost front URL redirects to production URL</title><link>https://www.prestashop.com/forums/topic/839224-localhost-front-url-redirects-to-production-url/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I duplicated my live website to a local xampp server. I can reach the admin without any problems.
</p>

<p>
	 
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I changed :
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	In ps_configuration : 
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	<span style="background-color:#ffffff;color:#444444;font-size:13.12px;text-align:left;">PS_SHOP_DOMAIN to localhost</span>
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	<span style="background-color:#ffffff;color:#444444;font-size:13.12px;text-align:left;">PS_SHOP_DOMAIN_SSL to localhost</span>
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	In ps_shop_url : 
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	<span style="background-color:#ffffff;color:#444444;font-size:13.12px;text-align:left;">domain and domain_ssl to localhost</span>
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	<span style="background-color:#ffffff;color:#444444;font-size:13.12px;text-align:left;">physical_uri to /mywebsite/</span>
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	 
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I regenerated .htaccess via the back-office. 
</p>

<p style="background-color:#ffffff;color:#251b5b;font-size:14px;">
	I verified the settings.inc.php file with the right directories and URL.
</p>

<p>
	 
</p>

<p>
	But despite all this, when I try to access my front page, I get redirected to the live website. I've been looking for an answer for a couple hours but all I can find are things I've already tried.
</p>

<p>
	 
</p>

<p>
	Any solution ? 
</p>

<p>
	 
</p>

<p>
	Thank you.
</p>
]]></description><guid isPermaLink="false">839224</guid><pubDate>Fri, 08 Jun 2018 14:52:30 +0000</pubDate></item><item><title>Authorize.net Module - No Info Being Sent to Authorize.net</title><link>https://www.prestashop.com/forums/topic/471086-authorizenet-module-no-info-being-sent-to-authorizenet/</link><description><![CDATA[
<p><span style="font-family:tahoma, geneva, sans-serif;"><span style="font-size:12px;"><strong>PrestaShop version:<span style="color:rgb(85,85,85);"> 1.6.0.14</span></strong></span></span></p>
<p><strong><span style="font-family:tahoma, geneva, sans-serif;"><span style="font-size:12px;">Module: <span style="color:rgb(102,102,102);">Authorize.net AIM (Advanced Integration Method) </span></span></span></strong></p>
<p> </p>
<p><span>So I recently opened my store, and noticed that when customers are buying, no info is being sent into Authorize.net except Name, Street # and Address and Zip. The city, state, country, phone, email are all missing from the billing section, and the entire shipping section is empty.</span></p>
<p> </p>
<p><span>At my regular job I use Authorize.net through BigCommerce and they shoot all the information over to Authorize.net. I called Authorize.net and they said it is a Prestashop issue. Any help would be greatly appreciated.If I cannot get help here, is there anyone to call?</span></p>
<p> </p>
<p>See attached image for issue.</p>
<p> </p>
<p>Thanks in advance.</p>
<p><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_09_2015/post-1083059-0-34955000-1443116802.jpg" data-fileid="135232" rel=""><img src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-fileid="135232" class="ipsImage ipsImage_thumbnailed" alt="post-1083059-0-34955000-1443116802_thumb.jpg" data-src="https://www.prestashop.com/forums/uploads/monthly_09_2015/post-1083059-0-34955000-1443116802_thumb.jpg" width="63" data-ratio="158.73"></a></p>
]]></description><guid isPermaLink="false">471086</guid><pubDate>Thu, 24 Sep 2015 17:47:51 +0000</pubDate></item><item><title>need to run and change index.php into start.php</title><link>https://www.prestashop.com/forums/topic/1010769-need-to-run-and-change-indexphp-into-startphp/</link><description><![CDATA[<p>
	prestashop is actually running with index.php .<br />
	We need index.php for some other purpose so we must  change the   domain.xx./index.pho  into  index2.php.<br />
	How can we do that ?<br />
	Thanks for an help
</p>]]></description><guid isPermaLink="false">1010769</guid><pubDate>Fri, 13 Dec 2019 03:17:10 +0000</pubDate></item><item><title>Show specific currency by id</title><link>https://www.prestashop.com/forums/topic/1010768-show-specific-currency-by-id/</link><description><![CDATA[
<p>
	I need to display {$ f_currency.sign} {$ currency-&gt; getConversationRate ()} from a specific id regardless of the selected currency in Prestashop 1.6.
</p>

<p>
	Someone can help me?
</p>
]]></description><guid isPermaLink="false">1010768</guid><pubDate>Fri, 13 Dec 2019 01:45:50 +0000</pubDate></item><item><title>Unable to Edit or Add Categories/Pages</title><link>https://www.prestashop.com/forums/topic/1010055-unable-to-edit-or-add-categoriespages/</link><description><![CDATA[
<p>
	I have just installed a brand new instance of Prestashop (latest build) but am unable to add categories or edit / add pages without receiving errors such as <span>:</span>
</p>

<p>
	 
</p>

<p>
	An unexpected error occurred. [PrestaShop\PrestaShop\Core\Domain\CmsPage\Exception\CmsPageException code 0]
</p>

<p>
	 
</p>

<p>
	I have no idea what is causing this nor how to resolve it but its not a great start to using Prestashop. Any help is appreciated.
</p>
]]></description><guid isPermaLink="false">1010055</guid><pubDate>Tue, 03 Dec 2019 21:56:14 +0000</pubDate></item><item><title>I can't access Back Office</title><link>https://www.prestashop.com/forums/topic/569463-i-cant-access-back-office/</link><description><![CDATA[
<p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">Hi,</p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">I am new to Prestashop. I have installed Prestashop 1.6 on localhost and I am using EasyPhp.</p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">I am not able to get to the admin/back office login page. I found a folder named "Adminps" within the Prestashop folder (see below)</p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\modules\prestashop\adminps</p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">I believe this is the admin folder, when I try </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"><a href="http://127.0.0.1/prestashop/adminps" title="External link" rel="external nofollow">http://127.0.0.1/prestashop/adminps</a></p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">it says "This page is not available" (I can however see my page logo and top menu). </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">Can anyone please help me access the admin page. </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">Thanks in advance.</p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;"> </p>
<br /><p style="color:rgb(0,0,0);font-size:11px;font-family:Verdana, Arial, Helvetica, sans-serif;">Yathish</p>
<br />]]></description><guid isPermaLink="false">569463</guid><pubDate>Fri, 18 Nov 2016 00:09:04 +0000</pubDate></item><item><title>ps_categorytree</title><link>https://www.prestashop.com/forums/topic/1010715-ps_categorytree/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	 
</p>

<p>
	I am using Prestashop ver. 1.7.6.1 with module ps_categorytree. In default the categorytree modul is showing all categories. how can I edit or what can I make with this modul, if I want to show just defined categories?
</p>

<p>
	 
</p>

<p>
	Thank you very much for your help!
</p>

<p>
	Krisztián
</p>
]]></description><guid isPermaLink="false">1010715</guid><pubDate>Thu, 12 Dec 2019 10:46:50 +0000</pubDate></item><item><title>Create superadmin via command line</title><link>https://www.prestashop.com/forums/topic/1009939-create-superadmin-via-command-line/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	Is there a way to create a new SuperAdmin via commands ? (mysql, php-cli, ...)
</p>

<p>
	Thank you.
</p>
]]></description><guid isPermaLink="false">1009939</guid><pubDate>Mon, 02 Dec 2019 16:49:25 +0000</pubDate></item><item><title>Problem with confirming order, error 500</title><link>https://www.prestashop.com/forums/topic/661368-problem-with-confirming-order-error-500/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	After I complete my order, select payment option as cash on delivery, and click on confirm, I get an error 500. Weird thing is, the order is recognized and I can see it in back office. After going to config/define.inc.php and change define('_PS_MODE_DEV_', false); to define('_PS_MODE_DEV_', true); I now get this error message :
</p>

<p>
	<b style="color:#000000;font-size:medium;">Fatal error</b><span style="color:#000000;font-size:medium;">: Uncaught exception 'ImagickException' with message 'WriteBlob Failed `/nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/cache/tcpdf/mska_ffa6f886f52a57d3970c68e13054fd7c' @ error/png.c/MagickPNGErrorHandler/1643' in /nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/tools/tcpdf/tcpdf.php:8618 Stack trace: #0 /nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/tools/tcpdf/tcpdf.php(8618): Imagick-&gt;writeimage('/nfsmnt/hosting...') #1 /nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/tools/tcpdf/tcpdf.php(8078): TCPDF-&gt;ImagePngAlpha('/nfsmnt/hosting...', 10, -26.8523055556, 178, 103, 60.9654800433, 35.2777777778, 'PNG', '', 'B', false, 300, '', 'ffa6f886f52a57d...') #2 /nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/tools/tcpdf/tcpdf.php(23818): TCPDF-&gt;Image('/nfsmnt/hosting...', 10, -26.8523055556, 60.9654800433, 35.2777777778, '', '', 'B', false, 300, '', false, false, 0, false, false, true) #3 /nf in<span> </span></span><b style="color:#000000;font-size:medium;">/nfsmnt/hosting1_2/7/c/7c4eb405-0fec-4a85-a648-5a6295c17e81/zarza.sk/web/tools/tcpdf/tcpdf.php</b><span style="color:#000000;font-size:medium;"><span> </span>on line<span> </span></span><b style="color:#000000;font-size:medium;">8618</b>
</p>

<p>
	 
</p>

<p>
	I cant make any sense of this. Any help is appreciated.
</p>
]]></description><guid isPermaLink="false">661368</guid><pubDate>Thu, 01 Feb 2018 20:08:25 +0000</pubDate></item><item><title>Faceted search BRAND filter doesn't work: prestashop 1.7</title><link>https://www.prestashop.com/forums/topic/1010652-faceted-search-brand-filter-doesnt-work-prestashop-17/</link><description><![CDATA[
<p>
	Hi guys,
</p>

<p>
	I am trying to fix some strange behaviour in my online website.
</p>

<p>
	(I say strange because this bug is not coming up ni my local dev website)
</p>

<p>
	I have one feature called: Categories
</p>

<p>
	Under this one, I have the default filter Brand
</p>

<p>
	Both of them FACETED SEARCH MODULE
</p>

<p>
	When I click in one of my Categories options check box, under this, I can see ALL brand options, even if there is no products for this brand options...
</p>

<p>
	 
</p>

<p>
	So If I check, the wbesite throw 0 results.
</p>

<p>
	I make it with one example:
</p>

<p>
	<em>Categories (faceted search feature)</em>
</p>

<p>
	category1 (100 products)
</p>

<p>
	category2(50 products)
</p>

<p>
	category3(50 prodcuts)
</p>

<p>
	<em>Brand (faceted search default filter)</em>
</p>

<p>
	brand1(200 products) =&gt; not anyone inside category1 nor category2
</p>

<p>
	brand2(20 products) =&gt; not anyone inside category2 nor category2
</p>

<p>
	 
</p>

<p>
	If I check category1, brand1 or brand2 mustn't be there! and they are.
</p>

<p>
	In localhost, it works like a charm... I can't get the bug, I check and everything is the some in both sites.
</p>

<p>
	PLEASE HELP
</p>
]]></description><guid isPermaLink="false">1010652</guid><pubDate>Wed, 11 Dec 2019 15:53:47 +0000</pubDate></item><item><title>Export csv - field separator</title><link>https://www.prestashop.com/forums/topic/1010653-export-csv-field-separator/</link><description><![CDATA[
<p>
	Hi,
</p>

<p>
	Is it possible to choose <strong>export</strong> csv field separator, as you can choose the import separator?, as the db is having some html-txt in product descriptions that messes the import up?
</p>

<p>
	or is there a different way to approach this?
</p>

<p>
	thx<br />
	 
</p>
]]></description><guid isPermaLink="false">1010653</guid><pubDate>Wed, 11 Dec 2019 15:58:01 +0000</pubDate></item><item><title>Could not update settings error</title><link>https://www.prestashop.com/forums/topic/1010681-could-not-update-settings-error/</link><description><![CDATA[
<blockquote class="ipsQuote" data-ipsquote="" data-ipsquote-contentapp="forums" data-ipsquote-contentclass="forums_Topic" data-ipsquote-contentcommentid="3180870" data-ipsquote-contentid="1003787" data-ipsquote-contenttype="forums" data-ipsquote-timestamp="1576098355" data-ipsquote-userid="741527" data-ipsquote-username="selectshop.at">
	<div class="ipsQuote_citation">
		10 minutes ago, selectshop.at said:
	</div>

	<div class="ipsQuote_contents">
		<p>
			Import the file with phpmyadmin = execute the query. So problem should be solved, or not ?
		</p>
	</div>
</blockquote>

<p>
	Solved the problem regarding the 500 error. However, I am still no able to update any products. Receiving the error "Could not update settings" whenever I try to update a product.<br /><br />
	Should this be in a separate thread?
</p>
]]></description><guid isPermaLink="false">1010681</guid><pubDate>Wed, 11 Dec 2019 21:17:47 +0000</pubDate></item><item><title>Importing CSV file of Products from Shopify</title><link>https://www.prestashop.com/forums/topic/445109-importing-csv-file-of-products-from-shopify/</link><description><![CDATA[
<p>Hello,</p>
<p>I am migrating my products from Shopify to Prestashop Cloud, but I get errors after I upload the file. Could anyone please advise what the problem could be and how to fix it?</p>
<p> </p>
<p>I even re-exported CSV from my Shopify Store but again the same issue persists.</p>
<p> </p>
<p>Thanks.</p>
]]></description><guid isPermaLink="false">445109</guid><pubDate>Mon, 01 Jun 2015 12:56:23 +0000</pubDate></item><item><title>Redirect Loop in fresh Presta Shop Install</title><link>https://www.prestashop.com/forums/topic/1010487-redirect-loop-in-fresh-presta-shop-install/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	I set up (following online guides) Ubuntu 18.04, php7.2, nginx and mysql to use with PrestaShop 1.7.6.2
</p>

<p>
	I set ssl using Let'sEncrypt
</p>

<p>
	I obtained required files, domains are redirected. Installation of PrestaShop went smoothly.
</p>

<p>
	 
</p>

<p>
	After installation I can log into Back Office without any problem.
</p>

<p>
	 
</p>

<p>
	While inside of Back Office, I cant select any option from left menu - it loads page with domain/index.php and browsers are reporting redirect loops error.
</p>

<p>
	 
</p>

<p>
	I see a lot of topics about it over internet, but most of them are solved by "go into seo and change xxx".
</p>

<p>
	 
</p>

<p>
	But I can't go anywhere inside of my BO.
</p>

<p>
	 
</p>

<p>
	Can anybody help me with this issue?
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln"># Redirect HTTP -&gt; HTTPS
server {
    listen 80;
    listen [::]:80;
    server_name www.domain.com domain.com;


    include snippets/letsencrypt.conf;
    return 302 https://$server_name$request_uri;

}

# Redirect WWW -&gt; NON WWW
server {

	listen 443 ssl http2;
	server_name www.domain.com;

	ssl_certificate /etc/letsencrypt/live/www.domain.com/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/www.domain.com/privkey.pem;
	ssl_trusted_certificate /etc/letsencrypt/live/www.domain.com/chain.pem;
	include snippets/ssl.conf;	


	
}

server {

	listen 443 ssl http2;
	server_name domain.com;
	root /var/www/html/domain;	

	index index.php;

	set $admin_dir /adminPanogO;


	#SSL PARAMS
	ssl_certificate /etc/letsencrypt/live/domain.com/fullchain.pem;
	ssl_certificate_key /etc/letsencrypt/live/domain.com/privkey.pem;
	ssl_trusted_certificate /etc/letsencrypt/live/domain.com/chain.pem;
	include snippets/ssl.conf;
	include snippets/letsencrypt.conf;

	#LOGS
     	access_log /var/log/nginx/domain.com.access.log;
   	error_log /var/log/nginx/domain.com.error.log;



	location = /favicon.ico {
		log_not_found off;
		access_log off;
	}
	
	location = /robots.txt {
		allow all;
		log_not_found off;
		access_log off;
	}


	  location / {
        try_files $uri $uri/ /index.php$args;
    	}

	location ~ \.php$ {
		include snippets/fastcgi-php.conf;
		fastcgi_pass unix:/run/php/php7.2-fpm.sock;
	}
	
	location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg)$ {
		expires max;
		log_not_found off;
	}
}</span></pre>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010487</guid><pubDate>Mon, 09 Dec 2019 22:20:08 +0000</pubDate></item><item><title>Remove required field State</title><link>https://www.prestashop.com/forums/topic/1009787-remove-required-field-state/</link><description><![CDATA[
<p>
	Hi
</p>

<p>
	How can I remove the <strong>required</strong> field State at the registration site? 
</p>

<p>
	We do not need States in my country.
</p>

<p>
	When I look at Localization -&gt; Countries and Edit myCountry (Denmark) it has no requirements on State - why is it then on my registration page?
</p>

<p>
	And how do I get it invisible again - (It was fine a few months ago)
</p>

<p>
	Thanx in advance
</p>

<p>
	 
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_11/98522509_Location-CountriesSettings.JPG.d0275de6f56629cd13b62f6d9dc80c6b.JPG" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="231961" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_11/98522509_Location-CountriesSettings.JPG.d0275de6f56629cd13b62f6d9dc80c6b.JPG" data-ratio="81.94" width="792" class="ipsImage ipsImage_thumbnailed" alt="Location - Countries Settings.JPG"></a></p>]]></description><guid isPermaLink="false">1009787</guid><pubDate>Fri, 29 Nov 2019 13:56:28 +0000</pubDate></item><item><title>Error in login</title><link>https://www.prestashop.com/forums/topic/1010543-error-in-login/</link><description><![CDATA[
<p>
	No way to enter my administration page. any idea ?
</p>

<p>
	***************************
</p>

<p>
	Oops! An Error Occurred
</p>

<p>
	The server returned a "500 Internal Server Error".
</p>

<p>
	Something is broken. Please let us know what you were doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused.
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">1010543</guid><pubDate>Tue, 10 Dec 2019 13:13:18 +0000</pubDate></item><item><title><![CDATA[How to remove <br> tags from contact form messages?]]></title><link>https://www.prestashop.com/forums/topic/400234-how-to-remove-tags-from-contact-form-messages/</link><description><![CDATA[
<p>Hi there,</p>
<p> </p>
<p>I changed my prestashop e-mail configuration to plain text e-mails. Now, when a customer wants to send a message through the contact form, I receive the line breaks as text, e.g.</p>
<p> </p>
<p>"This is a line break&lt;/br&gt;And this is a new line."</p>
<p> </p>
<p>I would like to receive it that way:</p>
<p> </p>
<p>"This is a line break</p>
<p>And this is a new line."</p>
<p> </p>
<p>Is there a solution to it?</p>
<p> </p>
<p>Someone already asked exactly this about two years ago, topic</p>
<p>"contact-form.tpl received messages with &lt;br /&gt; tags NEED HELP PS"</p>
<p>but that guy never received an answer.</p>
]]></description><guid isPermaLink="false">400234</guid><pubDate>Mon, 02 Feb 2015 18:26:29 +0000</pubDate></item><item><title>Problem generating items table in confirmation e-mail</title><link>https://www.prestashop.com/forums/topic/1010561-problem-generating-items-table-in-confirmation-e-mail/</link><description><![CDATA[
<p>
	Hello,
</p>

<p>
	Im having some troubles with the items generating inside the table from the confirmation e-mail on the second language that i use.
</p>

<p>
	So in the first picture its the confirmation email generated on US language which works as it should, but on the second e-mail using the second language (RO) as you can see the item is not generated inside the table but above it.
</p>

<p>
	I even tried to copy-paste the source code from the US email without changing anything (so basically the code is exactly the same) and still get the same results.
</p>

<p>
	Any help is much appreciated, Thanks!
</p>

<p>
	Prestashop 1.7.6.0
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_2019_12/1.jpg.611c1f5a28bd2f171296d43072f8dbbd.jpg" data-fileid="232578" data-fileext="jpg" rel=""><img alt="1.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="232578" data-ratio="125.1" style="height:auto;" width="526" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/1.jpg.611c1f5a28bd2f171296d43072f8dbbd.jpg" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" /></a><a class="ipsAttachLink ipsAttachLink_image" href="https://www.prestashop.com/forums/uploads/monthly_2019_12/2.jpg.54b36aa7015342f15100a6ddcf50f5fa.jpg" data-fileid="232579" data-fileext="jpg" rel=""><img alt="2.jpg" class="ipsImage ipsImage_thumbnailed" data-fileid="232579" data-ratio="127.24" style="height:auto;" width="514" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_12/2.jpg.54b36aa7015342f15100a6ddcf50f5fa.jpg" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" /></a>
</p>
]]></description><guid isPermaLink="false">1010561</guid><pubDate>Tue, 10 Dec 2019 16:18:48 +0000</pubDate></item><item><title>Error with checkout "displayPrice"</title><link>https://www.prestashop.com/forums/topic/984501-error-with-checkout-displayprice/</link><description><![CDATA[
<p>
	Hello!
</p>

<p>
	I have been working on a shop for a family member and thought everything was okay until I tried to do a purchase. Went through all the pages as expected, paid with paypal and once payment was complete the final page throws an error;
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted">
<span class="pln">Error in Paypal
Order validation error : Syntax error in template "/pdf/invoice.tax-tab.tpl" on line 77 "{displayPrice currency=$order-&gt;id_currency price=$line.total_tax_excl}" unknown tag 'displayPrice'. Attention, your payment is made. Please, contact customer support. Your transaction ID is : [redacted] </span></pre>

<p>
	Just wondering how to resolve this? I can't seem to find anything online about it. Obviously displayPrice is a problem but not sure why. I have checked the theme isn't changing anything (I even reverted back to default) as well as checked the original file from a fresh dl of prestashop. 
</p>

<p>
	Using Prestashop 1.7.5.1
</p>

<p>
	Any help or if someone has seen this before, thank you in advance.
</p>
]]></description><guid isPermaLink="false">984501</guid><pubDate>Sat, 27 Apr 2019 16:55:23 +0000</pubDate></item><item><title>JA Marketplace</title><link>https://www.prestashop.com/forums/topic/1007804-ja-marketplace/</link><description><![CDATA[
<p>
	Hi there.
</p>

<p>
	I just want to know if some of you already used JA Marketplace and the additional module JA Marketplace Multiple shipping and order, which is suppsoed to manage carriers.<br />
	I am working on a marketplace but with those 2 modules I can't use different carriers for one order, if carriers are created by my-self and contain map for delivery in relay point.<br />
	Finally I understood it is a problem for Prestashop to manage several different carriers in one order, but I though such module solved the problem...
</p>

<p>
	Using Prestashop 1.7.6.
</p>

<p>
	Please tell me about your experience.
</p>

<p>
	Thanks a lot.
</p>
]]></description><guid isPermaLink="false">1007804</guid><pubDate>Tue, 05 Nov 2019 09:13:56 +0000</pubDate></item><item><title>Show Customer group on orders page in backoffice</title><link>https://www.prestashop.com/forums/topic/281786-show-customer-group-on-orders-page-in-backoffice/</link><description><![CDATA[
<p>Hi,</p>
<p> </p>
<p>I need to be able to tell which groups a customer belongs to when they make an order on the site.</p>
<p>What is the best way to achieve this?</p>
<p>Can I display the customer groups on the order page?</p>
<p> </p>
<p>Thanks</p>
<p>Neil</p>
]]></description><guid isPermaLink="false">281786</guid><pubDate>Mon, 14 Oct 2013 18:39:35 +0000</pubDate></item><item><title>Bot Customers?</title><link>https://www.prestashop.com/forums/topic/960660-bot-customers/</link><description><![CDATA[
<p>
	Hi all, <br>
	I noticed recently that I recently have received hundreds of new 'customers' with the same fake name, but with different email address.<br>
	These accounts do not have associated addresses, so I am guessing they have been created by bots.
</p>

<p>
	Other than delete them, what other options are there to prevent their creation in the first place?<br>
	Would modules like re-Captcha be sufficient?
</p>

<p>
	Let me know
</p>

<p>
	 
</p>

<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_03/1510866981_ScreenShot2019-03-30at8_28_48am.png.a0cd810445627ed197331d6ab945b0ec.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="216597" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" class="ipsImage ipsImage_thumbnailed" alt="Screen Shot 2019-03-30 at 8.28.48 am.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_03/220934571_ScreenShot2019-03-30at8_28_48am.thumb.png.92bf19a2d36aa6be24752614a925b6cc.png" width="1000" data-ratio="40.2"></a></p>
<p><a href="https://www.prestashop.com/forums/uploads/monthly_2019_03/915602340_ScreenShot2019-03-30at8_30_41am.png.9bc5c134165f9ec4fd2ac1b358396426.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="216598" src="https://www.prestashop.com/forums/applications/core/interface/js/spacer.png" class="ipsImage ipsImage_thumbnailed" alt="Screen Shot 2019-03-30 at 8.30.41 am.png" data-src="https://www.prestashop.com/forums/uploads/monthly_2019_03/405995696_ScreenShot2019-03-30at8_30_41am.thumb.png.fff4a5e0ae3dd0825689326cd771607d.png" width="1000" data-ratio="80.1"></a></p>
]]></description><guid isPermaLink="false">960660</guid><pubDate>Fri, 29 Mar 2019 21:33:19 +0000</pubDate></item><item><title>error 404 for all products</title><link>https://www.prestashop.com/forums/topic/1010185-error-404-for-all-products/</link><description><![CDATA[
<p>
	hello,
</p>

<p>
	after having searched for similar topics in various forums, I decided to open a topic because I could not find a solution for what I am experiencing at the moment.
</p>

<p>
	In the production environment, clicking at the home all products link of the featured products returns a <i><strong>404 not found</strong>.</i> All the other categories works fine.
</p>

<p>
	So far I managed to narrow  <strong>the cause of the issue to values in the DB,</strong> because when I keep the same web file structure, but I import a test DB, this problem is not manifesting.
</p>

<p>
	I also noticed that hovering the mouse over the <em>all products </em>link shows a different URI than the usual <i>2-inicio* </i>(it shows <i>27-productos-destacados</i>, which is listed in the <em>ps_category_lang</em> table, but I<u> couldn't figure where it is set to be assigned to that <em>all product</em> link</u>). 
</p>

<p>
	<strong>Prestashop version: 1.7.5.1</strong>
</p>

<p>
	Anyone can help to point me to the right direction for any further advance in narrowing down the cause of my issue is sincerely appreciated.
</p>

<p>
	Regads,
</p>

<p>
	/Flavio
</p>

<p>
	(*) it's a Spanish prestashop installation.
</p>

<p>
	In the txt file attached the list of modules found installed.
</p>

<p>
	 
</p>
<p>
<a class="ipsAttachLink" href="https://www.prestashop.com/forums/applications/core/interface/file/attachment.php?id=232267" data-fileExt='txt' data-fileid='232267'>ps_module.txt</a></p>]]></description><guid isPermaLink="false">1010185</guid><pubDate>Thu, 05 Dec 2019 08:57:17 +0000</pubDate></item><item><title>ADM |Invoice, order, shipping split</title><link>https://www.prestashop.com/forums/topic/544220-adm-invoice-order-shipping-split/</link><description><![CDATA[
<p>Hi</p>
<p> </p>
<p> </p>
<p>I have enabled advanced stock manager. First of all when user adds to cart products from two different warehouses, prestashop counts two shipping costs (e.g. 2 times 5.00€). Moreover it splits order into two. </p>
<p> </p>
<p> </p>
<p>I have probably read all the threads in this forum, tried to find module as a solution for this problem but my efforts gave no results. </p>
<p> </p>
<p>Maybe somebody had the same problem and solved it. <br /><br />How I can solve it?</p>
<p> </p>
<p>Thanks in advance</p>
]]></description><guid isPermaLink="false">544220</guid><pubDate>Thu, 21 Jul 2016 07:22:53 +0000</pubDate></item></channel></rss>
