Jump to content

guanooo

Members
  • Posts

    27
  • Joined

  • Last visited

Recent Profile Visitors

3,569,304 profile views

guanooo's Achievements

  1. Thank you so much for the question and for the solution. I can confirm that it worked with PS 1.7.8.7. 😍
  2. I can totally confirm that it is not working, because I've created two new pages with nofollow and they got indexed by Google. Prestashop doesn't include the html code <meta name="robots" content="noindex">. It's totally missing. Any idea how can I fix that?
  3. I've also triple-double checked that with different pages. No success, as I mentioned in the original post. So, no. It doesn't work properly. 😬 I had 12 years of experience with Prestashop and if a simple button like this does not do the job - it smells like a bug. But you made me think if the update from 1.7.8.5 to 1.7.8.7 could be the reason. As I remember - it was working before the update.
  4. In Prestashop 1.7.8.7 the option for NoIndexation by search engines does not work properly: 1. Yes, it adds the <meta name="robots" content="index"> if you choose to index the page. BUT ... 2. If you choose not to index any CMS page, Prestashop does not add the <meta name="robots" content="noindex"> to the page. Clearing page cache or the cache for the whole web site does not fix the issue.
  5. Put comments at lines 3036 and 3042. Row 2 and 8 below. // Attribute price //if (is_array($result) && (!$specific_price || !$specific_price['id_product_attribute'] || $specific_price['price'] < 0)) { $attribute_price = Tools::convertPrice($result['attribute_price'] !== null ? (float)$result['attribute_price'] : 0, $id_currency); // If you want the default combination, please use NULL value instead if ($id_product_attribute !== false) { $price += $attribute_price; } //}
  6. Well, after some precious hours spent by our development team (Thank you so much), I think we found a solution to the problem. Here is our solution which actually work for us (Prestashop 1.6.1.4): 1. Locate the file ... /public_html/classes/Product.php 2. Find the code on row 3036: // Attribute price //if (is_array($result) && (!$specific_price || !$specific_price['id_product_attribute'] || $specific_price['price'] < 0)) { $attribute_price = Tools::convertPrice($result['attribute_price'] !== null ? (float)$result['attribute_price'] : 0, $id_currency); // If you want the default combination, please use NULL value instead if ($id_product_attribute !== false) { $price += $attribute_price; } //} 3. There is an array named $result. Before the If the price of the attribute exists. In the If the price vanishes and there is no change in this If to disapper We've put comments before the If rule and that does it - lines 3036 and 3042 in the file. I hope this helps. Let me know if you decide to give it a try. P.S. You may have different location of the file Product.php. Ask somebody who knows the code. Golden rule for our team: We upgrade to higher version of Prestashop only once per year. It's like the OS of a PC.
  7. k@#0%! Same bullshit here. We are trying to solve this issue ASAP because if we don't - we're gonna loose a bunch of money. In our store the prices of the combinations in a product page looks OK and accurate. BUT ... when we add a product combination with an impact of the price to the cart, the price of the product in the cart is incorrect. In fact, extremely lower than the impact set in the admin panel. We've tried the trick with the default theme but that doesn't fix the issue. Will let you know if we have some positive progress. UPDATE: The impact on prices actually works correctly with the default user groups - Visitors, Customers. It does not work with custom created user groups.
  8. Still not! Next month I'll give the task to my web development crew. We will find a solution because our clients need a working search engine. Not the default corrupted one.
  9. Come on people from Prestashop. Don't put me in your other pocket. Give me a straight answer! How to use aliases in Cyrillic for the search function? It's not working!
  10. First, a fact: I'm really tired of discovering bugs and issues in Prestashop (no matter what version, currently I'm speaking for 1.6.0.9). That's for sure! Here it is the current issue: Search Function Doesn't Work Properly When Entering Words In Cyrillic This is the chapter for Search Preferences -> http://doc.prestashop.com/display/PS16/Search+Preferences I set the weight to 0 to 8 of the 10 possible weight fields, e.g. I left only the Products name weight and Reference weight. Then I re-build the entire search index and YES, that's working. When customers make a request using my shop's internal search engine, they may make mistakes in spelling. Yes, that's normal and that's why I want to display the right results to them by using the "alias" feature. Well, I have already entered aliases in Cyrillic and point their right ones. For example: Alias: дражки за мебели, дружки за мебели, дражки за мебли, drajki za mebeli Result: дръжки за мебели When entering one of the alias above and hitting enter or clicking the search button nothing happened. Nothing appears in real time below the input field. The search engine just says: No results were found for your search "дружки за мебели". (or any of the four alias) WHY? How to make this work? Here it is a common theme, but the solution is not clear at all (at least to me it is not) -> https://www.prestashop.com/forums/topic/306778-solved-search-doesnt-work-for-cyrillic-language/?do=findComment&comment=1552456
  11. Hi folks, I read here and there in the forum topics for integrating AdWords Remarketing Code. Of course, people are frustrated again. Ok, it seems that if you choose to use the code from AdWords and place it in the right place in the right file it will probably work. But in this case I want to modify the Google Analytics code to use remarketing. Here it is what Google Help says about that: To enable these features for Universal Analytics, insert the bold line into your existing tracking code between the'create' and 'send' commands, as seen in this example: <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-XXXXXX-XX', 'example.com'); ga('require', 'displayfeatures'); ga('send', 'pageview'); </script> To revert the change, simply remove the line ga('require', 'displayfeatures'); Well, I've tried to make the change in the file header.tpl located in .../modules/ganalytics/views/templates/hook but AdWords still doesn't recognize the change and still says "We haven't detected the Google Analytics remarketing functionality on your website". My version of prestahop is 1.6.0.9. Any suggestions?
  12. Recently I found the solution for me in the forum. I'm with version 1.5.5.0 of Prestashop. So here is the thing: 1. Use your FTP client to navigate to the module -> modules/ganalytics/header.tpl 2. Open the file to edit it and change this: {if universal_analytics eq true} with this: {if $universal_analytics eq true} 3. In the admin panel go to the module Google Analytics and also disable this option though: Universal Analytics Active This worked for me. Try it and let me know.
  13. Adding the code between header tags didn't do the work for me. Recently I found the solution for me in the forum. I'm with version 1.5.5.0 of Prestashop. So here is the thing: 1. Use your FTP client to navigate to the module -> modules/ganalytics/header.tpl 2. Open the file to edit it and change this: {if universal_analytics eq true} with this: {if $universal_analytics eq true} 3. In the admin panel go to the module Google Analytics and also disable this option though: Universal Analytics Active This worked for me. Try it and let me know.
  14. It's a bug. Recently I found the solution for me in the forum. I'm with version 1.5.5.0 of Prestashop. So here is the thing: 1. Use your FTP client to navigate to the module -> modules/ganalytics/header.tpl 2. Open the file to edit it and change this: {if universal_analytics eq true} with this: {if $universal_analytics eq true} 3. In the admin panel go to the module Google Analytics and also disable this option though: Universal Analytics Active This worked for me. Try it and let me know.
  15. I'm using version 1.5.5.0 of Prestashop. @J.Sahu: 1. Usually Google Analytics (GA) updates the data from today on the next day after 18:00 pm (GMT +02:00). So try to see the results then. 2. To view the transactions you have to switch on E-commerce tracking in your GA account. Then set a goal as mentioned above.
×
×
  • Create New...