Hi,
I have a form to collect personal info, then have a page to display those submissions. I know Joomla menu can prevent Google not to index by assigns on the menu item "no follow, no index". Since the view result page doest not have the menu item, it is just a link to view the submission. For example
http://mywebsite.com/component/chronoconnectivity/myformname
Please advise.
Thank you,
Nilubon
I have a form to collect personal info, then have a page to display those submissions. I know Joomla menu can prevent Google not to index by assigns on the menu item "no follow, no index". Since the view result page doest not have the menu item, it is just a link to view the submission. For example
http://mywebsite.com/component/chronoconnectivity/myformname
Please advise.
Thank you,
Nilubon
Hi Nilubon,
If you want to make the settings for all pages on your site you can do that in Site Admin | Global Configuration | Site
For a ChronoForm or ChronoConnectivity page you can add custom code like this:
Bob
If you want to make the settings for all pages on your site you can do that in Site Admin | Global Configuration | Site
For a ChronoForm or ChronoConnectivity page you can add custom code like this:
<?php
$doc = JFactory::getDocument();
$doc->setMetaData( 'robots', 'nofollow' );
$doc->setMetaData( 'robots', 'noindex' );
?>
Bob
Hi Bob,
Thank you for your suggestion. I want to double check if I understand correctly. For Chronoforms, I need to put your code on On Load. For Chronoconnectivity, I need to put it on Header section on Custom Listing Settings. Sound right to you?
Thank you,
Nilubon
Thank you for your suggestion. I want to double check if I understand correctly. For Chronoforms, I need to put your code on On Load. For Chronoconnectivity, I need to put it on Header section on Custom Listing Settings. Sound right to you?
Thank you,
Nilubon
This topic is locked and no more replies can be posted.