Hello,
Now I have checked your categories pages and there is no “sort by alphabetical” drop-down situated: https://ibb.co/FLcKSxrT
Regarding renaming “Default sorting” to “Sort by alphabetical” only on category pages, this functionality is not available in the theme by default. However, I found the following code from a search and tested it on our test site—it works as expected.
You can add this code to your functions.php file:
function custom_rename_default_sorting( $sort_options ) {
if ( is_product_category() ) {
if ( isset( $sort_options['menu_order'] ) ) {
$sort_options['menu_order'] = __( 'Sort by alphabetical', 'woocommerce' );
}
}
return $sort_options;
}
add_filter( 'woocommerce_catalog_orderby', 'custom_rename_default_sorting' );
If this does not work on your site, additional customization may be required, as code customization is beyond the scope of our theme support.
Best Regards,