-
Posts
1,181 -
Joined
-
Last visited
-
Days Won
100
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by the.rampage.rado
-
delete thumbnails but images are still visible
the.rampage.rado replied to Beeta's question in Technical help
Could you send me a link? -
delete thumbnails but images are still visible
the.rampage.rado replied to Beeta's question in Technical help
If you clear the cache of your browser or open Incognito mode they will not be visible. If you want to clear some more space you can go to /themes/cache and clear every js and css file older than 30 days (or update to edge where this functionality is added in the core). It will not clear lots of inodes but will free some space. -
Product posted with Highest price first?
the.rampage.rado replied to bhtoys's question in Technical help
You purchased Tidy module if I remember correctly? In it there is an option 'Set cheapest combinations as default' If you have used this function you will most probably have to go product by product and change the default combination. -
Could you test the thirty bees module again and check if your settings match mine (I posted them in the other thread)?
-
Could you post those logs (delete any sensitive info first)?
-
No payment method is available for use at this time.
the.rampage.rado replied to Kevin13952's question in Technical help
I'm not using Stripe but just made a quick test in my spare installation and it's showing even without proper keys. I imagine you have checkmarks here: And here everything is enabled for your country-currency-visitor group-carrier combination: The result: -
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