Jump to content
thirty bees forum

Adik

Members
  • Posts

    104
  • Joined

  • Last visited

  • Days Won

    6

Adik last won the day on April 17

Adik had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Adik's Achievements

Explorer

Explorer (4/14)

  • Conversation Starter
  • Dedicated Rare
  • Reacting Well Rare
  • First Post
  • Collaborator Rare

Recent Badges

24

Reputation

  1. copy file cookieconsent.min.js locally and add to header.tpl <script src="/modules/eucookieconsent/views/js/cookieconsent.min.js" defer></script>
  2. The quickest way is to check where is "fonts.gstatic.com" / "cdnjs.cloudflare.com" saved. Install Visual Studio Code and connect with your VPS using ssh. Now you can search thousands of files in few seconds using the options Find in Folder. You can also add: Smarty Template Support, The Pattern Language (TPL) and tpl Lang addons.
  3. I added code after enableLinkTracking : {if isset($PIWIK_RCOOKIE_TIMEOUT)} _paq.push(['setReferralCookieTimeout', '{$PIWIK_RCOOKIE_TIMEOUT|escape:'javascript'}']); {/if} _paq.push(['enableLinkTracking']); _paq.push(['disableAlwaysUseSendBeacon']);
  4. Important msg for Matomo users While browsing Google Search Console today, I discovered that GoogleBot was only loading small section of my product pages. Error from GSC: "Page resources. Failed to load 1/57 of resources" GoogleBot was blocking by matomo.js file. The solution is simple, add following line to script: _paq.push(['disableAlwaysUseSendBeacon']); Example of full code with added line: <script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); _paq.push(['disableAlwaysUseSendBeacon']); (function() { var u="https://store-domain.com/"; _paq.push(['setTrackerUrl', u+'matomo.php']); _paq.push(['setSiteId', '2']); var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0]; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s); })(); </script> If you are using Matomo Web Analytics module add code to file: /modules/piwikanalyticsjs/views/templates/hook/jstracking.tpl (line 27) I discovered this when I saw that the number of reviews visible in a Google search had started to fall rapidly.
  5. Ok, here is profiling results from my toaster VPS 😄 A way to reduce CLS is to add min-height and min-width in CSS for divs that change size when page loads. I have also moved price filtering to the end of blocklayered module.
  6. Try add code to header.tpl in your theme directory: <script defer type="text/javascript" src="https://unpkg.com/default-passive-events"></script> {if isset($js_defer) && !$js_defer && isset($js_files) && isset($js_def)} {$js_def} {foreach from=$js_files item=js_uri} <script defer type="text/javascript" src="{$js_uri|escape:'html':'UTF-8'}"></script> {/foreach} {/if}
  7. What distro do you use? Do you have ssh access? Try to disable IPV6 support, for example for Debian it will be: /etc/NetworkManager/system-connections: [ipv6] addr-gen-mode=stable-privacy method=disabled
  8. I like it! 50 connections / month in gocardless will be also enough. 😊
  9. I wonder about one thing. To log in to the bank confirmation is required in app on my mobile device. It's possible to do this via API?
  10. Such a module will be very useful, no more manual checking payments! 🙂 What is expected price?
  11. @Mark Check out Cisero template from Zen described in another thread. Four months ago I was in a similar situation looking for fast and modern template. After optimization page speed improved significantly. CLS of 0.46 is too high, I'm waiting for Google update. BTW. It's still the same VPS server. Updated PHP, nginx, mariadb and Debian.
  12. Ok thanks! What is best solution to generate products XML file in ThirtyBees? Datakick module?
  13. @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.
  14. @zen Nice & clean template! Thanks for your hard work! I'm very happy with change of store theme based on Cisero Bootstrap 5.1.1 and ThirtyBees 1.5.1 PHP 8.1. Over last 3 months I have been editing hundreds of tpl & php files to customize appearance of site. Store loads quickly, working in BO is a pleasure, sometimes I feel like I'm working at a localhost. 😄 (my ping to VPS is 14 ms). Listing of 1000 products in backoffice takes 1.354s. 😲
  15. The module is free for download so test it and share your opinion here.
×
×
  • Create New...