1998 Posts in 530 Topics by 433 members
E-Commerce Modules
SilverStripe Forums » E-Commerce Modules » Front end CheckBox sorting
Discuss about the various e-commerce modules available:
Ecommerce, SS Shop, SilverCart and SwipeStripe
Alternatively, have a look the shared mailinglist.
Moderators: martimiz, Nicolaas, Howard, Sean, Ryan M., biapar, Willr, Ingo, Jedateach, swaiba, simon_w
| Go to End | ||
| Author | Topic: | 1121 Views |
-
Re: Front end CheckBox sorting

26 April 2012 at 1:48pm
To interact with the session you'll want to make use of the Session class:
http://api.silverstripe.org/2.4/sapphire/control/Session.htmlHere is some more of the example fleshed out.
function savefilter($data,$form){
Session::set("productfilter",$data);
Director::redirectBack();
return;
}function FilteredProducts(){
$data = Session:get('productfilter');
$savedfilter = "\"ParentID\" IN (".implode(",",$data["Categories"]).")"; //where $data["Categories"] is an arrayreturn $this->ProductsShowable($savedfilter);
}
The limiting is done by passing the savedfilter to ProductsShowable, which makes sure the products it retrieves only belong to the given categories (Product Groups).
This is far from complete, and you'd need to somehow get the ids of subcategories if you wanted to include products from those.
I will be devoting some time to improving the ability to browse / search products in the future sometime.
Here's a ticket I made: https://github.com/burnbright/silverstripe-shop/issues/36 -
Re: Front end CheckBox sorting

11 May 2012 at 3:33am
Hey Jeremy,
Sorry I've been awol these last few weeks.
I appreciate your help and hopefully the ecommerce module will get the upgrade sooner rather than later.
The project I'm working on has unfortunately been shelved.
Thanks again
| 1121 Views | ||
| Go to Top |


