• Resolved janfrancioni

    (@janfrancioni)


    I want edit the values or remove someone of dropdown woocommerce in shop page. How to do this?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Check the “woocommerce_catalog_orderby” documentation.
    E.G.

    add_filter('woocommerce_catalog_orderby','remove_unwanted_orderby_options'); function remove_unwanted_orderby_options($sortby){unset($sortby['popularity']);
    return $sortby; }

    Hi @janfrancioni,

    Thank you for reaching out.

    So that we can be able to assist you accordingly, could you please share more context on what you’re trying to achieve?

    Looking forward to your reply.

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.