Jump to content

HiPresta

Members
  • Posts

    66
  • Joined

  • Last visited

  • Days Won

    1

HiPresta last won the day on June 13 2020

HiPresta had the most liked content!

6 Followers

Profile Information

  • Activity
    Freelancer

Recent Profile Visitors

9,254,248 profile views

HiPresta's Achievements

  1. Try this module to solve your problem https://addons.prestashop.com/en/website-security-access/29748-ban-ip-addresses-countries-bots.html
  2. What about a free module for that? Here is one I created: https://hipresta.com/free-prestashop-modules/16-product-price-formatter.html
  3. open the file themes/default-bootstrap/header.tpl and add "clearfix" class to <div id="left_column"> element: http://screencast.com/t/Eluh0hIzMm1l
  4. If you use Chrome try another browser or update PrestaShop to the latest version.
  5. Can you please share the URL with the issue so we can help you.
  6. Hi, If you are looking for a quick way, simply add the following code in the file /themes/default-bootstrap/css/product.css .pb-left-column #views_block {display:none;}
  7. I can't see additional CSS in file, make sure to clear caches.
  8. Add the following lines at the end of the file: /themes/warehouse/css/modules/blocksearch_mod/blocksearch_mod.css @media only screen and (min-width: 768px) { #search_block_top.issearchcontent{ position: absolute; top: -28px; right: -215px; } } @media only screen and (min-width: 1000px) { #search_block_top.issearchcontent{ top: -48px; right: -304px; } } @media only screen and (min-width: 1320px) { #search_block_top.issearchcontent{ right: -391px; } }
  9. Can you share your website URL so we can see how it works on your current project
  10. You'll need to modify 2 files. 1) Modify the file /controllers/front/AttachmentController.php Find the following line header('Content-Disposition: attachment; filename="'.utf8_decode($a->file_name).'"'); and change it to header('Content-Disposition: inline'); 2) Open the file /themes/YOUR_THEME/product.tpl Find the following line <a class="btn btn-default btn-block" href="{$link->getPageLink('attachment', true, NULL, "id_attachment={$attachment.id_attachment}")|escape:'html':'UTF-8'}"> ~line 550 and change it to <a class="btn btn-default btn-block" target="_blank" href="{$link->getPageLink('attachment', true, NULL, "id_attachment={$attachment.id_attachment}")|escape:'html':'UTF-8'}">
×
×
  • Create New...