really have you disabled them both?
and how?
Yes, piece of the proverbial.
To disable WAP, change index.php
if (!defined('WIRELESS'))
define('WIRELESS', isset($_REQUEST['wap']) || isset($_REQUEST['wap2']) || isset($_REQUEST['imode']));if (!defined('WIRELESS'))
define('WIRELESS', false);Disabling print page is trivial too. Only takes two changes.
1. Display.template.php - and you'll need to do this in all themes that have their own Display.template.php
'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'),/* 'print' => array('text' => 'print', 'image' => 'print.gif', 'lang' => true, 'custom' => 'rel="new_win nofollow"', 'url' => $scripturl . '?action=printpage;topic=' . $context['current_topic'] . '.0'), */Then remove the line from index.php which refers to printpage.
As far as Google results go, I never worried about them, I only ever applied these before the site ever launched, so I never had a duplication problem. In your case, the WAP stuff will just fade out of the index over time because of how it's implemented, the print page will all just refer to the board index, but you can probably fix that in .htaccess rewrite rules (more effort than I can be bothered with right this moment in time)