Posted - 10/19/2018 : 20:05:11
Hi Paul,
The following may help you out. These are the parameters for the php includes file that are found on the parameters help page [url]https://www.ecommercetemplates.com/phphelp/ecommplus/parameters.asp[/url]
Continue shopping
$actionaftercart=1;
...or not setting anything will mean that the continue shopping button will take the URL from the xxHomeURL from the vsadmin/inc/languagefile_en.php which is the current default. From version 6.4 the variable here is orhomeurl rather than xxHomeURL so if you wanted people to continue to products.php enter this in includes.php
$orhomeurl='products.php';
$actionaftercart=2;
...will make the cart "continue shopping" button return to the page you just came from when you are on the cart contents page.
$actionaftercart=3;
...when you add something to your cart, you will refresh immediately back to the products page you came from without going to the cart contents page.
$actionaftercart=4;
...will skip the page showing "The products have been added to your cart" when adding products to the cart.
$cartrefreshseconds=2;
... can be used to control the number of seconds that the message "The items has been added to your cart" is shown. If set to zero this will perform an HTTP redirect rather than a refresh.
If you need to change the continue shopping link on thanks.php, use the following
$thankspagecontinue="http://www.yourstoreurl.com/finishpage.php";
If you need to change Home URL in the product / category breadcrumbs, use the following
$orhomeurl="yourhomeurl.php";
Will - Bolton Manchester UK
Edited by - V45 on 10/19/2018 20:05:54
|