Jump to content
thirty bees forum

Adik

Trusted Members
  • Posts

    106
  • Joined

  • Last visited

  • Days Won

    7

Adik last won the day on January 29

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

30

Reputation

  1. Hello, I'm looking for module which allow to create an attribute that will include several products from the e-store catalog. For example: I offer a PC. Customer can purchase an operating system (Windows Pro, IoT) directly on the product page, instead of searching for it in a catalog.
  2. ITX-Sklep.pl - fanless industrial computers, Delock partner in Poland https://itx-sklep.pl Since v1.0.8 loyal to TB ☺️
  3. copy file cookieconsent.min.js locally and add to header.tpl <script src="/modules/eucookieconsent/views/js/cookieconsent.min.js" defer></script>
  4. 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.
  5. 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']);
  6. 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.
  7. 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.
  8. 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}
  9. 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
  10. I like it! 50 connections / month in gocardless will be also enough. 😊
  11. 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?
  12. Such a module will be very useful, no more manual checking payments! πŸ™‚ What is expected price?
  13. @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.
  14. Ok thanks! What is best solution to generate products XML file in ThirtyBees? Datakick module?
  15. @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.
Γ—
Γ—
  • Create New...