Title: Plugin Priority Issue
Last modified: December 2, 2016

---

# Plugin Priority Issue

 *  Resolved [arctrinity](https://wordpress.org/support/users/arctrinity/)
 * (@arctrinity)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/plugin-priority-issue/)
 * I’m getting the error “Something is preventing AddToAny from loading. Try disabling
   content blockers such as ad-blocking add-ons, or try another web browser.”. I
   found the thread stating to add:
 *     ```
       remove_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
       add_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 39 );
       ```
   
 * and added that into my custom functions php but it didn’t fix the issue. The 
   theme author suggested using 15 instead of 39 but that didn’t work.
 * I did find some documentation for my theme stating to add this custom php for
   another similar add on and it appears to be slightly different. I changed the
   theme name to ‘A2A_SHARE_SAVE_add_to_content’ but that didn’t work either. (I
   changed the plugin name they suggestion to “another plugin”)
 *     ```
       <?php
       // Change priority for another plugin
       if ( function_exists( 'another_plugin' ) ) {
       remove_filter( 'the_content', 'another_plugin');
       add_filter( 'the_content', 'another_plugin', 15 );
       }
       ?>
       ```
   
 * Any suggestion would be greatly appreciated. Thank you!
    -  This topic was modified 9 years, 6 months ago by [arctrinity](https://wordpress.org/support/users/arctrinity/).

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

 *  Thread Starter [arctrinity](https://wordpress.org/support/users/arctrinity/)
 * (@arctrinity)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/plugin-priority-issue/#post-8508255)
 *     ```
       <?php
       // Change priority for addtoany
       if ( function_exists( 'A2A_SHARE_SAVE_add_to_content' ) ) {
       remove_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content');
       add_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 15 );
       }
       ?>
       ```
   
 * That’s what I tried, also tried adding the 98. Didn’t work. Just stuck…
 *  Plugin Author [micropat](https://wordpress.org/support/users/micropat/)
 * (@micropat)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/plugin-priority-issue/#post-8508502)
 * “Something is preventing AddToAny from loading” is not a plugin priority issue.
   Plugin priority is for rearranging existing plugin content, such as having a 
   Related Posts section appear above or below your AddToAny buttons.
 * The issue probably has to do with your browser, device, or connection, so do 
   what the message says and try disabling your browser’s add-ons/extensions, and
   anything that might block/filter out major social buttons. On arctrinity.com,
   the buttons are successfully displaying for visitors right now.
 *  Thread Starter [arctrinity](https://wordpress.org/support/users/arctrinity/)
 * (@arctrinity)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/plugin-priority-issue/#post-8509262)
 * Wow it was that easy huh? Thank you so much!! I had an extension that filled 
   in passwords automatically called ‘Blur’, I disabled it and it worked right away.
   Thanks again so much! So glad we have people like you to help the community. 
   I honestly never had an issue with browser extensions before so I thought the
   only possibility could be the priority. Thank you thank you!!

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

The topic ‘Plugin Priority Issue’ is closed to new replies.

 * ![](https://ps.w.org/add-to-any/assets/icon.svg?rev=972738)
 * [AddToAny Share Buttons](https://wordpress.org/plugins/add-to-any/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/add-to-any/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/add-to-any/)
 * [Active Topics](https://wordpress.org/support/plugin/add-to-any/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/add-to-any/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/add-to-any/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [arctrinity](https://wordpress.org/support/users/arctrinity/)
 * Last activity: [9 years, 6 months ago](https://wordpress.org/support/topic/plugin-priority-issue/#post-8509262)
 * Status: resolved