The MoreConvert WooCommerce Wishlist Table provides a convenient way for users to view and manage their wishlist items. If you want to customize the default “Read More” and “Select Options” text displayed in this table and all other MorConvert Lists tables, this article will guide you through the process.
1. Changing the “Read More” Text #
To modify the “Read More” text in the WooCommerce Wishlist Table, follow these steps:
- Access your WordPress theme’s directory.
- Locate the functions.php file.
- Insert the following code snippet into the functions.php file:
add_filter( 'wlfmc_read_more_text', function() {
return 'custom text';
});
- Replace ‘custom text’ with your desired text.
- Save the functions.php file.
2. Changing the “Select Options” Text #
To modify the “Select Options” text in the WooCommerce Wishlist Table, follow these steps:
- Access your WordPress theme’s directory.
- Locate the functions.php file.
- Insert the following code snippet into the functions.php file:
add_filter( 'wlfmc_select_options_text', function() {
return 'custom text';
});
- Replace ‘custom text’ with your desired text.
- Save the functions.php file.