Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: Theme problem

$
0
0

Yeah, it might have been a dns propagation issue, I didn’t think of that. It didn’t work, then you disabled bbpress and then it worked a couple of hours later (I did check a few times) then wasn’t working the next morning.

Do you have bbpress-functions.php in your WP theme folder? You could try editing that to give the correct path.

OR what you could do is just ignore the 404 and add them in separately. So workaround rather than fix. I’m guessing all your css and js files in your template directory are not getting included. But they’re there – I can see them.

This isn’t pretty and will stop working if you change themes or hosts, it’s like fixing trousers with duct tape, but it might work – you can and should keep trying to fix things in the meantime.

It goes into functions.php but don’t add using the admin area editor as if something goes wrong and you don’t have another way of editing files, you’re in deep trouble. I say that because I’m not really convinced it’s completely right, there’s no conditional logic for the js files so you need to be prepared to fix it if needs be (or ask, that’s fine, too!).

add_action('wp_enqueue_scripts', 'mjj_readd_scripts');
function mjj_readd_scripts(){
	
	wp_register_style( 'ifuture-styles', '/ifuture/plugins/bbpress/templates/default/css/bbpress.css' );
	wp_register_script( 'ifuture-editor', '/ifuture/plugins/bbpress/templates/default/js/editor.js' );
	wp_register_script( 'ifuture-reply', '/ifuture/plugins/bbpress/templates/default/js/reply.js' );
	wp_register_script( 'ifuture-topic', '/ifuture/plugins/bbpress/templates/default/js/topic.js' );
	wp_register_script( 'ifuture-user', '/ifuture/plugins/bbpress/templates/default/js/user.js' );	

	wp_enqueue_script( 'ifuture-editor' );
	wp_enqueue_script( 'ifuture-reply' );
	wp_enqueue_script( 'ifuture-topic' );
	wp_enqueue_script( 'ifuture-user' );
	
	
	wp_enqueue_style( 'ifuture-styles' );
	
}

Viewing all articles
Browse latest Browse all 3638

Trending Articles