Listify/WP Job Manager title error

#10702
  • Resolved CloudPress
    Rank Math business
    Content AI Starter

    Despite troubleshooting Title options, the parent listing page for Listify theme displays WP Job Manager’s ‘job_listing’ in the title rather than the original page title, menu title or optimised title.

Viewing 13 replies - 1 through 13 (of 13 total)
  • Hello,

    Thank you for contacting Rank Math and sorry for any inconvenience that might have been caused due to that.

    Your site requires an authentication code to login, would you mind disabling this feature so that I can login and check this issue for you?

    Looking forward to helping you. Thank you.

    ​​​​​​​

    Hi Michael,

    To be clear, are you requesting admin back end access?

    If so, can you supply an email address and I will provide you with an account.

    Regards,
    Peter

    Hi Jenny,

    Thanks for the follow up.

    I have now been able to login with your access. We might need to add some code to your functions.php file to dynamically modify the title and descriptions on the listings page.
    Please elevate my access so that I can edit your theme files or share some FTP access so that we can make the necessary changes.

    We are looking forward to helping back. Thank you.

    Hi Michael,

    File editing has been enabled. Thanks for your help.

    Hi Jenny,

    Thanks for the follow up.

    I have added the following code on your functions.php file to set the listings page title to the sitename and you can use it to set a custom description for this page as well:

    /**
     * Filter to change the Listings page title.
     * 
     * @param string $title
     */
    add_filter( 'rank_math/frontend/title', function( $title ) {
    	global $post;
    	if ($_SERVER['REQUEST_URI'] =="/listings/" ) {
    		//$title = wp_strip_all_tags( get_the_title( $post ) );
    		$title = get_option('blogname');
    		return $title;
    	}
    
    	return $title;
    });
    
    add_filter( 'rank_math/frontend/description', function( $description ) {
    	if ($_SERVER['REQUEST_URI'] =="/listings/" ) {
    		//edit this section to add a custom description
    		$description = "Add a custom description here • Margaret River Rotary Directory";
    		return $description;
    	}
    	return $description;
    });

    I hope this info helps. Thank you.

    CloudPress
    Rank Math business
    Content AI Starter

    That’s great, thanks Michael.
    By the way, do you have a beta tester accounts for any of the upcoming extensions? We’re happy to help with that. 🙂

    Hi there,

    I am glad that this worked for you 🙂

    Please join our Facebook group here for access to RC copies of the plugin https://www.facebook.com/groups/rankmathseopluginwordpress/

    Feel free to contact us for any other questions, comments or suggestions.

    Thank you.

    CloudPress
    Rank Math business
    Content AI Starter

    Hello,

    I have updated the sensitive data as requested. Can you please check further?

    Thank you.

    Hi Peter,

    Thank you for contacting Rank Math today.

    The title looks correct but it does not look like you edited the description on the code snippet: It is still displayed with the sample text:
    Page source

    We are looking forward to helping you. Thank you.

    CloudPress
    Rank Math business
    Content AI Starter

    Hi Michael, You missed the point. I’m referring to the title:
    https://www.dropbox.com/s/h31rb9j4bsvtz7a/Screenshot%202019-08-12%2014.51.25.png?dl=0

    Hi there,

    Thanks for the response.

    The Listings page looks okay from my end, screenshot below:
    Screenshot

    Please check from an incognito window on your browser. Thank you.

    CloudPress
    Rank Math business
    Content AI Starter

    Thanks Michael.

    Hello,

    We are super happy that this resolved your issue. If you have any other questions in the future, know that we are here to help you.

    If you don’t mind me asking, could you please leave us a review (if you haven’t already) on https://wordpress.org/support/plugin/seo-by-rank-math/reviews/?rate=5#new-post about your overall experience with Rank Math? We appreciate your time and patience.

    If you do have another question in the future, please feel free to create a new forum topic, and it will be our pleasure to assist you again.

    Thank you.

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

The ticket ‘Listify/WP Job Manager title error’ is closed to new replies.