Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1315500

    amihaidani
    Participant

    Hello,

    Is it possible to put a sidebar on top of the woocommerce catalog loop? in category pages, etc..
    i’ve managed to get it on mobile (using this thread: https://community.theme.co/forums/topic/sidebar-on-mobile-is-below-content)

    Is there a simple way to do it on desktop?
    Hope i didn’t miss anything on that post.

    Thank you!

    #1315602

    Paul R
    Moderator

    Hi,

    Thanks for writing in! Regretfully, at this time I am not entirely certain what it is you would like to accomplish based on the information given in your post. If you wouldn’t mind providing us with a little more clarification on what it is you’re wanting to do (a link to a similar example site would be very helpful, or perhaps some screenshots), we’ll be happy to provide you with a response once we have a better understanding of the situation.

    #1316346

    amihaidani
    Participant

    Hello,
    Thank you for your reply!

    Lets make it simple: let’s say I have some Ajax filters in my woo shop (to filter products by brand, size, color etc). They’re widgets which I put in the sidebar. However, I want to position the sidebar before the product listing. I want it on top of it, to save space on the right or on the left and have more products per row.

    I’m talking about desktop view only.
    Is it possible to align the filters (which are dropdowns), horizontaly above the products listing?

    Thank you!

    #1316884

    Rupok
    Member

    Hi there,

    Thanks for writing back. If you just need to change the position that might be possible with some custom CSS. Kindly provide your URL and add a screenshot that what you are trying to achieve. We’ll tailor some code for you if that’s achievable.

    Cheers!

    #1322299

    amihaidani
    Participant
    This reply has been marked as private.
    #1322596

    Nabeel A
    Moderator

    Hi again,

    Thank you for providing the URL. It sounds like you might be having an issue with a third party plugin. Regretfully, we cannot provide support for third party plugins or scripts as our support policy in the sidebar states due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not native to X will need to be directed to the original developer.

    Thank you for your understanding.

    #1323631

    amihaidani
    Participant

    Thank you for your reply.
    Ok, let’s say i get this plugin out of the way and use native wordpress and X features.
    Is there a way to move the sidebar above product listing, on desktop?

    Thank you.

    #1323786

    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    @media (min-width: 979px) {
    .post-type-archive-product.woocommerce .x-main.left,
    .post-type-archive-product.woocommerce .x-sidebar.right {
        width:100%;
        display:block;
        float:none;
    }
    }

    Hope that helps.