

e-com
-
Posts
129 -
Joined
-
Last visited
-
Days Won
14
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Posts posted by e-com
-
-
3 hours ago, 30knees said:
I uninstalled the block newsletter module to get rid of loads of spam registrations. When I reinstalled it, the customers who are marked as subscribers showed up in the module again. Where are the registrations stored that are not customers? I didn't find them in the database.
Strange that you see subscribers not customers after uninstalling module. Because uninstall method deletes its table in database:
public function uninstall()
{
Db::getInstance()->execute('DROP TABLE ' . _DB_PREFIX_ . 'newsletter');return parent::uninstall();
} -
On various hostings with Linux or Unix systems (FreeBSD), with apache, nginx or litespeed servers, with thirty bees versions 1.4.0 or 1.5.0, with PHP versions 7.4, 8.0, 8.1 or 8.2 I NEVER have a problem editing product.
Also, if your web hosting doesn't know how to properly configure your servers, it's best to change web hosting. -
7 hours ago, the.rampage.rado said:
OK give us better one where the results are higher and there are fewer 'bugs' in lighthouse.
Here you can perform some basic tests of my theme made on basis of the Niara theme:
https://bar.thirtybees.eu.org/info/testy-aplikacji-
1
-
-
9 hours ago, the.rampage.rado said:
Warehouse was the best theme for PS1.6
If Warehouse is the best theme for prestashop, I don't know how the inferior ones must be. 🙂
After all, this theme consists of practically only bugs. -
These prestashop themes, sold on themeforest or prestashop addons, are completely unsuitable for stores. They only serve to make money for developers of these themes. Core Web Vitals of all pages in these themes are below zero 🙂
Image below shows day of migration from prestashop to thirty bees in Google Search Console results.
Of course, template from themeforest was thrown in the trash.
Also, what is the point of launching a store that google completely fails to display in search results? -
1 hour ago, datakick said:
This is from order-confirmation.tpl template.
In Niara / community-theme-default, the value of $id_order_formatted is rendered:
<p>{l s='Your order ID is:'} <span class="bold">{$id_order_formatted}</span> . {l s='Your order ID has been sent via email.'}</p>
This variable is set in OrderConfirmationController, and contains order internal ID left padded with zeros
'id_order_formatted' => sprintf('#%06d', $this->id_order),
Rather, most store owners will say that it is a betrayal of trade secrets how many orders the store has 🙂
In my opinion, variable 'reference_order' should be used in this template. -
-
21 hours ago, 30knees said:
Hi @datakickAre there plans to update Niara to PHP 8?
Error definitely does not come from thirty bees and niara theme. Surely it is generated by some module plugged into hook on the product page.
-
1
-
-
3 hours ago, 30knees said:
TypeError
Unsupported operand types: string - string
when rendering smarty template /themes/niara/product.tplIs this related to PHP 8 by any chance? My lay-person's internet search leads me to think this may be the case.
That's right, it's related to PHP 8.
Somewhere in code is mathematical operation of subtraction on strings.
PHP 7 ignores it, but PHP 8 already generates an error.
You need to check exactly in error log where the string subtraction occurs.-
1
-
-
You have very old theme templates.
Download the current ones from github: https://github.com/thirtybees/niara-
1
-
-
On 5/10/2023 at 10:28 PM, the.rampage.rado said:
Also when you delete an image in the product (unasociate it) the image stays on the server.
If we delete an image in product, all files of this image are also deleted on the server. Original image and all generated mianiatures jpg and webp.
-
There are a lot of prestashop modules that have security vulnerabilities and make it possible to attack the store:
-
-
15 hours ago, Sonni said:
where can I find this? I looked already at the marketplace and in modules in the backoffice and couldn´t find it anywhere.
If you do not see this module in list of all modules, then you have some errors in server configuration and list of modules is not updated.
-
Error 500 is a generic server message that doesn't say anything.
To diagnose error, you need to enable debug mode, install "Collect PHP Logs" module, and in logs of this module will be detailed information about error.
In menu: Advanced parameters -> Error log -
On 4/22/2023 at 8:53 AM, Havouza said:
The category image settings is 871x217 in settings for images
Now category_default you have made 200x200px.
Much too small. On phones there will be blurry images.There is a different layout of blocks on phone. Category image fills 100% of the screen width.
-
Image has class col-xs-12 col-sm-2, and category name has class col-xs-12 col-sm-10.
That is, on phones image will take up 100% of the width, and on screens small and larger 1/6 or 16.7% of the screen width.
In bootstrap, number 12 is the whole thing or 100%.
If you make image and category name with classes col-xs-12 col-sm-6, they will occupy equally 50% each on screens small and larger.
We modify category.tpl template.https://www.w3schools.com/bootstrap/bootstrap_grid_system.asp
-
1 hour ago, led24ee said:
I had to made changes in settings.inc to get these new modules. Without these there was no possibility to send emails. Previous version was 1.4 bleeding edge
I suspect that settings.inc file does not have write rights by user -rw-r--r--. Therefore, during the upgrade, version in settings.inc is not updated.
-
-
Module implements mail functionality using PHPMailer library.
Module compatible with thirty bees 1.5.0 bleeding edge and already available in list of native modules.
PHPMailer library is compatible with PHP 8.2, also it is worth replacing "Mail via swiftmailer" module with this module.-
5
-
2
-
-
Sorry, my mistake. But AdminScenesController is and in PS 1.6 and in TB, only it is not installed in menu.
-
1
-
-
11 hours ago, wakabayashi said:
Did anyone ever use scenes sucessfully? I mean years back... This seems to be horribly broken since years. But actually I would like this feature 😕
Anyone (@e-com) interested in bringing this back? Help needed... 🤕 I can not even find any saving process of the table tb_scene_products!?
Edit: I just made some progess on this 🤓
It seems to me that these photo formats: scene, m_scene and Scene class are archaisms still left over from PS 1.4 where there was an AdminScenes controller for mapping product photos.
In PS 1.5 and PS 1.6 there was no longer this controller.
And in PS 8 there is no longer this Scene class.-
1
-
-
11 hours ago, 30knees said:
That's quite easy. 🙂 Thank you.
I've read the documentation but couldn't find anything. How does one rename the created payment method? While the new payment method has a name in the module itself "Amazon"), in the store it just reads Custom Payment Method.
In translations, change name of module to "Amazon", because name of module is taken to display on backoffice.
-
1
-
-
Creating a payment method without module is not possible. You can use "Custom Payment Methods" module to create such a fake payment method.
-
1
-
problems after updating to TB 1.4
in Updating thirty bees
Posted
Copy code of breadcrumb.tpl into your theme:
https://github.com/thirtybees/community-theme-default/blob/1.1.x/breadcrumb.tpl