• Hello:

    Could you please help me by suggesting how i can move the “Woocommerce Site wide” store notice from displaying on my header to footer?

    I just wish to display the standard “cookies in use” thing. For that dont want to use another plugin when i already have one in built. ??

    Thanks & Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • Using Storefront, my store notice is already at the bottom, so the position of yours could be theme-specific. Please post the url of your site so the markup can be examined with browser tools. It may be possible to alter the position with some custom css.

    The store notice is not totally suitable for the cookie notice because it will come up every time the user visits the site, whereas what should happen is that the notice, once dismissed, stays dismissed unless the user clears out their cookies, which is usually not often. This is so as not to bug the user.

    I should not shy away from using another plugin for this purpose, such as:
    https://www.ads-software.com/plugins/cookie-law-info/
    It has more features and works well for most people but if you don’t like it there are other cookie plugins you can try.

    @peeyooshk

    Try playing with this in custom.css

    /* Change Store Notice to bottom */
    .demo_store {
        background-color: #3d9cd2;
        bottom: 0px; /* Changing the value to 0 will make it sticky at the bottom */
        color: #fff;
        left: 0;
        margin: 0;
        padding: 1em 1.41575em; /*padding: 1em0;*/
        text-align: center;
    	position: fixed;
        right: 0;
    	color: #fff;
        z-index: 999;
    }
    
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change location of Woocommere store notice’ is closed to new replies.