Jump to content
thirty bees forum

Yabber

Members
  • Posts

    27
  • Joined

  • Last visited

  • Days Won

    5

Posts posted by Yabber

  1. In blockcart.tpl template code:

    {assign var='free_ship' value=count($cart->getDeliveryAddressesWithoutCarriers(true, $errors))}

    replace with:

    {assign var='free_ship' value=count($cart->getDeliveryAddressesWithoutCarriers(true))}

    And by the way, all themes from prestashop are not suitable for thirtybees, because they do not use the new thirtybees functionality. Such as, for example, support for WEBP images.

    • Like 1
  2. 2 hours ago, iceguitar said:

    Thanks, so I can not fix it easy. Is this related with the browser language?

    Here nothing needs to be fixed, because it is related to the browser language. For a test, change language of your browser to English or to Chinese 🙂 And such a curiosity, firefox has these texts different as chrome.

  3. 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.

    • Thanks 1
  4. 22 minutes ago, DRMasterChief said:

    and i have made an test:  in order_conf  E-Mail which is sent to me i get  'No message'  (which is not true)

    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?

  5. 19 hours ago, datakick said:

    I personally encountered problem with P24 payment method -- sometimes stripe redirects customer back before the payment is marked as processed.

    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.

  6. 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.

  7. 38 minutes ago, Adik said:

    @Yabber - nice fix, thanks!

    BTW. Do you know a way to resend request to Google after increasing required photo size (min. 100x100px)? Default cart image size is too small.

    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.

    Screenshot_20240404_143845.png

  8. 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

     

    Screenshot_20240404_122543.png

    • Like 2
    • Thanks 1
  9. 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}

     

    • Like 1
  10. 53 minutes ago, PeterPan said:

    i would change the width of these fields into something like this

    These columns have no static width. In a responsive table, the width of columns scales dynamically depending on the amount of content in columns.

  11. 3 hours ago, Beeta said:

    I commented in github (here) about the possibility to limit cache is js and css for XX days or XX size. 

    In my opinion, this preservation of these archival JS and CSS files is completely unnecessary.

×
×
  • Create New...