Forum Replies Created
-
In reply to: remove rel=nofollow from bbpress posts
If anyone is looking for this, here is the answer:
In reply to: Turning no-follow links to do-followThanks dude. you saved me.
In reply to: remove rel=nofollow from bbpress postsHi
It didnt work. can you look at the code to see if something is not configured correctly?this is how the code looks like after I edited Theme Functions (functions.php) from within the WP dashboard>appearance>editor:
<?php
remove_filter( ‘bbp_get_reply_content’, ‘bbp_rel_nofollow’ );
remove_filter( ‘bbp_get_topic_content’, ‘bbp_rel_nofollow’ );
remove_filter( ‘bbp_get_reply_author_link’, ‘bbp_rel_nofollow’ );
remove_filter( ‘bbp_get_topic_author_link’, ‘bbp_rel_nofollow’ );require_once TEMPLATEPATH . ‘/lib/Themater.php’;
$theme = new Themater(‘HealthPress’);
$theme->options[‘includes’] = array(‘featuredposts’);$theme->options[‘plugins_options’][‘featuredposts’] = array(‘hook’ => ‘main_before’, ‘image_sizes’ => ‘930px. x 300px.’, ‘effect’ => ‘fade’);
if($theme->is_admin_user()) {
$theme->admin_options[‘Ads’][‘content’][‘header_banner’][‘content’][‘value’] = ‘‘;}
…In reply to: remove rel=nofollow from bbpress postsHi Gautam
Im rather new to this.
in wordpress dashboard I went to appearance>editor>Theme Functions (functions.php)where exactly in the code should I enter the code you indicated?
thanks.
In reply to: Turning no-follow links to do-followpeowdie thanks, works like charm.