HI,
Presently, I am using the following code to only display the uc_lead_pane if "GROUP" is found in the title. I have customized this pane for the ability to include a team roster. However I have recently modified how my products are listed and now I want this code to look in the model field (which is customized based on the selected attributes). How I could I have it look at the model rather than the title? I tried $item->model, but that doesn't do anything. Thanks.
$showRoster = false;
$items = uc_cart_get_contents();
foreach ($items as $item) {
if( strpos(strtoupper($item->title), 'GROUP') !== false ){
$showRoster = true;
}
}
if( $showRoster ){
return $panes;
}
}



Joined: 01/13/2008