There are few few sites to look at here http://act-e-shops.egyptianwonders.co.uk/dir/index.html there is also a thread with new V8 sites on it and the actinic website has quite a few as well!!
Announcement
Collapse
No announcement yet.
v8 Advanced Users guide
Collapse
X
-
Showing shipping classes as radio buttons rather than a drop down list
http://community.actinic.com/showthread.php?t=25970
Comment
-
Linking to extended information pages from marketing lists
http://community.actinic.com/showthread.php?t=25817
Comment
-
CSS Based product layout in the shopping cart...
http://community.actinic.com/showthread.php?t=25899
Comment
-
Changing the order of the years in the date drop down (on the store pages)
http://community.actinic.com/showthread.php?t=26502
Comment
-
How to stop cart bounce
Sometimes, the cart bounce page can be a bit confusing to customers and possibly unneccessary particularly if you have implemented a cart summary in your page layout template that shows what is in the cart anyway.
This method causes no page html to be displayed, no bounce delay, and leaves the cart processing (product add) in place.
Caution: This requires a modification of 'ShoppingCart.pl' (which Actinic uses to build 'ca00000n.pl')
Locate 'ShoppingCart.pl' in your Actinic site folder, and edit with Notepad or a code editor eg Dreamweaver.
Goto line 1122:
@Response = ReturnToLastPage($nBounceDelay, ACTINIC::GetPhrase(-1, 1962) . $sCartHTML . ACTINIC::GetPhrase(-1, 1970) . ACTINIC::GetPhrase(-1, 2051),$sPageTitle); # bounce back in the broswer
And relace with:
@Response = ReturnToLastPage(0,""); # immediate bounce back in the browser without page display
Use this when using 'Quantity on product page' mode and ensure bounce delay is set to anything non-zero. If you want to show the bounce page with no bounce, set the bounce delay to zero as per normal.
It will not affect the 'Quantity on confirmation page', or 'Quantity in shopping cart' modes.
Disclaimer:
Not throughly tested but seems to work with all non error cart operations so far. If cart error occurs e.g. maximum quantity exceeded, the error return bounces page to product list with error shown page top with anchor link to error description for the product.
Depending on the error, it may contain 'Please return to catalog to amend order'. You may want to remove this text from the error message (Modify design text ID's: 59, 63, 173, 175, 190)
Jon
(Adaptive Image)
Comment
-
Supressing password field at end of checkout for logged-in customers
http://community.actinic.com/showthread.php?t=26777
Comment
-
Some tips on including CSS files and protecting conditional comments
http://community.actinic.com/showthread.php?t=28025
Comment
Comment