Jump to content

barrystein

Members
  • Posts

    114
  • Joined

  • Last visited

1 Follower

barrystein's Achievements

Newbie

Newbie (1/14)

8

Reputation

  1. I am using Paypal version 3.10.1 prestashop module.... is this the module that is hiding page parts.... what page parts? PayPal INSTALLED Developed by : PrestaShop | Version : 3.10.1
  2. it appears to be a cache cookie issue. The voucher entry area shows up in private browsing, or on another computer going to the website fresh having not been there before www.homeschool-shelf.com
  3. yes I use paypal.... it appears to be a cache cookie issue. It shows up in private browsing... and on another computer going to the website fresh
  4. for some reason There is no place to enter voucher codes in checkout. This just happened, I don't know why the place to enter vouchers disappeared. It was there a few days ago. Is it something I did above like displayFooterProduct and unhook PayPal from this position.
  5. There is no place to enter voucher codes in checkout. This just happened, I don't know why the place to enter vouchers disappeared. It was there a few days ago. Prestashop 1.5.4.1 PHP version: 5.2.17 MySQL version: 5.5.42-37.1-log
  6. thanks what about getting it on the first page of checkout - instead of just on the payment page
  7. The paypal express checkout is showing on the product pages. how do I get it off the product pages and just in the check out pages
  8. Thank you.... your module fixed the problem perfectly..... do you recommend using the paypal log in option?
  9. I solved this problem, thanks to everyone's help. I don't know how to mark the topic as solved thought The most helpful post in the forum I found was: https://www.prestashop.com/forums/topic/355246-solved-quick-search-block-module-provokes-unsecure-ssl/ Here was my solution: For the block search SSL error I made the following changes: modules/blocksearch/blocksearch-top.tpl I changed the following line in two places <form method="get" action="{$link->getPageLink('search')}" id="searchbox"> chagned to <form method="get" action="{$link->getPageLink('/search',true)}" id="searchbox"> To fix the blocknewsletter SSL Error I made the following changes /themes/default/modules/blocknewsletter/blocknewsletter.tpl I changed <form action="{$link->getPageLink('index')}" method="post"> to <form action="{$link->getPageLink('index', true)}" method="post"> This works for 1.5.4.1 default theme
  10. I did manage to get rid of only 1 of the errors, but I still can't get rid of the second. I am still having a problem with /themes/default/modules/blocksearch/blocksearch.tpl I don't see a file in that directory called blocksearch-top.tpl the blocksearch.tpl file looks fine <!-- Block search module --> <div id="search_block_left" class="block exclusive"> <p class="title_block">{l s='Search' mod='blocksearch'}</p> <form method="get" action="{$link->getPageLink('/search',true)}" id="searchbox"> <p class="block_content"> <label for="search_query_block">{l s='Enter a product name' mod='blocksearch'}</label> <input type="hidden" name="orderby" value="position" /> <input type="hidden" name="controller" value="search" /> <input type="hidden" name="orderway" value="desc" /> <input class="search_query" type="text" id="search_query_block" name="search_query" value="{if isset($smarty.get.search_query)}{$smarty.get.search_query|htmlentities:$ENT_QUOTES:'utf-8'|stripslashes}{/if}" /> <input type="submit" id="search_button" class="button_mini" value="{l s='go' mod='blocksearch'}" /> </p> </form> </div> {include file="$self/blocksearch-instantsearch.tpl"} <!-- /Block search module --> I did manage to rid of one of the errors by editing /themes/default/modules/blocknewsletter/blocknewsletter.tpl I changed <form action="{$link->getPageLink('index')}" method="post"> to <form action="{$link->getPageLink('index', true)}" method="post">
  11. I changed the files in the modules folder....
  12. For the first one I edited blocksearch-top.tpl For the second one I edited blocknewsletter.tpl
×
×
  • Create New...