• Resolved robbsen1987

    (@robbsen1987)


    Hey,
    is there a way to leave a note about the shipping costs?
    So not only on the question mark, but under the subtotal or total (plus shipping costs) with a link to a page?

    I use the Flatsome Theme and Germanized Plugin. This plugin sets this hint e.g. by default in the cart slider. Maybe it is possible to add this function in Cartpops too?

    Thanks & greetings
    Robb

Viewing 1 replies (of 1 total)
  • Plugin Author CartPops

    (@woopops)

    Hey Robb,

    There’s an action cartpops_drawer_before_checkout_button or cartpops_drawer_after_checkout_button which allow you to hook something before or after the button.

    For example:

    
    function my_custom_note() {
    	?>
    		<div class="my-custom-note-wrapper">
    		  <p>My custom note</p>
    		</div>
    	<?php
    }
    add_action( 'cartpops_drawer_before_checkout_button', 'my_custom_note' );
    

    Definitely let us know if you have any other questions!

Viewing 1 replies (of 1 total)
  • The topic ‘Shipping costs’ is closed to new replies.