Jump to content

pxwee5

Members
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • First Name
    james
  • Last Name
    wee

pxwee5's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hello, I wanted to run Prestashop from the root domain but the installation is in a subfolder. My Prestashop 1.6.1.1 installation is in root/shop folder. I created a .htaccess rewrite file in the root folder to rewrite the root url (website.com) to display the contents for Prestashop. Source: https://www.prestashop.com/forums/topic/18393-solved-move-prestashop-from-subfolder-to-root/ However, the images didn't manage to appear. I suspect the second .htaccess rewrite (in root/shop folder) in Preferences > SEO & URLs > Friendly URLs did not take the variable from the root .htaccess Some help here welcomed. Refer to the image below for more info.
  2. I tried both 1 and 2, and both is located in the superfish-modified.js It still takes about 100ms to open the menu when I hover.
  3. Hello guys, Is there a way to make the sub menu on the top menu appear instantly when hover? I tried the following: 1. Changing the delay and speed settings in superfish-modified.js to 0. $.fn.superfish.defaults = { popUpSelector: 'ul,.sf-mega', // within menu context hoverClass: 'sfHover', pathClass: 'overrideThisToUse', pathLevels: 1, delay: 0, animation: {opacity: 'show'}, animationOut: {opacity: 'hide'}, speed: 0, speedOut: 0, cssArrows: true, disableHI: false, onInit: $.noop, onBeforeShow: $.noop, onShow: $.noop, onBeforeHide: $.noop, onHide: $.noop, onIdle: $.noop, onDestroy: $.noop }; 2. Tried using jquery .show() function instead of the original one (in superfish-modified.js) $ul.show(); /*$ul.stop(true, true).animate(o.animation, o.speed, function () { o.onShow.call($ul); });*/ The submenu appears at a decent speed but not instant. Some help here really appreciated.
  4. Fixed it. I believe it is a display error in Product.js because the cart does show the correct figure. To fix it, go to theme > yourtheme > product.js Find basePriceWithoutTax = basePriceWithoutTax + +combination.price; basePriceWithTax = basePriceWithTax + +combination.price * (taxRate/100 + 1); Replace with basePriceWithoutTax = basePriceWithoutTax + (+combination.price * currencyRate); basePriceWithTax = basePriceWithTax + (+combination.price * currencyRate) * (taxRate/100 + 1); Disclaimer: I'm not a programmer. So some moderator please confirm this fix. I'll reply here if I discover anymore issues with this fix.
  5. Dear Prestashop, My settings: Multiple currencies: USD and RM (Assume conversion rate = 1USD : 4RM) Product Price: USD$5 Four Combinations & Price in USD: 1cm - $2 2cm - $4 3cm - $6 4cm - $8 In the product page. It shows the wrong conversion. 1cm - RM22 2cm - RM24 3cm - RM26 4cm - RM28 The combination prices are not converted properly. The correct conversion should be: 1cm - RM28 2cm - RM36 3cm - RM44 4cm - RM52 Is there a reported bug for this yet? I can't seem to find anything online yet. I'm on 1.6.1.1 and using default theme.
×
×
  • Create New...