Home Forums WoodMart support forum Add content into cart sidebar

Add content into cart sidebar

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #278704

    atpd23
    Participant

    Hello,

    How could I add custom content into mobile’s cart sidebar? I would like to add something like “spend another XX to get free delivery” under subtotal – for clarification, please see the attached image.

    I have tried some hook I have found on this forum, but it seems it isn’t working anymore:
    add_action( ‘wp_footer’, ‘woodmart_cart_side_widget’, 140 );

    Best Regards

    Attachments:
    You must be logged in to view attached files.
    #278728

    Hello,

    Create an HTML block with the content you want to add to the shopping cart widget in the Dashboard > HTML blocks.

    Please add this code to the functions.php of the child theme:

    add_action( 'woocommerce_widget_shopping_cart_total', function(){
       echo do_shortcode( '[html_block id="3008"]' );
    }, 5 );

    [html_block id="3008"] insert your HTML block ID in this place.

    Best Regards

Viewing 2 posts - 1 through 2 (of 2 total)