Jump to content

DrunkBug

Members
  • Posts

    132
  • Joined

  • Last visited

1 Follower

Profile Information

  • Location
    Lithuania
  • Activity
    Freelancer

Recent Profile Visitors

2,909,439 profile views

DrunkBug's Achievements

Newbie

Newbie (1/14)

16

Reputation

7

Community Answers

  1. I solved it myself. If anyone is interested, here's how I did it: You need to edit a file /modules/themeconfigurator/themeconfigurator.php In this file, find this at about line #280: public function hookdisplayTop() { if (!isset($this->context->controller->php_self) || $this->context->controller->php_self != 'index') And change it to this: public function hookdisplayTop() { if (!isset($this->context->controller->php_self)) From now on, you will see images on all pages that you added in Top position through Theme Configurator module.
  2. Hello, I have added images to Top position of Theme Configurator. They show up on my homepage, but I also want them to show up in all other pages of my shop. Is it possible? I can't find any option in modules configuration page and there are no exclusions in positions exclusions list.
  3. It's not a mobile version, it's a responsive theme. Default theme is based on bootstrap, so this bootstrap guide should be used to disable responsiveness of the theme:
  4. It's better to use .sf-menu > li:last-child { border-right: none; } in this case. Because then you don't have to worry if the number of menu items changes.
  5. You don't need to delete anything. Those links was indexed by google, and now they're not accessible. That's why it shows 404 errors.
  6. Can you share a link or code to what exactly are you talking about? I mean, about which Vekia's tutorial?
  7. Can you explain your problem a little bit more? How do you want to load that folder? What's happening?
  8. As I said, it's NOT a Prestashop issue, it's your hosting. Contact your hosting provider and ask on how to disable mod_pagespeed.
  9. If you take a look at his source, you'll see that there ARE <a> tags on images, so it's a frontend issue - he has a "protection" against right click, copying etc., and my given line should cause him the problem. Try it out yourself - link an image, and then apply a css style of pointer-events: none; and you'll see that you are not able to click on that image anymore.
  10. You have some javascript that blocks right click on your website, right? Maybe it is causing problems. To be more precise, I'm guessing that this particular line in your source is causing the problem: jQuery("img").css("pointer-events", "none");
  11. Looks like your new web server has Apache's PageSpeed module enabled. So if it's VPS, disable this module globally, if it's shared hosting, try to add these line to the top of your .htaccess file: <IfModule pagespeed_module> ModPagespeed off </IfModule>
  12. Oh, sorry, didn't looked myself into .tpl file. My bad. You need to change /themes/your_theme/js/global.js file. Find in that file function display(view){}, in that function, find this line, it's line number 237 in default file on my installation: html += '<div class="left-block col-xs-4 col-xs-5 col-md-4">' + $(element).find('.left-block').html() + '</div>'; So here you can change what I told you to change. Also, below this line, find those two lines: html += '<div class="center-block col-xs-4 col-xs-7 col-md-4">'; html += '<div class="right-block col-xs-4 col-xs-12 col-md-4"><div class="right-block-content row">'; Change those too, to fit 12 columns grid. I.e., if you change on left-block col-md-4 to col-md-3, change right-block or center-block to col-md-5 etc.
  13. li.ajax_block_product > div.product-container > div.row > div.left-block col-xs-4 col-xs-5 col-md-4 Now, for this <div class="left-block col-xs-4 col-xs-5 col-md-4">, change columns numbers, try to change col-md-4 to col-md-3 and you'll see how it shrinks. Don't forget to change other divs in div.product-container to fill 12 columns in a row. This part is responsive, so the other way is to make that column fixed-width, but again, don't forget to change everything else in product-container div then.
×
×
  • Create New...