Jump to content

Rebel Tech

Members
  • Posts

    91
  • Joined

  • Last visited

Profile Information

  • Location
    South Africa
  • Activity
    User/Merchant

Recent Profile Visitors

3,287,528 profile views

Rebel Tech's Achievements

Newbie

Newbie (1/14)

11

Reputation

3

Community Answers

  1. What version of ICU are you running?
  2. This isn't a Prestashop error. The error is because the version of your intl PHP extension is outdated. You need to manually upgrade your intl.
  3. Ola, When installing a fresh version of PS 1.7.4.1 I received a warning That server was running CentOS6, cPanel 71, PHP7.2 and ICU 50.1.2. I have now moved servers to CentOS7, cPanel 72, PHP 7.2 but I see the inherent ICU is 50. If I upgrade the package to 62.1 the warning goes away - HOWEVER, upgrading to 62.1 is not supported by cPanel. See link below https://forums.cpanel.net/threads/install-php71-php-intl-with-a-more-recent-version-of-icu.620979/ Can someone tell me what PS is looking for? What system is required (that is supported) to ensure that no warning messages appear. Thanks
  4. Hi, Doing a quick few tests - I see Preston (onboard) is not working on 1.7.3.3. I have done a fresh install (three times to confirm) . The problem is that when you click either START or RESUME it gives an ERROR 404. I see the web address has doubled up on the admin page (eg /admin4567frezy9/admin4567frezy9/index.php/product/index.php?controller=AdminDashboard&token=f4fd66dfc76d02d13bd95263e5db5d38...)
  5. Same here - tried from fresh install of 1.7.2.5 to 1.7.3 - [Ajax / Server Error for action upgradeDb] textStatus: "error " errorThrown:"Internal Server Error " jqXHR: " " It might be because there are no upgrades to the Db (waiting on confirmation).
  6. Hi, Quick question - are there any database changes between 1.7.2.5 and 1.7.3. I have run the 1-Click Upgrade but changes only mention files. The reason I am asking is that I am going to download 1.7.3 - install fresh and then import database over. Thanks
  7. I believe I have solved the issue. I added the css code to a "global" css and it has solved the issue.
  8. It will need to appear - formatted in both long and short descriptions.
  9. In a sense yes. Front-end needs to be able to see the css + html code and then show. Each product is going to be using the same template (as above).
  10. Good day, I am sorry if this has been covered before. I am unable to find anything that related to 1.7. I would like to add some CSS and HTML to products during the creation phase. I have tried direct copy to < Source Code> and even tried to add the css to custom.css (in my theme folder). It just does not format correctly. Any ideas? Sample data below CSS table.test { border: 0px solid #A40808; background-color: #EEE7DB; width: 100%; text-align: center; border-collapse: collapse; } table.test td, table.test th { border: 1px solid #AAAAAA; padding: 3px 0px; } table.test tbody td { font-size: 13px; } table.test td:nth-child(even) { background: #D0E4F5; } table.test thead { background: #A40808; } table.test thead th { font-size: 19px; font-weight: bold; color: #FFFFFF; text-align: center; border-left: 2px solid #A40808; } table.test thead th:first-child { border-left: none; } table.test tfoot .links { text-align: right; } table.test tfoot .links a{ display: inline-block; background: #FFFFFF; color: #A40808; padding: 2px 8px; border-radius: 5px; } HTML <table class="test"> <thead> <tr> <th>Test</th> <th>Test</th> </tr> </thead> <tbody> <tr> <td>Test</td> <td>Test</td> </tr> <tr> <td>Test</td> <td>Test</td> </tr> <tr> <td>Test</td> <td>Test</td> </tr> </tbody> </table>
  11. I am not sure if this helps - but I use this module Order reference change module https://www.prestashop.com/forums/topic/433999-free-module-order-reference-change-module/
  12. Hi I finally got around to updating from v1.6.0.14 to v1.6.1.7 yesterday. Everything went smoothly for the better part of it. I have noticed that the contact us page - under Send a Message (https://www.rebeltech.co.za/contact-us) is sending emails to the right address but the From email address is the same as the TO email address. So: [Rebel Tech] Message from contact form [no_sync] - from [email protected] Previous it used to be [Rebel Tech] Message from contact form [no_sync] - from customer'[email protected] Any idea how I change this back? Thanks
  13. Still getting blank when I use integer <p id="product_id"{if empty($product->id) || !$product->id} style="display: none;"{/if}> <label>{l s='Reference:'} </label> <span class="editable" itemprop="sku">{if !isset($groups)}{$product->id}{/if}</span> </p>
  14. Morning Morning Any chance anyone has a solution: I am trying to change the Product Reference on the Product Page from the product_reference to product_id. The original code in theme/mytheme/product.tpl <p id="product_reference"{if empty($product->reference) || !$product->reference} style="display: none;"{/if}> <label>{l s='Reference:'} </label> <span class="editable" itemprop="sku">{if !isset($groups)}{$product->reference|escape:'html':'UTF-8'}{/if}</span> </p> I changed it to <p id="product_id"{if empty($product->id) || !$product->id} style="display: none;"{/if}> <label>{l s='Reference:'} </label> <span class="editable" itemprop="sku">{if !isset($groups)}{$product->id|escape:'html':'UTF-8'}{/if}</span> </p> However the reference shows as blank now. Any advise?
×
×
  • Create New...