Search Results for 'code'
-
Search Results
-
I started a loop with this loop opening:
<?php // Display the top topics of current forum
$args = array(
'post_type' => 'topic',
'posts_per_page' => '3',
'post_parent' => $post->ID,
'gdsr_sort' => 'thumbs',
'gdsr_ftvmin' => '1',
'gdsr_order' => 'desc',
'order' => 'DESC'
);
?>
<?php endif; ?>
<div class="entry-list-all">
<?php do_action( 'bbp_template_before_topics_loop' ); ?>
<?php query_posts( $args ); ?>
<?php while ( have_posts() ) : the_post(); ?>…
All bbpress elements appear except those that display the author’s picture:
<?php printf( __( 'Started by: %1$s', 'bbpress' ), bbp_get_topic_author_link( array( 'size' => '14' ) ) ); ?>and
<?php bbp_author_link( array( 'post_id' => bbp_get_topic_last_active_id(), 'size' => 14 ) ); ?>They used to display in bbpress beta.
Is there any way to display them again?
I am using BbPress plugin forum for WordPress.
When I create new topic it has a field for tags, which I enter with commas between normally.
THE THING IS THE TAGS DON’T DISPLAY ANYWHERE ON FORUM.
I think before I updated, the tags appeared on top of the page when reading discussion, but now there are’n there, anywhere.
DID I MESS THE CODE, or are tags not displayed anymore in the new versions of bbpress WordPress plugin?
Topic: General Forums don't show
I don’t get bbPress with WP and BuddyPress to work properly – maybe because I don’t understand the central point (and yes, I read everything I could get hold of

My configuration:
WordPress 3.2.1.
BuddyPress 1.5.2 beta
bbPress 2.0-rc-2
site http://www.nadelspiel.com/clubneu/
BP 1.5.2 beta included a complete bbPress folder within the directory /buddypress/bp-forums,
I was able to run the install/setup through BP administration.
On the site I see group forums only.
I am confused as of having to install the bbPress Plugin too. Because if I do, the forums administration shows up in my WP control panel. But still the general forums don’t show in the frontend.
So, what am I missing? I am really desperate!
Thank you for your help, kind regards from Austria,
eliZZZa
I brought this issue up a while back, but it’s still present in 2.0-rc-2.
In bbpress.pot, the original strings are:
This forum contains %1$s and %2$s.This category contains %1$s and %2$s.
With bbPress 2.0-rc-2 fully translated, these phrases seem to use hard-coded English for the words
topic/topicsandreply/replies.Translated to Norwegian, the finished phrases will thus be:
Dette forumet inneholder 0 topics og 0 replies.Denne kategorien inneholder 0 topics og 0 replies.
When they should be:
Dette forumet inneholder 0 tråder og 0 svar.Denne kategorien inneholder 0 tråder og 0 svar.
Hi, I am using a custom theme, which I am not the author of. I have, however, made quite a few changes to the css of my current theme. In order to try and fully integrate the bbpress plugin, I tried to set up a child theme (according to JJJ instructions), but it seems that my current theme just doesn’t support one. My question is, where do I go from here?
The other interesting thing is that I changed from a standalone bbpress to the plugin, and imported all of our topics, post, etc. just fine. What also appeared, surprisingly, was the custom edits we had made to our standalone bbpress forum. Can someone tell me how/where it is pulling these codes/styles from?
Thanks in advance!!
gogo-gringo.com
gogo-gringo.com/forum
I get the following (code on the bottom) errors before installation. I can get the setup going, but the final install, after step 3 fails. I get the following message:
“The database failed to install. You may need to replace bbPress with a fresh copy and start again.”
error code:
Deprecated: Assigning the return value of new by reference is deprecated in /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php on line 1283
Deprecated: Assigning the return value of new by reference is deprecated in /usr/www/users/zensmart/comicbookusers/forum/bb-includes/functions.bb-l10n.php on line 484
Warning: Cannot modify header information - headers already sent by (output started at /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php:1283) in /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php on line 393
Deprecated: Assigning the return value of new by reference is deprecated in /usr/www/users/zensmart/comicbookusers/forum/bb-includes/backpress/pomo/mo.php on line 171
Warning: Cannot modify header information - headers already sent by (output started at /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php:1283) in /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php on line 393
Warning: Cannot modify header information - headers already sent by (output started at /usr/www/users/zensmart/comicbookusers/forum/bb-admin/includes/class.bb-install.php:1283) in /usr/www/users/zensmart/comicbookusers/forum/bb-includes/functions.bb-core.php on line 1136Topic: Help a new member
How come I cannot start a new topic here at bbpress? Can someone help me with this? Tons of thanks
Topic: Force WP Registration
I heard I can place my WP registration URL in this code below, overwriting the old code, to reroute my forum users to register on my WP site instead of using bbPress registration. My forum and site are already linked. Everything is good to go other than this minor issue. Can anyone help/advise? Thanks…
<form class=”login” method=”post” action=”<?php bb_uri( ‘bb-login.php’, null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS ); ?>”>
<div class=”loginformtop”>
<div class=”usernamelogin”>
<label>
<input value=”<?php _e(‘Username’); ?>” onfocus=”if(this.value=='<?php _e(‘Username’); ?>’){this.value=”;}” onblur=”if(this.value==”){this.value='<?php _e(‘Username’); ?>’;}” name=”user_login” type=”text” id=”quick_user_login” size=”13″ maxlength=”40″ value=”<?php if (!is_bool($user_login)) echo $user_login; ?>” tabindex=”1″ />
</label>
</div>
<div class=”passwordlogin”>
<label>
<input value=”<?php _e(‘Password’); ?>” onfocus=”if(this.value=='<?php _e(‘Password’); ?>’){this.value=”;}” onblur=”if(this.value==”){this.value='<?php _e(‘Password’); ?>’;}” name=”password” type=”password” id=”quick_password” size=”13″ maxlength=”40″ tabindex=”2″ />
</label>
<label class=”rememberme”>
<?php _e(‘Remember me’); ?>
<input name=”remember” type=”checkbox” id=”quick_remember” value=”1″ tabindex=”3″<?php echo $remember_checked; ?> />
</label>
</div>
<input name=”re” type=”hidden” value=”<?php echo $re; ?>” />
<?php wp_referer_field(); ?>
<input type=”submit” name=”Submit” class=”submit” value=”<?php echo esc_attr__( ‘Log in »’ ); ?>” tabindex=”4″ />
<p class=”loginmeta”>
<?php
printf(
__( ‘Register – lost password?‘ ),
bb_get_uri( ‘register.php’, null, BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS ),
bb_get_uri( ‘bb-login.php’, null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS )
);
?>
</p>
</div>
</form>
