Jump to content
thirty bees forum

Yabber

Members
  • Posts

    23
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by Yabber

  1. We have no influence on what google displays in the SERP, this is decided by google algorithms. If google's algorithms think the meta description doesn't match the content of the page, they reject it and take some content from the page. You have to experiment with the content of the meta description so that it pleases google.
  2. Information under "Server Requirements" at https://thirtybees.com/download/ is very out of date. TB 1.5.x and 1.6.0 work properly with MySQL 8 and PHP 8.3
  3. The names of the countries should be translated into all the languages we have in the store so that there are no misunderstandings with customers. In PS 8 they added a useful option - automatic translation of country names using CLDR. In thirtybees, unfortunately, there is no such thing and you have to translate manually.
  4. I have removed insertion of default country in the Country field. All these auto fillers only cause errors in shop, customer should choose the Country himself.
  5. By default, PaymentModule class does not pass the message variable to order_conf email. You must have modified PaymentModule class, maybe you have errors in this modification?
  6. Messages to orders in TB are working properly. If you don't have these messages in tb_customer_message table, it is a bug in your theme.
  7. With Stripe -> Przelewy24 integration, I already had problems in old version of module. Every few, several payments transaction was not confirmed. Therefore, I disabled this integration and in new version of module I did not enable it either.
  8. ThirtyBees 1.5 and 1.6 (bleeding edge) support PHP 8.3 and MySQL 8.
  9. Thank you. Payment has tested, works perfect 🙂
  10. And is it possible to add BLIK payments to the module? https://docs.stripe.com/payments/blik
  11. We have no way of forcing customers to provide an order number from our store in a bank transfer order. And the vast majority of customers do not provide order numbers. And what happens in such a case? Does the module somehow try to match the order to the payment? For example, by the customer's personal or address information.
  12. In OPC order mode, when customer logs in, the card data fields are not loaded. Only after refreshing page are these fields loaded. Old version of module does not have this error.
  13. I use this module: https://github.com/d1m007/gshoppingflux I reworked it a bit for my needs and adapted it to PHP 8.3
  14. If you download product data to GMC from an XML file generated in store, then you can force the download of this data at any time in "Data Sources" configuration. And with the standard GMC configuration, then google updates them once a day, too.
  15. Prestashop templates have a lot of errors when it comes to structured meta data. And unfortunately thirtybees inherited these errors 😞 In product.tpl template the code: <meta itemprop="price" content="{$productPrice}"> correct to: <meta itemprop="price" content="{$productPrice|string_format:'%.2f'}"> And according to google requirements, prices sent to GMC must be with tax: https://support.google.com/merchants/answer/6324371?hl=pl
  16. Uninstall and delete "tbupdater" module, and install "coreupdater" module.
  17. In order-detail.tpl template, modify this code: {if $order->gift} <p><i class="icon icon-2x text-success icon-gift"></i> {l s='You have requested gift wrapping for this order.'}</p> <p><strong>{l s='Message'}</strong> {$order->gift_message|nl2br}</p> {/if}
  18. These columns have no static width. In a responsive table, the width of columns scales dynamically depending on the amount of content in columns.
  19. In my opinion, this preservation of these archival JS and CSS files is completely unnecessary.
  20. Disable "Keep JS and CSS files" option in CCC section and clear cache.
  21. It's worth checking if you have some module from prestashop with security vulnerabilities: https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=prestashop
  22. When installing a module that overwrites blocknewsletter module, I get this error: The following module(s) could not be installed properly: googlecaptcha : Unable to install override: Failed to evaluate override file /home/iwona/public_html/tbshop/modules/googlecaptcha/override/modules/blocknewsletter/blocknewsletter.php: syntax error, unexpected token "extends", expecting "{" at line 2 Code of the file blocknewsletter.php <?php class BlocknewsletterOverride extends Blocknewsletter { public function confirmSubscription($email) { if (Module::isEnabled('googlecaptcha') && ($module = Module::getInstanceByName('googlecaptcha')) && $module->hookValidate('newsletter')) { $module->captchaValidate(Context::getContext()->controller->errors); } if (Context::getContext()->controller->errors) { return false; } return parent::confirmSubscription($email); } } Thirty bees version: 1.6.0 Thirty bees revision: db85aa271005ab890a8c3a9711a3cca9722d5095 Build for PHP version: 8.3
×
×
  • Create New...