Title: wordpressfab's Replies | WordPress.org

---

# wordpressfab

  [  ](https://wordpress.org/support/users/wordpressfab/)

 *   [Profile](https://wordpress.org/support/users/wordpressfab/)
 *   [Topics Started](https://wordpress.org/support/users/wordpressfab/topics/)
 *   [Replies Created](https://wordpress.org/support/users/wordpressfab/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/wordpressfab/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/wordpressfab/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/wordpressfab/engagements/)
 *   [Favorites](https://wordpress.org/support/users/wordpressfab/favorites/)

 Search replies:

## Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP fail2ban - Advanced Security] oembed_response_data error on 4.2.7 version of WP Fail2ban](https://wordpress.org/support/topic/oembed_response_data-error-on-4-2-7-version-of-wp-fail2ban/)
 *  Thread Starter [wordpressfab](https://wordpress.org/support/users/wordpressfab/)
 * (@wordpressfab)
 * [6 years, 8 months ago](https://wordpress.org/support/topic/oembed_response_data-error-on-4-2-7-version-of-wp-fail2ban/#post-11984173)
 * Thanks for the quick fix !
 * I confirm that the error no longer occurs after upgrading to 4.2.7.1.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Access Manager] Bugs in portfolio settings and group name after update to 2.01 & database update](https://wordpress.org/support/topic/bugs-in-portfolio-settings-and-group-name-after-update-to-2-01-database-update/)
 *  Thread Starter [wordpressfab](https://wordpress.org/support/users/wordpressfab/)
 * (@wordpressfab)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/bugs-in-portfolio-settings-and-group-name-after-update-to-2-01-database-update/#post-9068745)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Custom Product Tabs for WooCommerce] How to remove custom tab title](https://wordpress.org/support/topic/how-to-remove-custom-tab-title/)
 *  [wordpressfab](https://wordpress.org/support/users/wordpressfab/)
 * (@wordpressfab)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/how-to-remove-custom-tab-title/#post-8695579)
 * Hi !
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Listo] Sorting the list](https://wordpress.org/support/topic/sorting-the-list/)
 *  [wordpressfab](https://wordpress.org/support/users/wordpressfab/)
 * (@wordpressfab)
 * [9 years, 7 months ago](https://wordpress.org/support/topic/sorting-the-list/#post-8345246)
 * In case [@designgr82](https://wordpress.org/support/users/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)