Jump to content

mlesniak1

Members
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • First Name
    Mike
  • Last Name
    Les

mlesniak1's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Every next and back button click causes the three buttons to blink. I believe the fade effect is being applied to them when it should only be applied to the images. Here is a page with the issue for reference, the enlarged images have the issue https://jessiesrugs.com/persian-rugs/1393-persian-oriental-rug-3-5-x-5-1-beige-hamedan.html I've confirmed this by setting nextEffect:"none" in jquery.fancybox.js which stops the buttons from blinking, but I still want the images to fade. How can I only stop the buttons from blinking? I'm running 1.5.6.2
  2. Currently the wishlist module in my Prestashop store only displays the product image and title. There are two wishlist views, the customer account view and the shared link view. I would like to display the price in both of these views. I've tried adding $price = Product::getPriceStatic($productid); to different parts of managewishlist.php and adding <span id="our_price_display">{convertPrice price=$productPrice}</span> to the managewishlist tpl file but nothing shows up. I'm running version 1.5.6.2
  3. I'm looking to use the standard wishlist module but add the price. Can someone help me with the code and where to put it?
  4. I am no expert on php, can someone show me how to display product prices in the wishlist? It looks like this is the code I will need include(dirname(__FILE__).'/../../config/config.inc.php'); //first check if this link is ok include(dirname(__FILE__).'/../../init.php'); //this link also $price = Product::getPriceStatic($productid); But I do not know where to implement it, I have tried putting it in managewishlist.php but keep getting a fatal error. Any help is appreciated.
  5. Hi, After performing a search the default sort is "position within category" in descending order. But it will only display in ASCENDING (from oldest product first to newest product last) which I do not want. Everywhere else on my site the default position sort performs correctly and I cannot for the life of me figure out how to fix it. Might it be in a PHP file? I'm running 1.5.6.2 This is my blocksearch-top.tpl code: <form method="get" action="{$link->getPageLink('search')|escape:'html'}" id="searchbox"> <p> <label for="search_query_top"><!-- image on background --></label> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="text" id="search_query_top" name="search_query" placeholder="Search Keyword / Item #" value="{$search_query|escape:'htmlall':'UTF-8'|stripslashes}" onfocus="this.placeholder = ''" onblur="this.placeholder = 'Search Keyword / Item #'"/> <input style="border-radius:0px" type="submit" name="submit_search" value="{l s='' mod='blocksearch'}" class="button" /> </p> </form>
  6. I did exactly that, thanks for the reply!! I also added script to show a loading overlay while that page is confirming the order just like you said.
  7. Hi, I have a paypal express checkout button on the payment page (last page of the shopping cart). The customer is then taken to paypal where they log in to paypal and then select "Pay now". After selecting pay now they are redirected back to my site to click a final button to confirm the order. I would like the customer's order to be complete after clicking pay now on paypal and be directed to the normal order confirmation page that appears after completing an order. My customers have been confused after clicking pay now on paypal and having to make another click on my site. Any help in skipping that final review click would be appreciated. Thanks. I'm using PS 1.5.6.2 and paypal usa 1.3.8
×
×
  • Create New...