• Resolved pdana

    (@pdana)


    1. How do I remove additional information from checkout? I’m selling downloadable products so order note and shipping isn’t needed.
    2. How do I remove default sorting of products. I’m only selling downloadable products and all prices are the same so default sorting isn’t needed.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @pdana!

    How do I remove additional information from checkout?

    You can use the following CSS code in your “Additional CSS” section found in the customizer view:

    .woocommerce-additional-fields {
      display: none;
    }

    How do I remove default sorting of products.

    You’ll find some code to do that here:

    https://businessbloomer.com/woocommerce-remove-default-sorting-dropdown/

    Cheers!

    Thread Starter pdana

    (@pdana)

    The additional css code worked.

    However the removal of the default sorting didn’t. Is there another way?

    Rynald0s

    (@rynald0s)

    Automattic Happiness Engineer

    Hi @pdana!

    Please link me to your site, thanks.

    Cheers!

    Thread Starter pdana

    (@pdana)

    Are you just another user or a plugin developer? My website isn’t live. You’d need my log in details

    Hi @pdana,

    We’re Happiness Engineers that work for WooCommerce.com. Since this is a public forum we don’t have a way to safely get and view private information like login details. That’s a limitation of the forums here.

    It’s possible that the theme has a different hook where this is added. Storefront does that which is why the post mentions how to remove the sorting with it separately. You could search through the theme’s code for this woocommerce_catalog_ordering and see if it is present. That could point you where to remove it.

    Another option might be to hide the ordering drop-down with CSS. You could add something like this to the Additional CSS section of the customizer.

    
    .woocommerce-ordering {
        display: none;
    }
    

    The order would still be set in the customizer, but that would take out the control for the customer to alter it.

    Let me know if I can help out.

    Cheers,

    Thread Starter pdana

    (@pdana)

    .woocommerce-ordering {
    display: none;
    }
    WORKED! Thanks

    • This reply was modified 5 years, 7 months ago by pdana.
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove additional information from checkout & remove default sorting of products’ is closed to new replies.