• Resolved nikidexa

    (@nikidexa)


    Hi, I need to move the product stock avaibility next to price,
    how can I do it?
    Thank you

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @nikidexa !

    Most likely you need to edit your theme’s product page template to change the order of the elements.

    We are not developers on this channel, however, I was able to create a simple CSS code that will reorder the elements visually. Paste it on Appearance → Customize → Additional CSS:

    .product-info{
        display: flex;
        flex-wrap: wrap;
    }
    
    .product-info > *{
        width:100%;
        order:1;
    }
    .product-info .breadcrumbs{
        order:0;
    }
    .product-info .product-title{
        order:0;
    }
    .product-info .price-wrapper{
        order:0;
    }
    .product-info .in-stock{
        order:0;
    }

    For additional assistance on this topic, we recommend getting in touch with one of the customization experts listed on the WooCommerce Customizations Page.

    You can also visit the WooCommerce Facebook group or the #developers channel of the WooCommerce Community Slack. We’re lucky to have a great community of open-source developers for WooCommerce, and many of our developers hang out there, as well.

    I hope it helps! ??

    Hi @nikidexa

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. If you have further questions, please feel free to open a new topic.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Product stock avainility next to price’ is closed to new replies.