Jump to content

mobiquio

Members
  • Posts

    3
  • Joined

  • Last visited

mobiquio's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Today, 01:05 AM kornett, on 03 August 2013 - 07:18 PM, said: My paypal payment option is not showing up on the available payment methods when trying to do the checkout. Prestashop: 1.5.4 Paypal module: 1.2.1 I've tried the Live and Sandbox mode, with valid credentials and API settings. is this a bug??? Using USA and Canada as available countries, USD and EUR currencies by default. No errors displayed, its like it was disabled but it is ENABLED. Screenshots attached. I have the same exact problem, I have installed many of the previous versions in the past and I have never had any problems setting up modules. I just downloaded and installed 1.5.4 an hour ago and just like always the first modules i install are UPS, FEDEX and PayPal. All was going good till I installed the PayPal Module. I added both Sandbox as well as live API credentials and also saved the module and payment configurations. I then went to try my first checkout and nothing NO PayPal option only the default bank wire and check payments were available. I double checked if the module was disabled in fact I quadruple check to see if I was missing something. But Still Nothing...... So I search google and also searched prestashop forum which lead me to this post. There must be something wrong. This is the first time I tried to install PS on godaddy servers maybe that could be a problem I know godaddy is garbage but its what my client has. I even check that all the file permissions are correct and uninstalled, reinstalled, reset, disabled and enabled a few time but still nothing. I really don't have time for this to be broken, Please someone tell me what the last stable version is so I can install it and get this work done.
  2. I have the same exact problem, I have installed many of the previous versions in the past and I have never had any problems setting up modules. I just downloaded and installed 1.5.4 an hour ago and just like always the first modules i install are UPS, FEDEX and PayPal. All was going good till I installed the PayPal Module. I added both Sandbox as well as live API credentials and also saved the module and payment configurations. I then went to try my first checkout and nothing NO PayPal option only the default bank wire and check payments were available. I double checked if the module was disabled in fact I quadruple check to see if I was missing something. But Still Nothing...... So I search google and also searched prestashop forum which lead me to this post. There must be something wrong. This is the first time I tried to install PS on godaddy servers maybe that could be a problem I know godaddy is garbage but its what my client has. I even check that all the file permissions are correct and uninstalled, reinstalled, reset, disabled and enabled a few time but still nothing. I really don't have time for this to be broken, Please someone tell me what the last stable version is so I can install it and get this work done.
  3. I am just wondering if the Default "Sort By" Product Dropdown is working properly. I am using Version 1.4.4.0 Anyways the dropdown selection price:lowest price:highest product name: A to Z product name: Z to A In-stock first Does not seem to Fire the Javascript when viewing the products on the product list page...However it does seem to work on the list produced when searching. It is able to sort the searched product list and the manufactures product list but not main product list. In both cases it shows the Javascript is present as well as the Select Options. It looks like the only difference is the URL that is being query'd, Is it a problem with Friendly URLS or BUG or something. This Code DOES NOT WORK (Nothing Sorts) <!-- Sort products --> <script type="text/javascript"> //<![CDATA[ $(document).ready(function() { $('#selectPrductSort').change(function() { var requestSortProducts = 'http://www.totsandteapots.com/shop/45-my-blankee'; var splitData = $(this).val().split(':'); document.location.href = requestSortProducts + ((requestSortProducts.indexOf('?') < 0) ? '?' : '&') + 'orderby=' + splitData[0] + '&orderway=' + splitData[1]; }); }); //]]> </script> <form id="productsSortForm" action="http://www.totsandteapots.com/shop/45-my-blankee"> <p class="select"> <select id="selectPrductSort"> <option value="position:asc" selected="selected">--</option> <option value="price:asc" >Price: lowest first</option> <option value="price:desc" >Price: highest first</option> <option value="name:asc" >Product Name: A to Z</option> <option value="name:desc" >Product Name: Z to A</option> <option value="quantity:desc" >In-stock first</option> </select> <label for="selectPrductSort">Sort by</label> </p> </form> <!-- /Sort products --> This Code IS WORKING (Sorting Fine) <!-- Sort products --> <script type="text/javascript"> //<![CDATA[ $(document).ready(function() { $('#selectPrductSort').change(function() { var requestSortProducts = 'http://www.totsandteapots.com/shop/search?search_query=my+blankee&submit_search=Search'; var splitData = $(this).val().split(':'); document.location.href = requestSortProducts + ((requestSortProducts.indexOf('?') < 0) ? '?' : '&') + 'orderby=' + splitData[0] + '&orderway=' + splitData[1]; }); }); //]]> </script> <form id="productsSortForm" action="http://www.totsandteapots.com/shop/search?search_query=my+blankee&submit_search=Search"> <p class="select"> <select id="selectPrductSort"> <option value="position:asc" selected="selected">--</option> <option value="price:asc" >Price: lowest first</option> <option value="price:desc" >Price: highest first</option> <option value="name:asc" >Product Name: A to Z</option> <option value="name:desc" >Product Name: Z to A</option> <option value="quantity:desc" >In-stock first</option> </select> <label for="selectPrductSort">Sort by</label> </p> </form> <!-- /Sort products -->
×
×
  • Create New...