
josh barak
Members-
Posts
12 -
Joined
-
Last visited
Everything posted by josh barak
-
Where to change text for Free Shipping? [PrestaShop 1.7.2.4]
josh barak replied to Shipsworld's topic in 1.7.2.x [Current]
Hi everyone! After about 3 hours of playing around, found a solution!! In the database there is a table called "translation" I added there a row with my translation, please see screenshot attached. clear cache (Advanced Parameters -> Performance -> clear cache) In my case I wanted to translate "Free" to Hebrew, and I think the reason it wasn't showing in the BO translation system (in Shop->theme->checkout) is because the translation for that word is coming from the language package of Hebrew. So I guess adding the row in the database overrides the file of the translation package. If this is true, it's bad on PS side for not giving an option to easily change package translation.- 32 replies
-
- 1
-
-
Hello, I'm a php developer and I maintain a prestashop for a client. I understand that it is impossible to upgrade the theme from PS 1.6 to PS 1.7 since the theme system works different between the versions. That is a very big problem in my opinion, since prestashop is moving on and 1.6 version is not planned to be maintained passed June 2019. What are we supposed to do about that? we have the store for the past 3 years, are we supposed to replace the theme and change the look of the site?? Is it easy to create a new theme in PS 1.7 that would look like the current theme we are using? Thank you!
-
Upgrade from 1.6 to 1.7 ? Good or bad?
josh barak replied to Studio1one's topic in 1.7.2.x [Current]
Hi El Patron, I'm trying to upgrade clients store from 1.6.0.9 to 7.1.4.2 The problem is, that it basically means to build the store again from scratch. I spend hundreds of hours on their current store, and now I'll have to do it all over again. You mentioned that PS has an autoupgrade module that supports an upgrade from 1.6 to 1.7, can you send me a link ? Also what about the theme, can it also be upgraded or they'll have to replace it, (which they REALLY don't want to do, since we worked so hard on it) ? Thank you! -
Hi bellini13 Thank you for making me aware to that. 1. I don't really understand, how can someone steal the cookie session? 2. I don't understand how this checkIP feature works. Does it mean I can't access the BO only from a certain IP? That's very strange, what if I want to work from home one day, is it not possible? Also what if my IP changes (Which it does once in a while), then I can't access the BO, not even to change my IP?
-
Hi, I'm using PS 1.7.4.2, and I don't see that option under Advance Parameters=>Administration, I have the same problem of automatic logout when IP changes. Is there a way to do it directly in database? UPDATE I was able to do it directly in database. In the "configuration" table, there is a value "PS_COOKIE_CHECKIP" in "name" column, I changed the value from 1 to 0. Hopes that works.
-
Thanks guys! For some reason I wasn't getting notifications, so I'm seeing this replies just now. I think we will upgrade to 1.7 even though it means replacing the theme, because my client is not very happy with the theme we currently have, and I figured why work on the theme if anyway one day I'll want to change to 1.7. BTW I found a company for doing the upgrade prestachamps.com, does anybody have any experience with that? Thanks
-
Hi, I have a client with PrestaShop version 1.6.0.9. If I upgrade the store to the latest 1.7.x, It's going to be a huge project of setting up the store again, since we'll have to change the theme, and who knows which modules won't work, etc. So my question is, is it a MUST to upgrade to 1.7? Thank you!
-
Ah!! Solved it!! you have to changed the fields in "product_shop" table, not in "product" table. resource https://www.prestashop.com/forums/topic/223189-solved-updating-price-in-mysql-table-doesnt-work/ Hope this helps someone.
- 3 replies
-
- Customization
- module development
-
(and 1 more)
Tagged with:
-
Hi, I have the exact same question! @powdermonkey1850 Where you able to figure this out??
- 3 replies
-
- Customization
- module development
-
(and 1 more)
Tagged with:
-
Hi, When creating a few attributes for a product, which have a lot of values, It creates thousands of combinations for the product. It causes the server to crash if I want to have a lot of attributes values. My presta version is 1.6.0.9 I'm sure a lot of people bumped into this issue. Is there any solution? Is it the same in later versions of prestashop?
-
Any body ??
-
Hi, I have a website that uses the "Gaming Board" theme - http://addons.prestashop.com/demo/FO10810.html. I was wondering how can I add an accessibility option to the them for people with disabilities. (I mean what this article is referring to: https://en.wikipedia.org/wiki/Web_accessibility Does anybody know anything about this, I'll appreciate any piece of information. Thank you!
-
I found a simple solution for this using css. 1. Create a file in this path: httpdocs/override/controllers/admin/AdminOrdersController.php 2. Paste in the following code: <?php class AdminOrdersController extends AdminOrdersControllerCore { public function __construct() { parent::__construct(); // Adding a class in order to apply css to the id column (display: none;) $this->fields_list['id_order']['class'] = 'fixed-width-xs id_order '; } // Adding a css file public function setMedia() { parent::setMedia(); // CSS files $this->addCSS(__PS_BASE_URI__.$this->admin_webpath.'/themes/'.$this->bo_theme.'/css/mystyle.css'); } } 3. create a css file in the following path: httpdocs/[admin]/themes/[current theme]/css/mystyle.css 4. paste in the following code: body.adminorders table.order .id_order { display: none; } // Hiding the filter of the ID column, assuming the ID column is the second column in the table, otherwise adjust // the number for the ":nth-child" to match the column number. body.adminorders table.order tr.filter th:nth-child(2) { display: none; } THATS IT! The ID column should no longer be displayed. (This works in prestashop 1.6.0.9 and wasn't tested in other versions)
-
Undefined index: order error in Information about Customer page
josh barak replied to josh barak's topic in Bug reports
I guess you are right it's just a notice, not an error. Thanks, Your help is much appreciated. -
Undefined index: order error in Information about Customer page
josh barak replied to josh barak's topic in Bug reports
Thanks tuk66! I appreciate your answer, but that just hiding the problem, is that how it's meant to be? I mean this is a core prestashop code, not a module someone made. -
Hi, I'm trying to use the option in "Performance" of disabling overrides. I switch the button to "yes" and 'Save' and it returns a success message on the screen, bot the overrides are still taking effect and there are not getting override. Can someone please help me. Thanks
-
When a customer has 0 orders and I go to the "Information about Customer" page, it displays the following error: Notice on line 786 in file view.tpl.php [8] Undefined index: order Notice on line 786 in file view.tpl.php [8] Trying to get property of non-object I'm using the default theme for the backend, and prestashop version 1.6.0.9 Is this a bug?
-
Hi everyone, I am using prestashop version 1.6.0.9. I'm trying for hours to solve this issue. The number of orders that appears on the dashboard seems to be wrong. I tested it by selecting in the date option the month of August and it says I had 101 valid orders, then I went to the orders list and selected the same time span and it shows I had 188 orders, after reducing all the not valid ones i'm left with 147 VALID orders. I checked in the 'statuses' of orders list to make sure what I consider "valid" order is correct, and it is. Meaning the statuses of orders I consider "valid" are checked as "valid" and "paid". In the "Stats" area also the "placed orders" is 101, but the "orders" in the conversion section IS actually 147. Can anybody please explain to me why is this. Thank a lot in advance to anybody who tries to help me solving this issue!!