Re: Change the name of the blogs folder
Been having a look at it, could it be something to do with the code I was given?
function blog_to_video($c){
$c = ‘videos’;
return $c;
}
add_filter(‘bp_blogs_slug’,’blog_to_video’);
Thats the code I got from here, but should it not be:
function blog_to_video($c){
$c = ‘videos’;
return $c;
}
add_filter(‘HOME_BLOG_SLUG’,’blog_to_video’);