Forum Replies Created
-
In reply to: wordpress integration – login …In reply to: WordPress access to bbPress Functions
I want to display login, pass of BBP in WP.
Here is my post:
https://bbpress.org/forums/topic/wordpress-integration-login
have you found another solution?
In reply to: wordpress integration – login …to display login, pass from BBPress in WP.
one solution is to use something like this (directly where you want to see it)
<iframe src=”mylogin.php” style=”width: 600px; height: 60px”
scrolling=”no” marginwidth=”0″ marginheight=”0″ frameborder=”0″ vspace=”0″ hspace=”0″>
</iframe>
login.php :
<?php
require_once(‘/home2/bulbpark/public_html/autograph/test/bbp/bb-load.php’);
if ( !in_array( bb_get_location(), array( ‘login-page’, ‘register-page’ ) ) ) login_form();
?>
Enjoy
dear _ck_,
i did as you suggested with adding
<?php require(‘/local-path-to-bbpress/bb-load.php’); ?>
to wordpress but it conflicts with wp-admin.
any idea how to resolve this?
https://bbpress.org/forums/topic/wordpress-integration-login#post-55751
In reply to: wordpress integration – login …In reply to: wordpress integration – login …In reply to: wordpress integration – login …well, yes that was exactly what i tried to do. but when i add in wp_config.php the following require_once(‘address/bb-load.php’);
it works but messes up wp-admin layout..
any idea hot to integrate properly?
thanks