Site gone down from search result.

#5583
Viewing 15 replies - 1 through 15 (of 28 total)
  • Hello,

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

    This may result from some incorrect plugin settings. Would you mind checking whether the some of your pages have been set to noindex on the RM > Titles & Meta > Global meta page and whether your sitemap has been indexed on GSC?
    Could you also check from your Google analytics whether the loss in ranking coincides with the period when you installed RM? Google recently released some updates that might have affected your site.

    Looking forward to helping you. Thank you.

    ​​​​​​​

    Hi,

    I have checked all those settings, and no issues found, and today I sow just the home page has come if I search the exact sitename in google.

    Also can you tell me how can I remove the feeds urls, because my cache plugin already removed it for speeding up the site so google shows continues errors. could you please tell how to block the feeds in sitemap ?

    If needed, I can supply the login dtails so you can have a check if any settings are wrong from my end.

    Thanks in advance,
    Sajesh

    Hi there,

    We might need to take a closer look at the settings. Please edit the first post on this ticket and include your WP logins in the designated Sensitive Data section.
    Sensitive Data Section

    It is completely secure and only our support staff has access to that section. If you want, you can use the below plugin to generate a temporary login URL to your website and share that with us instead:

    https://wordpress.org/plugins/temporary-login-without-password/

    You can use the above plugin in conjunction with the WP Security Audit Log to monitor what changes our staff might make on your website (if any):

    https://wordpress.org/plugins/wp-security-audit-log/

    We really look forward to helping you.

    Hello,

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

    Thank you.

    Todd
    Rank Math free

    Hi Aesell,

    I do not see any drop in your organic traffic recently: http://i.mythemeshop.com/kV149m

    I see your website ranking on number 4 spot for a fairly competitive keyword as well:
    ranking

    If you could tell us which pages exactly you are talking about and which keywords you are trying – we will be in a better position to help.

    Thank you.

    Dear Team,

    Thank you for the mail, Now I am happy to see that few keywords has come, I was trying many settings on RM, let me wait and see the progress…

    1) I had one another questing for disabling feeds in sitemap ? How ?
    2) Please see the below image
    https://d.pr/free/i/tuIoIc
    The page Title Should be %ListingCat% for sale in %ListingLoc%
    But the Listing category and Location is missing on titles – Can I solve it ?

    HI Aesell,

    Thanks for the questions.

    1). You can filter the entries that are added to your sitemap and remove the feed URLs by making use of the following filter in your functions.php file:

    /**
     * Filter URL entry before it gets added to the sitemap.
     *
     * @param array  $url  Array of URL parts.
     * @param string $type URL type. Can be user, post or term.
     * @param object $object Data object for the URL.
     */
    add_filter( 'rank_math/sitemap/entry', function( $url, $type, $object ){
    	return $url;
    }, 10, 3 );

    2). We are looking into this issue and we will be getting back to you in a short while.

    We appreciate your patience.

    Thank you,

    Hope it wont affect the speed of my site? also I need to wait to take effect on google webmaster tools.

    Thank you for the help.

    Hi there,

    Thanks for the follow up.

    No it won’t affect the speed. You can also submit a link removal request to Google to remove the feed URLs from the search results: https://www.google.com/webmasters/tools/removals

    I hope this info helps. Thank you.

    Dear Michael Davis,

    Can I get the update for the 2nd question ? have you found a solution yet?
    —–
    2) Please see the below image
    https://d.pr/free/i/tuIoIc
    The page Title Should be %ListingCat% for sale in %ListingLoc%
    But the Listing category and Location is missing on titles – Can I solve it ?

    Todd
    Rank Math free

    Hi,

    2. Can you please let us know where those variables are coming from? Are you using a specific plugin to populate those fields?

    If so, can you please link us to that plugin or better yet, ask the plugin developer if they provide a different variable for use within SEO plugins?

    You can also register a custom variable following this ticket: https://support.rankmath.com/ticket/register-a-custom-template-variable/

    Hope that helps and please do not hesitate to let us know if you need our assistance with anything else.

    Michael Davis helped me to create custom variable. I do not use any plugin, just RM and my Theme(Wilcity)

    Mr.Michael Davis Already has my details

    Hi there,

    Thanks for the response.

    The same code works on my end but I cannot seem to identify what is preventing the same code from executing on the frontend on your site.
    We will be investigating this further and then get back to you.

    We appreciate your patience.

    Okay,

    Please update me ASAP

    Hello,

    There was a bug in the code which you added in the theme’s functions.php file. To fix it, I logged into your site and I changed the existing replacement code with:

    
    add_action( 'rank_math/vars/register_extra_replacements', 'register_my_replacements' );
    function register_my_replacements() {
    		RankMath\Helper::register_var_replacement(
    			'listingCat','RMPrimaryCategoryToListingCallback',
    			array(
    				'name'    => esc_html__( 'Listing Category', 'rank-math' ),
    				'desc'    => esc_html__( 'Category of the current listing', 'rank-math' ),
    				'example' => RMPrimaryCategoryToListingCallback(),
    			)
    		);}
    
    function RMPrimaryCategoryToListingCallback(){
    	global $post;
    	$post_id = is_admin() ? $_GET['post'] : $post->ID;
    	$termID = \WilokeListingTools\Framework\Helpers\GetSettings::getPrimaryTermIDOfPost($post_id, 'listing_cat');
    	//$termcat = wp_get_post_terms('4860', 'listing_cat', array("fields" => "names"));
    	//return $termcat;
    
    	if ( !empty($termID) ){
          $oTerm = get_term($termID, 'listing_cat'); 
          if ( !empty($oTerm) && !is_wp_error($oTerm) ){
    		  return $oTerm->name;
             
          }
       }
    
    }
    
    add_action( 'rank_math/vars/register_extra_replacements', function() {
       RankMath\Helper::register_var_replacement( 'listingLoc', 'RMPrimaryLocationToListingCallback',
    		array(
    	        'name'    => esc_html__( 'Listing Location', 'rank-math' ),
    			'desc'    => esc_html__( 'Location of the current listing', 'rank-math' ),
    			'example' => esc_html__(RMPrimaryLocationToListingCallback())
    		));
    	
    	
    } );
    
    function RMPrimaryLocationToListingCallback(){
    	global $post;
    	$post_id = is_admin() ? $_GET['post'] : $post->ID;
    
    	$termID = \WilokeListingTools\Framework\Helpers\GetSettings::getPrimaryTermIDOfPost($post_id, 'listing_location');
    	$termID = 10;
    	if ( !empty($termID) ){
          $oTerm = get_term($termID, 'listing_location'); 
          if ( !empty($oTerm) && !is_wp_error($oTerm) ){
             return $oTerm->name;
          }
       }
    
    }
    

    Now the title shows Listing category and location.

    Hope that helps. Thank you.

    • This reply was modified 4 years, 11 months ago by Pratik.
Viewing 15 replies - 1 through 15 (of 28 total)

The ticket ‘Site gone down from search result.’ is closed to new replies.