Jump to content
thirty bees forum

yaniv14

Members
  • Posts

    587
  • Joined

  • Last visited

  • Days Won

    24

Everything posted by yaniv14

  1. yaniv14

    Accessories

    Did you always had it inside tabs or was it in a different layout (no tabs) before? Also can you stop/disable piwik and/or matomo because you have some script errors in the console and they might be causing the issue as well.
  2. yaniv14

    Accessories

    Try to add more than 1 accessories product and see if it loads. some javascript sliders dont work well with only 1 item/image.
  3. Did you try to ask the module creator or the transformer theme creator to provide support for all the needed modification? Maybe they will be kind enough to help you, and save you the trouble of doing it. Maybe @lesley can try to talk to either one of them.
  4. Hi @Raymond, I am using a module from Presto-Changeo to deal with allow of combinations. Its working perfect for me, but in my case I don't need price increase/decrease per combination so I am not sure about all capabilities of this module. This is the module: https://www.presto-changeo.com/prestashop-attribute-modules/34-113-prestashop-attribute-wizard-pro-module.html#/25-prestashop_version-all_versions You can see it on my site: https://www.lens.co.il/1-day-acuvue-moist The front office is without any cache and working really fast, I am using bleeding edge version here.
  5. Hi, I think the easier way for you will be to edit header.tpl file from your theme. just before the closing </head> tag you can add. {if $page_name == 'cms'} {literal} ... the script you received from google .... {/literal} {/if} gtag_report_convertion is probably a function that comes with the google code. so you should call (run/fire) that function on your desire click event (like clicking a url or a button). you can see samples here: https://support.google.com/google-ads/answer/6331304?hl=en the 'on_click' part you will have to put in the content of the page (in the cms page editor). Good luck
  6. tb_configuration table is used for general purpose. many core settings and modules use that table when they need to save single value without the need to create new tables. Configuration::updateValue('value_name', 'value_data'); is used to store data in that table. Configuration::get('value_name') is used to fetch data from that table.
  7. its in "tb_configuration" table, it's called "PS_SET_DISPLAY_SUBCATEGORIES"
  8. yaniv14

    Editing Products

    @datakick while I was checking something regarding this topic I've noticed that "admin.js" and "tools.js" and both loaded with versioning "?v='._PS_VERSION_" (classes/controller/AdminController => setMedia()). Now that we are working with git updater, I think it will be wise to remove versioning or even better to add git latest commit as versioning. git log -n 1 --format="%h" what do you think?
  9. The problem is that the 2nd <p> is being escaped (its probably the value itself). this is how it looks in the html. <p class="pro_list_manufacturer">&lt;p&gt;PC149Y&lt;/p&gt; - Port &amp; Company</p>
  10. My guess is that you have to manually pick this commit: https://github.com/thirtybees/custompayments/commit/69681528df138a9fc96d3b72c246da28993d0afc because I don't think its part of the latest version.
  11. I know they are using Nginx. But did they configured nginx rules for Prestashop? If not, you can point them to this link
  12. You site is using Nginx as a web server, so all rewrite rules should go in the nginx server block and not in htaccess file which created by Thirtybees. If you are on a shared hosing than you should ask your hosting company to configure it for you.
  13. The reaason that Lesley code didn't work is because your server is running on Nginx and not on Apache. Htaccess is an override for Apache webserver.
  14. I can't seem to reproduce your bug. I ran multiple test with dragging and saving like you mentioned and everything was fine on all tests.
  15. @SLiCK_303 can you please check this commit. https://github.com/thirtybees/thirtybees/pull/983/commits/fd590f6bcdae5f337d341b43c093a5127a9ae779
  16. @lesley @Traumflug is it possible to add Niara theme to crowdin?
  17. I have found the cause of it. order-carrier.tpl lines 62-67. for some reason lines 65-67 popped out of the foreach loop. ``` {foreach $option.carrier_list as $carrier} <strong>{$carrier.instance->name|escape:'htmlall':'UTF-8'}</strong> {/foreach} {if isset($carrier.instance->delay[$cookie->id_lang])} <br>{l s='Delivery time:'}&nbsp;{$carrier.instance->delay[$cookie->id_lang]|escape:'htmlall':'UTF-8'} {/if} ``` Should be: ``` {foreach $option.carrier_list as $carrier} <strong>{$carrier.instance->name|escape:'htmlall':'UTF-8'}</strong> {if isset($carrier.instance->delay[$cookie->id_lang])} <br>{l s='Delivery time:'}&nbsp;{$carrier.instance->delay[$cookie->id_lang]|escape:'htmlall':'UTF-8'} {/if} {/foreach} ```
  18. @Traumflug can you please expose Niara theme repository. Installation went smooth (only tested RTL). RTL css need some modification.
  19. If you referring to theme module translations, there is a known bug. I've committed a fix for that, but its only partial fix. https://github.com/thirtybees/thirtybees/pull/958/commits/64f4bb9a238c08dd77252bc009ce37a5c0ff6124 Whats actually happening now is that the page shows the theme modules translations but when saving it saves it to the default theme instead. If you are referring to other type of translation (not modules) than please explain exactly whats your issue with
  20. How about making an override to FrontController and handle this with PHP code. Its less recommended for performance because htaccess/web server comes first, but at least you wont miss anything. Just parse the url to get the product id and use 301 redirect to new product page. You can give it a month or two until google stop using the old urls and remove the override after to regain full performance.
  21. This probably happens because of server security. Turn off mod_security module on your server and if its still not working ask your server hosting company to check the specific url
  22. Just check if this function getPricesDrop is being overrided in the override file. If so, than just implant your modified sql there
×
×
  • Create New...