norths
Forum Replies Created
-
Forum: Plugins
In reply to: [AdVert] Triggered fatal errorDid the other support post you replied to fix your issue?
Forum: Plugins
In reply to: [AdVert] Advert location widget breaks my sidebar completelyI am unable to duplicate the issue described and user is unable to provide additional information for troubleshooting.
Marking as resolved. If anyone else receives a similar issue, please allow me to work with you and figure out a resolution for the issue.
Forum: Plugins
In reply to: [AdVert] Plugin could not be activated because it triggered a fatal error.What are your:
- WordPress version
- AdVert version
- PHP version
If your using a PHP version below 5.4 you might receive this syntax error.
Forum: Plugins
In reply to: [AdVert] Advert location widget breaks my sidebar completelyI may need more information, but just wanted you to know I am reviewing the issue you described.
Forum: Plugins
In reply to: Plugin Load orderI’m not familiar with the particular plugins, but maybe this will help (if you want to look at the code).
There is a filer called “the_content” that some plugins use to hook into the content before its displayed. Meaning, plugins are able to add/remove from the content using this filter.
Depending on the plugin, they can choose to set the priority of this filter, and this could be helpful with the load priority issue you describe. So if you really wanted this changed, you would need to modify one of the plugins “the_content” filters priority.
This is what the filter would look like (example):
add_filter( 'the_content', 'my_the_content_filter', 10 );The number is the priority level and the lower the number, the higher the priority.
Please note, if you do opt to go this route and either plugin has an update, it will remove your changes that you’ve made.