Title: Remove From
Last modified: September 5, 2019

---

# Remove From

 *  Resolved [Bernardo Klock](https://wordpress.org/support/users/bernardklock/)
 * (@bernardklock)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/remove-from-2/)
 * Hello Robin! First of all, congrats for this awesome plugin! It helps a lot.
 * I need to adjust the heading of the block removing the <h3> tag, as you can see
   bellow:
 * [http://prntscr.com/p27rif](http://prntscr.com/p27rif)
 * Tried to find on every php file, but couldn’t get it.
 * What is the file to change it?
 * Thank you.

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

 *  Plugin Author [Robin Cornett](https://wordpress.org/support/users/littlerchicken/)
 * (@littlerchicken)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/remove-from-2/#post-11902739)
 * You can change that using the `scriptlesssocialsharing_heading_element` filter.
   If you don’t want it to be a heading, you can convert it to a `div` element, 
   for example:
 *     ```
       add_filter( 'scriptlesssocialsharing_heading_element', 'rgc_change_heading_to_div' );
       /**
        * Change the default h3 to a div element.
        *
        * @return string
        */
       function rgc_change_heading_to_div() {
       	return 'div';
       }
       ```
   
 * Hope that helps you get started–
 *  Thread Starter [Bernardo Klock](https://wordpress.org/support/users/bernardklock/)
 * (@bernardklock)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/remove-from-2/#post-11903688)
 * Awesome helping. Thanks a lot.

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

The topic ‘Remove From’ is closed to new replies.

 * ![](https://ps.w.org/scriptless-social-sharing/assets/icon-256x256.jpg?rev=1361689)
 * [Scriptless Social Sharing](https://wordpress.org/plugins/scriptless-social-sharing/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/scriptless-social-sharing/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/scriptless-social-sharing/)
 * [Active Topics](https://wordpress.org/support/plugin/scriptless-social-sharing/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/scriptless-social-sharing/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/scriptless-social-sharing/reviews/)

## Tags

 * [fast](https://wordpress.org/support/topic-tag/fast/)
 * [h3](https://wordpress.org/support/topic-tag/h3/)
 * [heading](https://wordpress.org/support/topic-tag/heading/)
 * [load time](https://wordpress.org/support/topic-tag/load-time/)
 * [social](https://wordpress.org/support/topic-tag/social/)
 * [speed](https://wordpress.org/support/topic-tag/speed/)

 * 2 replies
 * 2 participants
 * Last reply from: [Bernardo Klock](https://wordpress.org/support/users/bernardklock/)
 * Last activity: [6 years, 7 months ago](https://wordpress.org/support/topic/remove-from-2/#post-11903688)
 * Status: resolved