Simple Machines Community Forum

SMF Support => SMF 2.1.x Support => Topic started by: muratbora on August 04, 2019, 12:24:23 PM

Title: <meta name="robots" content="noindex"> for categories SMS forum
Post by: muratbora on August 04, 2019, 12:24:23 PM
<meta name="robots" content="noindex"> for categories,
I have noticed that SMS is inserting <meta name="robots" content="noindex"> for categories into META section,
This is causig to not crawl of categories...is this normal or somethin error?
How to remove "noindex" tag than?
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: Arantor on August 04, 2019, 12:25:18 PM
Link please?
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: muratbora on August 04, 2019, 12:43:40 PM
https://www.turizmtasimacilik.com/forum/servis-tasimaciligi/
https://www.turizmtasimacilik.com/forum/havaalani-tasimacilik/
*****
and all other categories under https://www.turizmtasimacilik.com/forum/
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: Arantor on August 04, 2019, 12:47:00 PM
This isn't normal, but I'm not sure if this is a bug in Pretty URLs or a bug in Optimus, or both together. It's not normal in unmodified SMF 2.1 RC2 though.
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: vbgamer45 on August 04, 2019, 12:52:08 PM
Pretty urls bug. I noticed this code added in SMF 2.1 in display.php will fix...

// Let's do some work on what to search index.
if (count($_GET) > 2)
foreach ($_GET as $k => $v)
{
if (!in_array($k, array('topic', 'board', 'start', session_name())))
$context['robot_no_index'] = true;
}

Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: muratbora on August 04, 2019, 12:54:23 PM
Where display.php located?
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: vbgamer45 on August 04, 2019, 01:05:05 PM
sources folder but it is display.php and messageindex needs updating working on it now should be done in a few minutes.
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: vbgamer45 on August 04, 2019, 01:13:27 PM
Updated posted https://custom.simplemachines.org/mods/index.php?mod=636  uninstall old version install new version.
Title: Re: <meta name="robots" content="noindex"> for categories SMS forum
Post by: muratbora on August 05, 2019, 04:42:15 AM
Done thank you!