• Resolved ngospelmedia

    (@ngospelmedia)


    Hello greetings, please im using rank math seo plugin, when rankmath seo plugin is enabled, the forum seo meta titles and description will not show, but rather what will show is the page title where I added wpforo shortcode.

    But if I disabled rank math seo plugin, the forum meta title and description will show.

    Please I need help to show meta titles and description without deleting or removing rankmath seo plugin. Thanks…

    The page I need help with: [log in to see the link]

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi @ngospelmedia,
    We’ve tried to make compatible wpForo with Rank Math, but the changes in Rank Math bring new issues. At the moment Rank Math is not compatible with wpForo. You can make them compatible by putting a small code in your current active WordPress theme. Please read these support topics:

    Thread Starter ngospelmedia

    (@ngospelmedia)

    ok thanks, dough i just created a ticket at their site..

    Thread Starter ngospelmedia

    (@ngospelmedia)

    I just installed Asgaros Forum plugin, in my site to check and I saw that it works well with rank math seo, the meta title is showing, I think you guys should permanently fix this issue at your plugin, I have been using wpforo forore than 7years now, is hard to switch to Asgaros Forum plugin, because I liked wpforo more than that forum plugin.

    Thanks.

    Thread Starter ngospelmedia

    (@ngospelmedia)

    you should implement this by yourself in your plugin:

    add_action( 'wp', function() {
    	if ( ! wpforo_feature( 'seo-meta' ) ) return;
    	if ( is_wpforo_page() ) {
    		if ( defined('RANK_MATH_FILE') ) { // Rank Math SEO
    			add_filter( 'rank_math/frontend/remove_credit_notice', '__return_true' );
    			remove_all_actions( 'rank_math/head' );
    			remove_all_filters( 'pre_get_document_title', 15 );
    			add_action( 'wp_head', '_wp_render_title_tag', 1 );
    		}
    	}
    }, 11 );

    above code was given by Rank Math team…

    and it fixed it 100%

    Thread Starter ngospelmedia

    (@ngospelmedia)

    i just added this codes:

    add_action( 'wp', function() {
    	if ( ! wpforo_feature( 'seo-meta' ) ) return;
    	if ( is_wpforo_page() ) {
    		if ( defined('RANK_MATH_FILE') ) { // Rank Math SEO
    			add_filter( 'rank_math/frontend/remove_credit_notice', '__return_true' );
    			remove_all_actions( 'rank_math/head' );
    			remove_all_filters( 'pre_get_document_title', 15 );
    			add_action( 'wp_head', '_wp_render_title_tag', 1 );
    		}
    	}
    }, 11 );

    To wpforo theme functions.php and it helps..

    Plugin Author gVectors Team

    (@gvectors-team)

    Ok, thank you for sharing the code.
    Please note, that it’s better to put it in WordPress active theme functions.php file. The wpForo theme functions.php file will be updated with the next version release. The right place to put any code is the active WordPress theme functions.php file.

    Thread Starter ngospelmedia

    (@ngospelmedia)

    I know, i just did a test if it will work, and it works, if you can use that code to implement it permanently, so that we don’t add the code to our theme functions.php file.

    thanks…

    Please let us know if and when this code gets incorporated into the plug so we can remove it from the child theme functions.php file.

    Thank you for an awesome plugin.

    Plugin Support gVectors Support

    (@gvectorssupport)

    @dounsa,

    This will be added in the next version (no ETA yet).

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘My Meta Title and Description Not Showing With Seo Plugin.’ is closed to new replies.