Title: Jonas Lundman's Replies - page 2 | WordPress.org

---

# Jonas Lundman

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 77 total)

[←](https://wordpress.org/support/users/intervik/replies/?output_format=md) [1](https://wordpress.org/support/users/intervik/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/intervik/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/intervik/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/intervik/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/intervik/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/intervik/replies/page/3/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Mail Logging] Deprecated use of contextual_help](https://wordpress.org/support/topic/deprecated-use-of-contextual_help/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/deprecated-use-of-contextual_help/#post-13172417)
 * Change:
 * `add_action('contextual_help' ...`
 * **To:**
 * `add_action('current_screen', ...`
 * Remove all arguments, as for 3.3 it is not “filtered in” by adding anymore. It
   works as same as like adminbar->add by calling the current screen object. This
   is the _content_ of your function added by your action:
 *     ```
       $screen = get_current_screen();
       $help_content = '<p>Hallo world</p>';
       $screen->add_help_tab(array(
       	'id'  => 'my-contextual-screen-id',
       	'title' => 'Screen information',
       	'content' => $help_content,
       ));
       ```
   
    -  This reply was modified 5 years, 9 months ago by [Jonas Lundman](https://wordpress.org/support/users/intervik/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Made Easy] Undefined index: wpseo_og](https://wordpress.org/support/topic/undefined-index-wpseo_og/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/undefined-index-wpseo_og/#post-13170779)
 * To replace `remove_action( 'wpseo_head', array( $GLOBALS['wpseo_og'], 'opengraph'),
   30 );` You can do as follows:
 *     ```
       function intervik_wpseo_frontend_presenters($presenters){
   
       	/* return all WITHOUT Open_Graph and Twitter presenters */
   
       	if($matches = preg_grep('/Open_Graph|Twitter/', $presenters)) return array_diff($presenters, $matches);
       		else return $presenters;
   
       }
       add_filter('wpseo_frontend_presenter_classes', 'intervik_wpseo_frontend_presenters', 10, 1);
       ```
   
 * There might be other filters and solutions as well, Yoast do not provide any 
   straightforward knowledge yet. And they still link to deprecated Github solutions.
    -  This reply was modified 5 years, 9 months ago by [Jonas Lundman](https://wordpress.org/support/users/intervik/).
 *   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] add_filter(page_link) no longer working as expected on breadcrumbs](https://wordpress.org/support/topic/add_filterpage_link-no-longer-working-as-expected-on-breadcrumbs/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/add_filterpage_link-no-longer-working-as-expected-on-breadcrumbs/#post-13138213)
 * Hi, thanks for looking into this.
 * Lastes WP, Latest Yoast, only yoast active plugin. Running on our internal theme,
   since 2009…
 * The situation example is: The second breadcrumb is a parent page, and the link
   to that parent page is filtered by standard filter ‘get_page_link’. The link 
   get another url instead of its own url, in our case the href of the first subpage.
 * This is a standard scenario. The breadcrumb class $crumb[url] variable by Yoast,
   has been working fine until now.
 * The standard way of filtering permalinks get ‘sometimes’ lost when Yoast started
   to hard-core url by building their own index.
 * However, on 2 installs; we de-activate Yoast, drop tables builded by Yoast, delete
   all options by Yoast, reinstalled Yoast. Enabled Breadcrumbs, and it worked fine!
   
   Until we clicked on “please index button”. One site worked – saved the correct
   filtered breadcrumb, but the other did not – saved without the filtered values.
 * Both sites are identical (one live and the other is on dev server). After doing
   the same process again, deactivate, delete tables, activate. SOMTEIMES it works(
   correct filtered breadcrumb url) and sometimes dont.
 * It seems like it depends how you “click around” before you do the “indexing”.
   We get no consistance of this…
 * We can see inside sql dump the url is saved different for that page/ crumb, from
   time to time.
 * This is not a happy situation if we cant rely on standard filter of url when 
   crumbs building up. And everything has been working fine until that green button
   arrived…
 *   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] add_filter(page_link) no longer working as expected on breadcrumbs](https://wordpress.org/support/topic/add_filterpage_link-no-longer-working-as-expected-on-breadcrumbs/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/add_filterpage_link-no-longer-working-as-expected-on-breadcrumbs/#post-13137529)
 * EDIT, our team did report wrong, the internal filter `_get_page_link()` doesnt
   work either.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Theme Check] Please support utf-8](https://wordpress.org/support/topic/please-support-utf-8-2/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/please-support-utf-8-2/#post-12896119)
 * Same here, any progress on this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Duplicator - Backups & Migration Plugin - Cloud Backups, Scheduled Backups, & More] Possible replace utf8mb4_unicode_520_ci before package cerated?](https://wordpress.org/support/topic/possible-replace-utf8mb4_unicode_520_ci-before-package-cerated/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [6 years ago](https://wordpress.org/support/topic/possible-replace-utf8mb4_unicode_520_ci-before-package-cerated/#post-12706061)
 * Hi, and thanks for your time!
 * Well, we tried those things.
 * First “Before doing package” Database Tab:
    Compatibility Mode This option is
   only available with mysqldump mode.
 * Even if we switch to dump mode, the coll cant be set here, only msql and we dont
   wanna change that as the version is not a problem for the live servers. (Using
   Duplicator in dump mode also is buggy, gets interupted and stops most of the 
   time, php doesnt)
 * Second: Step 2 “Apply legacy collation fallback support for unknown collations
   types” is only available after the zip has been unpacked, not on pre-test database
   connection link. And we dont wanna unpack before we got the database test ok (
   mostly for client given us correct database connection information – we don wanna
   give away a install if we cant deploy it)
 * And even so, if we unpack and use the checkbox, the script as we can see, fails,
   maybe bec its trying to step backwards from unicode_520_ci directly to utf8_general_ci,
   not “utf8mb4_general_ci”, as the live server uses.
 * So its only works if we search and replace in “dup-installer” as mentioned in
   question (and in all files, only .sql file not enough, there must be in all 81
   hits in 4 files).
 * CONCLUSION:
    We need a solution -as the question- where Dublicator not “Packing”/
   creates the package, with “utf8mb4_unicode_520_ci”. Instead using the one in 
   WP_CONFIG (in our case: “utf8mb4_general_ci”)
 * As WordPress ignores WP_CONFIG, I asume Duplicator do that as well. There must
   be some way to override that? / Or filter in the coll to use?
 * Thanks for any tips on this…
 *   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] Version 11.0 Can NOT TURN OFF SCHEMA MARKUP](https://wordpress.org/support/topic/version-11-0-can-not-turn-off-schema-markup/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/version-11-0-can-not-turn-off-schema-markup/#post-11440645)
 * Not working:
    add_filter( ‘wpseo_json_ld_output’, ‘__return_false’ );
 *   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] Problem with xml sitemap in GSC](https://wordpress.org/support/topic/problem-with-xml-sitemap-in-gsc/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 1 month ago](https://wordpress.org/support/topic/problem-with-xml-sitemap-in-gsc/#post-11440566)
 * Same issue here
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups] Cant get filter (only unrestricted) to work](https://wordpress.org/support/topic/cant-get-filter-only-unrestricted-to-work/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/cant-get-filter-only-unrestricted-to-work/#post-10895786)
 * Great, looking forward to next update, when released. Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups] Cant get filter (only unrestricted) to work](https://wordpress.org/support/topic/cant-get-filter-only-unrestricted-to-work/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/cant-get-filter-only-unrestricted-to-work/#post-10890609)
 * Hi and thanks for taking time with support
 * Strange, if I choose “all posts” or “all pages” in the admin menu, I got the ‘
   admin post list table’ with the default filters: All dates, All categoies, and
   then a Select dropdown with the placeholder “Groups”, with the first option “(
   Only unrestricted)” and then my Groups…
 * I have only 50 pages, and half restricted to a group in my case. If I want to
   list all pages that NOT belongs to a group, I thought the option “(Only unrestricted)”
   whould _filter out_ restricted pages in my list.
 * It works fine to filter in/out my Groups. (Btw, the whole plugin is working great,
   and nice cean php coding too)
 * Are we still missing something here or is the filter broken?
 * / Thanks again for your contribution
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Menu Post List] Add filter to expand functionality that disappeared some update ago](https://wordpress.org/support/topic/add-filter-to-expand-functionality-that-disappeared-some-update-ago/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/add-filter-to-expand-functionality-that-disappeared-some-update-ago/#post-10711754)
 * Just updated, Yes, the hover information was great. So far, all previous hacks
   not needed.
 * Thanks Eliot
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Admin Menu Post List] Add filter to expand functionality that disappeared some update ago](https://wordpress.org/support/topic/add-filter-to-expand-functionality-that-disappeared-some-update-ago/)
 *  Thread Starter [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/add-filter-to-expand-functionality-that-disappeared-some-update-ago/#post-10705430)
 * Sounds great, Thanks.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gutenberg] Love it, but still I don’t understand](https://wordpress.org/support/topic/love-it-but-still-i-dont-understand/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [7 years, 11 months ago](https://wordpress.org/support/topic/love-it-but-still-i-dont-understand/#post-10383710)
 * I agree as well. If we have survived sa loooooong without any progress in the
   editor matter, we can really make it good this time. That means _development 
   and listen_, **feedback and development again**.
 * As an Agile process until all aspects has been considered.
 * The customizer should have become a plugin instead. When you dont need it, it
   loads a lot of shit anyway.
 * **WordPress has to go forward to scale down, not scale up with “pretty” things.**
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize Snapshots] Is this plugin replaced? Interface gone in WP 4.9.5](https://wordpress.org/support/topic/is-this-plugin-replaced-interface-gone-in-wp-4-9-5/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [8 years ago](https://wordpress.org/support/topic/is-this-plugin-replaced-interface-gone-in-wp-4-9-5/#post-10277652)
 * Hi, as mentioned tested on clean installs on diffrent versions as well. Twentysixteen,
   Latest WP, only this plugin activated. Also tried in diffrent other 3 themes/
   installs.
 * **Javascript errors on every testcase**
 * However, Let me check once again, and I come back to report.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Customize Snapshots] Is this plugin replaced? Interface gone in WP 4.9.5](https://wordpress.org/support/topic/is-this-plugin-replaced-interface-gone-in-wp-4-9-5/)
 *  [Jonas Lundman](https://wordpress.org/support/users/intervik/)
 * (@intervik)
 * [8 years ago](https://wordpress.org/support/topic/is-this-plugin-replaced-interface-gone-in-wp-4-9-5/#post-10267842)
 * No news on this? Is this plugin gonna be updated with a correct javascript?

Viewing 15 replies - 16 through 30 (of 77 total)

[←](https://wordpress.org/support/users/intervik/replies/?output_format=md) [1](https://wordpress.org/support/users/intervik/replies/?output_format=md)
2 [3](https://wordpress.org/support/users/intervik/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/intervik/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/intervik/replies/page/5/?output_format=md)
[6](https://wordpress.org/support/users/intervik/replies/page/6/?output_format=md)
[→](https://wordpress.org/support/users/intervik/replies/page/3/?output_format=md)