move free gift div
-
Hello there,
Great plugin!!
I have a new div set up in the cart where ideally i would love the free gift option to appear and not as a pop up – this is what i have:
———————-
add_filter( ‘the_content’, ‘woocommerce_cart_contents’ );
function woocommerce_cart_contents ( $content ) {
if ( is_cart() ) {
$content .= ‘
<div class=”free-gift”>FREE GIFT BOX</div>
‘ . “
“;} // End IF Statement
return $content;
} // End woocommerce_cart_contents()
——————
is there anyway to make the free gist option to show in the ‘free-gift’ div?
Many thanks for your help,
Tom
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘move free gift div’ is closed to new replies.