Title: Anton Timmermans's Replies | WordPress.org

---

# Anton Timmermans

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Latest version broken](https://wordpress.org/support/topic/latest-version-broken-3/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [9 years, 6 months ago](https://wordpress.org/support/topic/latest-version-broken-3/#post-8729084)
 * We’ve just released 4.2.1 which resolves this issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] alt tag “<yoastmark](https://wordpress.org/support/topic/alt-tag-yoastmark/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/alt-tag-yoastmark/#post-8524005)
 * Hello Joel,
 * These <yoastmark> tags are inserted when using the highlighting feature of the
   plugin. The little eye you can use to mark our readability advice inside the 
   text. If they end up in your alt tags then the code added these tags there on
   accident. We try to err on the side of caution here, but it might go wrong sometimes.
 * Could you create an issue on our GitHub? We have [a guide](https://yoa.st/bugreport/)
   on how to create a GitHub issue. Things that really help tracking this bug is
   specific content that you can reproduce it with. For example, the content before
   and after there are <yoastmark> tags in the content.
 * Anton
    -  This reply was modified 9 years, 8 months ago by [Anton Timmermans](https://wordpress.org/support/users/atimmer/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Content Blocks (Custom Post Widget)] Use the loop in the widget](https://wordpress.org/support/topic/use-the-loop-in-the-widget/)
 *  Thread Starter [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/use-the-loop-in-the-widget/#post-5567826)
 * The actual point where it is going wrong is when using a social media plugin.
 * The social media plugin uses the `the_content` filter to add the social media
   buttons. In the code for adding the social media buttons there is code comparable
   like this:
 *     ```
       if ( is_page() ) {
           // Display social media buttons
       }
       ```
   
 * The problems occurs when having a sidebar on that page that has the custom post
   widget in it. `the_content` filter is called when displaying the custom post 
   but because the global `$post` variable is still set to a page object (the page
   we are on) the plugin thinks it should display the social media buttons at the
   end of the_content filter.
 * I don’t think the social media plugin is doing something unreasonable but this
   might still be a very tricky issue to fix.
 * For other people dealing with the same issue, I build a workaround to fix this
   issue. I added a shortcode to all custom blocks named `[hide_social_media_buttons]`
   then I filtered `the_content` twice, once on priority 9 and once on priority 
   11. In the first filter I remove the social media button filter if the shortcode
   is present and in the second filter I re-add the social media button filter if
   I removed it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Admin menu humility](https://wordpress.org/support/topic/admin-menu-humility/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/admin-menu-humility/page/2/#post-5260079)
 * Please consider merging this pull request to add a filter to move the menu item
   to the bottom of the menu.
    [https://github.com/Yoast/google-analytics-for-wordpress/pull/87](https://github.com/Yoast/google-analytics-for-wordpress/pull/87)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MonsterInsights - Google Analytics Dashboard for WordPress (Website Stats Made Easy)] Admin menu humility](https://wordpress.org/support/topic/admin-menu-humility/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [11 years, 11 months ago](https://wordpress.org/support/topic/admin-menu-humility/#post-5259995)
 * Completely agree with this.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Invalid argument supplied for foreach()…..](https://wordpress.org/support/topic/invalid-argument-supplied-for-foreach-30/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/invalid-argument-supplied-for-foreach-30/page/2/#post-4820040)
 * I update the submodule using the following method:
    - Remove all the files (except the .git) in the working copy of the submodule.
    - Download a new WordPress copy from [http://nl.wordpress.org](http://nl.wordpress.org).
    - Copy all downloaded files in the working copy
    - Commit this with a nice commit message, such as “WordPress 3.8.3 -> 3.9”
    - Tag this commit with the correct WordPress function, such as “tag -a 3.9”
 * In a project that has the submodule I then go to the WordPress folder, do “git
   fetch” and “git checkout 3.9”. It is a completely clean 3.9 installation of WordPress
   except for the database.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Invalid argument supplied for foreach()…..](https://wordpress.org/support/topic/invalid-argument-supplied-for-foreach-30/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/invalid-argument-supplied-for-foreach-30/#post-4820037)
 * [@samuel](https://wordpress.org/support/users/samuel/), you can achieve the same
   by just setting WP_DEBUG on false in the wp-config.php.
 * I can confirm this warning in our development environment. We update WordPress
   using a submodule with the dutch version of WordPress in it. I only see this 
   error with wp-cli and not in the WordPress admin. Nevertheless I really dislike
   warnings and notices and would like it if this was fixed.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Salesforce Add-on] [Plugin: Gravity Forms Salesforce Add-on] Lead Source not working since update](https://wordpress.org/support/topic/plugin-gravity-forms-salesforce-add-on-lead-source-not-working-since-update/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/plugin-gravity-forms-salesforce-add-on-lead-source-not-working-since-update/#post-3053831)
 * Guys, I have posted a fix for this in the other thread:
    [http://wordpress.org/support/topic/enable-salesforce-integration-missing](http://wordpress.org/support/topic/enable-salesforce-integration-missing)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Salesforce Add-on] "Enable Salesforce integration" Missing](https://wordpress.org/support/topic/enable-salesforce-integration-missing/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/enable-salesforce-integration-missing/#post-3731163)
 * I don’t know anything about salesforce itself, I only implement it for clients.
   You’d have to email salesforce about it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Salesforce Add-on] "Enable Salesforce integration" Missing](https://wordpress.org/support/topic/enable-salesforce-integration-missing/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/enable-salesforce-integration-missing/#post-3731160)
 * [SoapClient](http://php.net/SoapClient) is a build in php object so it has nothing
   to do with this plugin.
 * btw. I didn’t fix Salesforce API Add-On because I can’t test it. I only fixes
   Salesforce Web To Lead plugin.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Salesforce Add-on] "Enable Salesforce integration" Missing](https://wordpress.org/support/topic/enable-salesforce-integration-missing/)
 *  [Anton Timmermans](https://wordpress.org/support/users/atimmer/)
 * (@atimmer)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/enable-salesforce-integration-missing/#post-3731156)
 * Hello,
 * I had the same problem with the salesforce plugin, the reason it doesn’t work
   anymore is because gravityforms overhauled the settings page.
 * If you use a version management system you can use the patch I made:
    [Patch for setting](https://dl.dropboxusercontent.com/u/3222043/Wordpress/support%3Atopic%3Aenable-salesforce-integration-missing/fix_salesforce_plugin.patch)
 * If you don’t you can download the full modified plugin [here](https://dl.dropboxusercontent.com/u/3222043/Wordpress/support%3Atopic%3Aenable-salesforce-integration-missing/gravity-forms-salesforce.zip).
 * I hope this helps you and maybe Zack can use this to make a new version for everyone
   to download.

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