Hi there,
How can we use this plugin in Xstore?
Woo say that we need to add `<?php if ( function_exists(‘sfn_display_cart_addons’) ) sfn_display_cart_addons($num, $display); ?>
` to the theme, but where should we add it? We have a child theme, but I guess it needs adding with the correct php so it gets pulled in before the checkout php in the theme.
From the plugin itseld:
Use shortcodes on any page or post
[display-addons length=5 mode=loop] – Will use your theme’s template
[display-addons length=4 mode=images_name] – Shows the product image along with the product name
[display-addons length=8 mode=images_name_price] – Will display product images with name and priceUse directly in your theme
<?php if ( function_exists(‘sfn_display_cart_addons’) ) sfn_display_cart_addons($num, $display); ?>
$num = the maximum number of add-ons to display, and $display can be one of the following: ‘loop’, ‘images’, ‘images_name’, ‘images_name_price’, ‘names’, ‘names_price’