• Resolved dimal

    (@dimalifragis)


    Hello.

    Nice plugin you have !!

    I would like to know if it works for Pages with a Shortcode, meaning some plugin output.

    For example a Forum like wpForo.

    Thank you

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author DAEXT

    (@daext)

    Hello dimalifragis,

    Nice plugin you have !!

    Thank you very much, if you like this plugin please remember to rate in the Reviews section. This greatly helps its future development.

    I would like to know if it works for Pages with a Shortcode, meaning some plugin output.
    For example a Forum like wpForo.

    With the Advanced -> Filter Priority option value set to its default value (which is “2147483646”) the HTML generated from shortcodes, Gutenbergs blocks, or visual editor elements is parsed by the plugin, and the automatic links are applied.
    I just tested Autolinks Manager with wpForo (with all the default settings for both plugins) and the automatic links are applied.

    If instead instead you want to apply the automatic links with filters provided by WordPress or by themes and plugins you can customize and use this code:

    function add_autolinks_manager_autolinks($content){
    	require_once( ABSPATH . 'wp-content/plugins/daext-autolinks-manager/shared/class-daam-shared.php' );
    	$Autolinks_Manager_Daam_Shared = Daam_Shared::get_instance();
    	return $Autolinks_Manager_Daam_Shared->add_autolinks($content, false, 'post', false);
    }
    add_filter( 'filter_name', 'add_autolinks_manager_autolinks', 999999);

    Please note that the automatic links added with custom filter are not considered in the statistics generated in the back-end.

    Let me know if you have other questions.

    • This reply was modified 3 years, 5 months ago by DAEXT.
    • This reply was modified 3 years, 5 months ago by DAEXT.
    Thread Starter dimal

    (@dimalifragis)

    Thank you for your detailed reply. I also found that it works right with wpForo.

    I will review your plugin after a 1-2 weeks of usage, so i have a better opinion.

    But it looks nice so far.

    Thread Starter dimal

    (@dimalifragis)

    Hello.

    The plugin doesn’t really work well with wpForo. When i try to REPLY to a topic, i see several html codes from Autolink in the reply form.

    And checking the html source code with Firefox, i see a lot of red.

    Maybe you could check it out?

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Pages with shortcodes (plugins)’ is closed to new replies.