Add widget under off-canvas cart

Hi guys,

So my client has asked if it is possible to add an advert underneath the off-canvas cart in the header…

I was thinking of adding a text widget/sidebar underneath the off-canvas cart in the sidebar… is there any way I could achieve this? :slight_smile: I have attached a photo of where I’d want to output the widget…

Many thanks :slight_smile:

Steven

Hi Steven,

I recommend using jQuery to do that, you can add this snippet to (Theme Options > JS):

jQuery( document ).ready(function($) {
    jQuery( "<p>Test</p>" ).appendTo( ".x-off-canvas-content .x-mini-cart" );

});

This will add <p>Test</p> after the cart items in off canvas window.

Thanks.

Perfect, thank you! Never thought about using Jquery to insert it… nice idea :slight_smile:

Steven

You’re welcome, Steven.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.