-
Posts
1,147 -
Joined
-
Last visited
-
Days Won
97
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by the.rampage.rado
-
No payment method is available for use at this time.
the.rampage.rado replied to Kevin13952's question in Technical help
After you add a payment method you have to go to Modules -> Payment and enable this new payment method for the appropriate: currencies groups countries shipping methods Some of the settings are automatic there but some are not. I bet your shipping associations are not active.👽 -
How to edit or remove the "Store Information" block in footer.
the.rampage.rado replied to Kevin13952's question in Technical help
-
Oh... now I saw that you're caching on your file system. Clearing the cache at the same page should alleviate some of those files but they will gradually return as people/bots visit your site. You had an issue with something, that was preventing you from updating your thirty bees, if I remember correctly? Because in the newer versions (1.4 I believe) there is another option in this section that allows caching on your server side cache which is faster and will solve your issue.
-
If they can give you the numbers it would be lot easier if they can say where those files are accumulating. The cache is not your issue.
-
@led24ee could you describe the bug you experience with translations? You know that currently the save button only saves the section above it (due to large number of fields in this part of thirty bees this was introduced to get around the timeouts that were common). If you translate lets say 3 modules and only click the last button you will save the last module, same with all other types. If you can describe your issue it will be easier to help.
-
The contents of this folder gradually increase over time if you have that setting ON. The system keeps old combined css and js files to speed the visits of returning customers. If you have FTP client you can easily select all files in the folder and see their number and size.
-
Could you check how many files you have in /themes/YOUR_THEME/cache/ ? Your config here is optimal. If down the page you turn on 'Keep JS and CSS files' you might get some files but definitely not in the scope you refer to. If you set it to Never recompile it will wait for you to clear your cache. Currently as you have it if you make a change on your shop (theme, translation, etc.) the system will most likely catch the majority of them and invalidate the old cache. But in practice the Clear cache button is still needed sometimes.
-
Yes, I've made a list and will remove all of them but in the same time we would like to add new ones 😉
-
Hello, Currently our section with shops using the platform is quite outdated. thirty bees will be glad to showcase your shops (of course if you are up to it). If you like to see your shop here (and of course receive a link), please comment below or you can PM me so I can prepare the list.
-
Do you have all the emails in your /mails/ directory? They are organized in folders under ISO codes: /en/, /bg/, /es/, etc. If the folder of your language or reply_msg template in it are missing this might be causing the issue. EDIT: Same with /themes/YOUR_THEME/mails/ folder - I think those are used and if they are missing the system falls back to /mails/ folder....
-
@CoffeeGuy It should look something like that but with weight checkmark on top (mine is price): Each column is in your case different weight, the left most is your 'standard' shipping, for each column to the right you have to enter lower cost.
-
In your Sitemap module you have to uncheck all types of pages that you want to show in the sitemap. Then regenerate the sitemap.
-
Isn't this the code? /** * @param int|null $rootCategory * @param bool $idLang * @param bool $active * @param array|null $groups * @param bool $useShopRestriction * @param string $sqlFilter * @param string $sqlSort * @param string $sqlLimit * * @return array|null * * @throws PrestaShopDatabaseException * @throws PrestaShopException */ public static function getNestedCategories( $rootCategory = null, $idLang = false, $active = true, $groups = null, $useShopRestriction = true, $sqlFilter = '', $sqlSort = '', $sqlLimit = '' ) { if (isset($groups) && Group::isFeatureActive() && !is_array($groups)) { $groups = (array) $groups; } $cacheId = 'Category::getNestedCategories_'.md5( (int) $rootCategory.(int) $idLang.(int) $active.(int) $useShopRestriction .(isset($groups) && Group::isFeatureActive() ? implode('', $groups) : '') ); if (!Cache::isStored($cacheId)) { $result = Db::readOnly()->getArray( ' SELECT c.*, cl.* FROM `'._DB_PREFIX_.'category` c '.($useShopRestriction ? Shop::addSqlAssociation('category', 'c') : '').' LEFT JOIN `'._DB_PREFIX_.'category_lang` cl ON c.`id_category` = cl.`id_category`'.Shop::addSqlRestrictionOnLang('cl').' '.(isset($groups) && Group::isFeatureActive() ? 'LEFT JOIN `'._DB_PREFIX_.'category_group` cg ON c.`id_category` = cg.`id_category`' : '').' '.(isset($rootCategory) ? 'RIGHT JOIN `'._DB_PREFIX_.'category` c2 ON c2.`id_category` = '.(int) $rootCategory.' AND c.`nleft` >= c2.`nleft` AND c.`nright` <= c2.`nright`' : '').' WHERE 1 '.$sqlFilter.' '.($idLang ? 'AND `id_lang` = '.(int) $idLang : '').' '.static::getActiveColumnCondition($active, $useShopRestriction).' '.(isset($groups) && Group::isFeatureActive() ? ' AND cg.`id_group` IN ('.implode(',', $groups).')' : '').' '.(!$idLang || (isset($groups) && Group::isFeatureActive()) ? ' GROUP BY c.`id_category`' : '').' '.($sqlSort != '' ? $sqlSort : ' ORDER BY c.`level_depth` ASC').' '.($sqlSort == '' && $useShopRestriction ? ', category_shop.`position` ASC' : '').' '.($sqlLimit != '' ? $sqlLimit : '') ); $categories = []; $buff = []; if (!isset($rootCategory)) { $rootCategory = Category::getRootCategory()->id; } foreach ($result as $row) { $current = &$buff[$row['id_category']]; $current = $row; if ($row['id_category'] == $rootCategory) { $categories[$row['id_category']] = &$current; } else { $buff[$row['id_parent']]['children'][$row['id_category']] = &$current; } } Cache::store($cacheId, $categories); } else { $categories = Cache::retrieve($cacheId); } return $categories; }
-
Revws module - review request sending time calculation
the.rampage.rado replied to 30knees's topic in Modules
I'm sure you didn't forget your cron? -
-
Or the simple 'fix' - you can edit your currencies and simply add USD and MXN around $.
-
Try the following override. Place it in override/classes folder then delete your cache/class_index.php Somebody should help with the product page as the code is hidden there and further fix is needed. Tools.php
-
1.3 will not run on php8.3 In fact even if thirty bees 1.5.1 manages to run on php 8.3 (not officially supported yet) your modules and theme will need some major rework. So I would advise to roll your server back to php 7.4, update to edge or stable 1.5.1 and fix all errors/warnings/notices in your Collect logs module. Only then you have a chance at 8.2 and can test it. Update through Core updater but use this table as a guideline: https://thirtybees.com/download-specific/ Also check this thread regarding the update to 1.5 and later as there are some changes and some easy actions you have to make:
-
-
I would like to display the FAQ snippets on another place because I added it to a section that is not visible in the design I use in the new shops I added later. Could we use something like that because it's not showing and I don't know if the code is wrong or? {if isset($id_shop) && $id_shop == 3} {hook h='displayFAQs' entityType='product' entityId=$product->id} {else} <p></p> {/if} EDIT: I made it work with different approach, instead of shop ID I detect the domain and as I only have one shop where the design is different I reversed the if clause: {if $smarty.server.HTTP_HOST|strstr:'domain.com'} {else} {* Default content if no domain match *} {hook h='displayFAQs' entityType='product' entityId=$product->id} {/if}
-
If it says Microsoft it does not mean it's a Bing or MS service. It might be a machine hosted on their hosting. The same thing you can see with AWS or other known hosting companies. In any case the vast majority of bots you will catch will be from northern China provinces where they host their hacking.
-
Add color label name to identify the atribute color
the.rampage.rado replied to iceguitar's question in Technical help
The name should be possible to be pulled and displayed in the theme as it's saved now. Another good enhancement would be the ability to 'group colors'. Something like: Group: Blue - sky blue, royal, brand1_blue, brand2_blue, some_other_blue., Yellow - sun_yellow, very_hot_lava_yellow, neon_yellow, solar_shine, White - cream, very_white, Green - light green, leaf green, dark green, etc. And then have those groups displayed in the layered navigation module for selection. That way the customer can search for all 'blue', 'red' or 'yellow' products despite that the majority of them use 'brand colors'. The two current workarounds are to have every product in generic color name and # or the layered filter to have hundreds of options showing only 2-3 products each. Of course this means a general rework of core, modules and theme.