Leaderboard
Popular Content
Showing content with the highest reputation since 06/01/2025 in all areas
-
Hi everyone, I’ve just released a free Thirty Bees module called Bulk Update Price, designed to help store owners save time when updating product prices. What it does: Bulk Update Price allows you to update all product prices in a selected category — either by a fixed amount or percentage. You can increase or decrease prices simply by entering a positive or negative value. Features: Update prices by percentage or fixed amount Supports positive/negative values (e.g., +10 to increase by 10%, -5 to decrease by 5€) Clean and simple admin UI Compatible with Thirty Bees 1.4 to 1.6 Works with PHP 7.3 to 8.4 Free for use on your own websites Download the module here: https://ko-fi.com/s/e02ad7afcd Feedback and suggestions are very welcome!3 points
-
The standard template that datakick module installs do not contain shipping weight by default. You can very easily add it, though. GMC documentation https://support.google.com/merchants/answer/6324503?hl=en tells us that they are looking for element like this <g:shipping_weight>3 kg</g:shipping_weight> So let's edit the template, and add this element under <entry> node To get data in correct format, you need to use the expression product.packageWeight + " kg" Note that you need to do this twice if you are using GMC template for combinations, as there are two <entry> nodes in template, one for products without combinations, one for products with combination. In this case, you will need to use different expression in second node: combination.packageWeight + " kg" You can download this template: gmc-with-weight.json and install it into your datakick module, as an inspiration3 points
-
Sorry ich habe das Thema total vergessen. Das wurde in meinem Shop mittlerweile auch ganz anders gelöst. Ich erachte es als sehr sinnvoll solche Produkte zurückzustellen. Wir berechnen daher bei uns einen score wo verschiedene Parameter entscheiden, wie die beste Reihenfolge ist. Aber ok das ist ein anderes Thema. Zur Lösung: der Core Code ist hier wirklich hässlich... Du verwendest auf deinem Shop das Filter Modul. Deshalb muss man die Lösung da suchen. Das Module heisst blocklayered. Suche die Datei blocklayered.php. Es gibt dort eine Funktion: public function getProducts($selected_filters, &$products, &$nb_products, &$p, &$n, &$pages_nb, &$start, &$stop, &$range) Die musst du bearbeiten... Suche die Zeile: m.name manufacturer_name, Füge danach folgendes ein: IF(stock.quantity>0,1,0) AS sort_helper, Nun füge zudem nach "ORDER BY" folgendes ein: sort_helper DESC, Nun sollte es funktionieren. Hier noch ein kleiner Screenshot: Funktioniert das so für dich? Ich konnte diesen Code nicht intensiv testen, da meine Shops nicht dieses Modul nutzen. ACHTUNG: bei jedem Update dieses Modul wirst du das wieder anpassen müssen.3 points
-
Tiny preview images issue: This usually happens when the feed is referencing thumbnail or cached images. To fix it, make sure image_link pulls the original high-res image. You can correct this in datakick or override it with a supplemental feed or rule1 point
-
Check if sitemap module is set to offer larger image than the small version.1 point
-
Thank you, @x97wehner! I realised when downloading your XML that I can check the links provided in the feed. And they're fine. So I don't understand why Google is complaining / or even how Google is getting the wrong image size.1 point
-
I have been using a module called 'custom popup notification' on my store for a number of years to display pop up messages to customers when they visit the website. I originally had this module from back when i was using Prestashop before migrating to 30 bees. The module was developed by a developer known as Prestcraft. Unfortunately it appears they are no longer developing and not only is their website now redirecting to a dodgy looking casino website even their Github page has gone. I found a link to their original github on the wayback machine linked to below if anyone wants to a free module that can do popups on their store https://web.archive.org/web/20201014224414/https://github.com/PrestaCraft/custompopup The latest version source code can be found at https://web.archive.org/web/20201014224445/https://codeload.github.com/PrestaCraft/custompopup/tar.gz/2.3.0 It installs Ok but did throw up an error when saving the module settings but the module still appears to work despite the error. But one thing I did need to do is alter one piece of code which was checking the developer own website for version updates, which would cause a error saying '301 permanent moved message' in the module backend. As this appeared over the top of some of the settings buttons making it hard to use the module. To get around it I edited the file in the module directory /views/templates/admin/configure.tpl and remove the reference to {$VERSION_CHECKER} and save the code. <div class="pc-info"> <div class="pc-checker"> {$VERSION_CHECKER} <<<<--delete this line </div> <br/> I have attached a version with this change made to this posting which can be uploaded to your store as is. I have made no other changes to the code and the original references to the developers website are still intact in the file headers, but as it appears to have been inactive for a number of years and now redirects to what appears to be a casino website I wouldn't recommend going there. I assume the original developer has abandoned this project now considering their own website and even their github have been deleted. So obviously you won't get any support or bug fixes etc, unless someone else in the community is able to take up the baton? custompopup.zip1 point
-
I have the sku's setup to be pack specific. If you leave at per piece with a minimum, then customer can adjust to odd quantities. So, for instance, I have a product that is sold as 2pc. Then, I have packs of those two piece quantities at 12 and 24 as separate skus.1 point
-
1 point
-
Unfortunately, but in order to track google Ads retargeting, it is necessary to add a GTM tag in the store. And about GTM integration with this cookie module it is best to ask the developer of this module. I don't buy any ads from google and have no need to do such integration.1 point
-
@musicmasterAs it's not clear from the title of the post that it's about Prestools.1 point
-
Hi everyone We've updated the Shops using ThirtyBees page + home page banner as requested. https://thirtybees.com/powered-by-thirty-bees/shops-using-thirty-bees/ If your site isn't on there or if there's an issue, please let me know and we'll sort it out asap. Thanks to @the.rampage.rado and everyone else concerned for creating the list and everyone who submitted their sites! I must say, seeing these sites, I was super impressed - some are even giving Shopify and Prest*sh*p a run for their money - especially in terms of designs. Obviously our sites are on ThirtyBees, so they're just better anyways 😉 Well done to all, and keep up the good work and please remember, if you haven't already, to please support ThirtyBees and become a member 😉 Your support helps us keep ThirtyBees alive and help it grow and thrive! https://forum.thirtybees.com/support-thirty-bees/1 point
-
I am having difficulty with configuring a specific SEO URLS rewrite in my beta store and would like some feedback - maybe I'm asking too much from the system. Desired URL: domain.com/p/88-21/product-name.html I want to keep the product id in the url string as I have found this element to be critical in certain situations. The "p" tells me it is a product, I'm using "c" for categories. Maybe I don't need the product attribute, but I don't want to move forward under that assumption if I can figure out how to include it in the final output. SEO-URL Rewrite: p/{id}{-:id_product_attribute}/{rewrite}.html I keep getting a 404 error with the above configuration. p/{id}/{rewrite}.html However, if I leave out the product attribute option {-:id_product_attribute} - this SEO friendly URL rewrite scheme works fine. I've also tried adjusting the attribute to {id_product_attribute:/} and its reverse with no success.1 point
-
Thirty bees is still alive, that is the only thing that counts for me 😊 A lot of great things are going on github. It would be wishful, if we could clone Datakick somewow, but might be difficult 🫠1 point
-
Hi everyone, I'd like to ask you for a help with testing upcoming new feature - Packs with Combinations. As you may know, it is currently not possible to have combinations for Pack products. This new feature add supports for that. What is it good for? For example, let say you are selling sport equipment. You want to create a bundle for soccer players containing soccer ball, socks, and cleats. Every one of those products in pack can have different variants (ball can have size 1-2-4-5, socks can have different colors and sizes,...). Because thirty bees does not support packs with combinations, you would have to create a dedicated Pack Product for every combination of products that you want to sell. That's not very user friendly, and it's very hard to maintain. That's why we have this new feature. How it works: 1) When you are adding a product with combinations to your pack, you can now select a special item variant named virtual attribute. (It's stupid name, I know. I'm open for better name suggestions 🙂 ) 2) when you add this special variant to the pack, and save the product, thirty bees will automatically generate a matching Attribute containing all combinations of that product. This is a special Attribute that can be only used by Pack products that contains the virtual attribute item. System will make keep the attribute values in sync with existing combinations. You can rename the attribute name, and also rename the attribute values. 3) In pack product, you can use this new attribute to create/generate combinations: 4) On front office, you now have an option to select specific combination of a pack: This approach is not the nicest. I personally don't like the need for dedicated Attribute that is kept in synch with specific product combinations. But by doing it this way, we have achieved backwards compatibility. Every modules that work with combinations/attributes can work with that. There are a lot of corner cases that I'd like your help with testing. If you are willing to help, you can use core updater. In module settings, select 'custom target' as your distribution channel, and then update to branch pack-combinations: Thank you for your help!1 point
-
1 point
-
1 point
-
limiting picture sizes would be a good idea. header 1920 x 1080 i.e Compression function included?1 point
-
Thank you for sharing such a useful information. Completely true as far as the Search engine optimization technique is concerned you have to mainly focus on on page activities. Now a days many things are changed hence we need to upgrade our practices accordingly. As mentioned above especially for ecommerce sites product reviews and user reviews makes the website more valuable. While doing this practice we need to take care of spam actions, as Google is keeping eye on all such spammers. Stay away from spammers. It will harm your website. To achieve the expected results follow organic SEO service practice that will help you with long term benefits.0 points
-
I would preface that with documentation that explains what functionality in the shopping cart contributes to SEO. The GTIN, UPC, EAN-13, alt image titles per image, social sharing, et al. Everything else boils down to an artistic opinion better served as a blog article.0 points