Already did it, I used the add_filter to add the title. Thanks for the well written plugin! For future reference:
/**
* Summary title
*/
add_filter('wapf/html/product_totals', 'summary_title', 40, 1 );
function summary_title($totals_html ){
echo '<h2>' . _('Totals') . '</h2>';
echo $totals_html;
}
Sadly there’s’ no filter in the field_group function for customization.
Hi @carmolim
You can always use the WordPress filter the_content if you need to change output beyond our plugin filters
I’m marking this ticket as complete because you’ve answered your own question :).
Hello @maartenbelmans could you show me an example using the the_content filter to alter the plugin?
Hello @maartenbelmans I reopened the topic, could you please show me an example?
Hi @carmolim
Sorry, we can’t really help with custom coding. Thank you for understanding!