wordpressfab
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Thanks for the quick fix !
I confirm that the error no longer occurs after upgrading to 4.2.7.1.
Hi,
Thanks for your quick reply, and sorry for my late one, and also not to have followed the github procedure. Meanwhile, update 2.03 fixed the portfolio setting problem. I’ll submit the special char in group name problem on github.Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] How to remove custom tab titleHi !
A better way to remove the title than the above link would be to add the following lines to your functions.php
add_filter( 'yikes_woocommerce_custom_repeatable_product_tabs_heading', 'remove_yikes_woocommerce_custom_tab_heading' ); function remove_yikes_woocommerce_custom_tab_heading() { return ''; }This will properly remove the title from the page instead of hiding it to the browser with “display:none”. It’s more elegant and more SEO friendly.
Forum: Plugins
In reply to: [Listo] Sorting the listIn case @designgr82 or anybody else is still looking for a solution to this, here is the code to add to your function.php in order to sort the list :
function wpcf7_listo_ordered( $data) { sort($data); return $data; } add_filter( 'wpcf7_form_tag_data_option', 'wpcf7_listo_ordered', 11, 1 );
Viewing 4 replies - 1 through 4 (of 4 total)