Home › Forums › Pro Support › Load More translate and styling › Reply To: Load More translate and styling
May 29, 2018 at 9:03 pm
#4734
Keymaster
Hi there,
You’d need to use a filter for that currently:
add_filter( 'wpsp_ajax_load_more', 'tu_custom_load_more_text' );
function tu_custom_load_more_text() {
return 'Load more text';
}
The load more button inherits the read more button styling right now. You can target the class with CSS and adjust it as needed though.
Let me know if you need more info 🙂