Hello,
I've install this addon: http://addons.oscommerce.com/info/2561
And it works, yet in 2.3 osc, there was changes in Boxes, new class for them etc.
So whole site is getting cached and i don't know how to make not caching the bm_shopping_cart. In install guide of chemo it's Step 7 makes problem.
"
STEP 7 - Edit includes/column_right.php (or wherever you have the shopping cart displayed)
Find this code:
require(DIR_WS_BOXES . 'shopping_cart.php');
And REPLACE it with this code:
if (!tep_session_is_registered('customer_id') && ENABLE_PAGE_CACHE == 'true' && class_exists('page_cache') ) {
echo "<%CART_CACHE%>";
} else {
require(DIR_WS_BOXES . 'shopping_cart.php');
}
"
How to solve that class problem. I would want to display here a shopping box, but i don't know how? How can i do this through class $osc_template ? is it possible? (i don't want whole column_right or left but only bm_shopping_cart)