Search the Community
Showing results for tags 'criterion'.
-
I have an odd problem. I have the productcomments module installed, and have added 2 criterion "Fit" and "Quality". They show up fine when a customer writes a review, and appear with stars next to them. However, when the review shows up on the site, instead of the "Fit" and "Quality" criterion showing, it just says "Grade". I've checked my files and they seem OK, and it also happens in the default theme, so I guess I can rule out my own theme being the problem. By the way, I'm using productcomments V2.4 and Presta 1.5.6.1 Any help appreciated!
-
Hi! The following error shows when I try to add or configure a criterion in the product comments module: [PrestaShop] Fatal error in module e0045500421582d7c0868fcc9c5a04e29e1731c4.file.form.tpl: Allowed memory size of 67108864 bytes exhausted (tried to allocate 786432 bytes) This error started appearing suddenly... I'm using Prestashop 1.6.0.6. I don't know what to do so I appreciate your help!!
- 1 reply
-
- Error
- Product Comments
-
(and 3 more)
Tagged with:
-
Hi, I'm currently setting up a shop on PS 1.5 RC2 (up to date). I enabled the "blocklayered" module on my category pages. I noticed URLs representing a certain set of enabled filters exist in two forms : "solid" URLs (without hashtags) and "anchored" URLs (with a hashtag). When using the module to filter the product list, anchored URLs are used ; however, I noticed solid URLs work too, especially if I call a page directly with it (ie. opening a new tab in my browser and going to an anchored URL won't trigger the filtering, as PS doesn't parse the URL in Javascript to adapt the rendered list of products). I also (and that's the point of my question) noticed that such solid URLs won't return a filtered list of products when depending on filtering criterion (in fact, according to PS' taxonomy, "features"). I'm getting the full product list. Could I get some feedback from people who encountered the same problem and solved it, or people who set up things as I'm trying to and did not face that kind of issue, so I can try to find out why it's not working ? It's friday afternoon and I'm not sure I'm explaining it in a clear way, so please ask for details if you think you could possibly help me. Thanks !
-
I'm in the process of making my own payment module for Authorize.net CIM and I'm looking at other modules for guidance. I can see in several of the Prestashop authored default modules (Authorize.net AIM, Paypal) they call a function called "setTransactionDetail" which is as follows: if (isset($this->pcc)) { $this->pcc->transaction_id = (string)$response[6]; // 50 => Card number (XXXX0000) $this->pcc->card_number = (string)substr($response[50], -4); // 51 => Card Mark (Visa, Master card) $this->pcc->card_brand = (string)$response[51]; $this->pcc->card_expiration = (string)Tools::getValue('x_exp_date'); // 68 => Owner name $this->pcc->card_holder = (string)$response[68]; } My question is what is pcc? I've searched the code and I cannot see where this is initialized or how it is used. The only thing I can find that uses the "pcc" reference is Product Comment Criterion. I just don't see how that relates to what the code is doing. The code seems to be trying to store the CC information. Can anyone shed light on this?