Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,051 through 14,075 (of 64,515 total)
  • Author
    Search Results
  • #166286
    klmnweb
    Participant

    Hi,

    I am making a shortcode for bbpress use profile and here is the function

    add_shortcode('myprofile', 'show_bb_profile');
    function show_bb_profile() {
    ob_start() ?>
    
    <?php do_action( 'bbp_template_before_user_details' ); ?>
    
    	<div id="bbp-single-user-details">
    		<div id="bbp-user-avatar">
    
    			<span class='vcard'>
    				<a class="url fn n" href="<?php bbp_user_profile_url( get_current_user_id()); ?>" title="<?php bbp_displayed_user_field( 'display_name' ); ?>" rel="me">
    					<?php echo get_avatar( bbp_get_displayed_user_field( 'user_email', 'raw' ), apply_filters( 'bbp_single_user_details_avatar_size', 150 ) ); ?>
    				</a>
    			</span>
    
    		</div><!-- #author-avatar -->
    
    		<div id="bbp-user-navigation">
    			<ul>
    				<li class="<?php if ( bbp_is_single_user_profile() ) :?>current<?php endif; ?>">
    					<span class="vcard bbp-user-profile-link">
    						<a class="url fn n" href="<?php bbp_user_profile_url( get_current_user_id()); ?>" title="<?php printf( esc_attr__( "%s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>" rel="me"><?php _e( 'Profile', 'bbpress' ); ?></a>
    					</span>
    				</li>
    
    				<li class="<?php if ( bbp_is_single_user_topics() ) :?>current<?php endif; ?>">
    					<span class='bbp-user-topics-created-link'>
    						<a href="<?php bbp_user_topics_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Topics Started", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Topics Started', 'bbpress' ); ?></a>
    					</span>
    				</li>
    
    				<li class="<?php if ( bbp_is_single_user_replies() ) :?>current<?php endif; ?>">
    					<span class='bbp-user-replies-created-link'>
    						<a href="<?php bbp_user_replies_created_url(); ?>" title="<?php printf( esc_attr__( "%s's Replies Created", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Replies Created', 'bbpress' ); ?></a>
    					</span>
    				</li>
    
    				<?php if ( bbp_is_favorites_active() ) : ?>
    					<li class="<?php if ( bbp_is_favorites() ) :?>current<?php endif; ?>">
    						<span class="bbp-user-favorites-link">
    							<a href="<?php bbp_favorites_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Favorites", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Favorites', 'bbpress' ); ?></a>
    						</span>
    					</li>
    				<?php endif; ?>
    
    				<?php if ( bbp_is_user_home() || current_user_can( 'edit_users' ) ) : ?>
    
    					<?php if ( bbp_is_subscriptions_active() ) : ?>
    						<li class="<?php if ( bbp_is_subscriptions() ) :?>current<?php endif; ?>">
    							<span class="bbp-user-subscriptions-link">
    								<a href="<?php bbp_subscriptions_permalink(); ?>" title="<?php printf( esc_attr__( "%s's Subscriptions", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Subscriptions', 'bbpress' ); ?></a>
    							</span>
    						</li>
    					<?php endif; ?>
    
    					<li class="<?php if ( bbp_is_single_user_edit() ) :?>current<?php endif; ?>">
    						<span class="bbp-user-edit-link">
    							<a href="<?php bbp_user_profile_edit_url( get_current_user_id()); ?>" title="<?php printf( esc_attr__( "Edit %s's Profile", 'bbpress' ), bbp_get_displayed_user_field( 'display_name' ) ); ?>"><?php _e( 'Edit', 'bbpress' ); ?></a>
    						</span>
    					</li>
    
    				<?php endif; ?>
    
    			</ul>
    		</div><!-- #bbp-user-navigation -->
    	</div><!-- #bbp-single-user-details -->
    
    	<?php do_action( 'bbp_template_after_user_details' ); ?>
     <?php
    $output = ob_get_contents();
    ob_end_clean();
    return $output;
    }

    However, I am able to get the profile link for a user by this template tag get_current_user_id()

    but how what is the template tag for a user to his replies & topics.

    Thanks in advance

    AilyRoot
    Participant

    Hi
    we run WP 4.3 and bbpress 2.5.8
    This codes does allow both admin and normal user to search for both wp and forum contents fine.

    However normal user with no permission to certain forum could search for those articles in hidden forum too! and they could view the full fine from click link on search results, this is privacy alert!

    #166279
    Robkk
    Moderator

    Try some troubleshooting to see if it could be a plugin issue.

    Troubleshooting

    #166277
    Robkk
    Moderator

    Does disabling bbPress subscriptions in settings > forums help any?? Or do you need the email notifications but not in the BuddyPress profile??

    #166276
    Robkk
    Moderator

    alright glad you solved your own issue 🙂

    you were using this plugin right??

    https://wordpress.org/plugins/bbpress-private-replies/

    #166272
    Robkk
    Moderator

    Creating the bbpress.php file was for removing the blog post data like the continue reading button. I guess you can just use CSS instead. creating the bbpress.php file was not for fixing the search issue.

    You do not need to install the plugin fixes in that topic, it was for another issue for that user.

    Can you enable the forum search in Settings>Forum again so I could see what could be causing the issue again. I remember there being something saying I don’t have the capability/ability to search because of my account to search or something? I am wondering if there is an issue with whatever is causing that too.

    #166259

    In reply to: Moderation words

    Robkk
    Moderator

    the patch might not be created right. I don’t think you create the patch from the plugin version but maybe the latest alpha version or the latest version you can download from the trunk using SVN.

    You can download/download using SVN using the url from here.

    Download

    Are you sure how you inserted the filter will not cause any issues?

    I am specifically talking about how $blacklist = both of these.

    $blacklist = trim( get_option( 'moderation_keys' ) );
    
    $blacklist = apply_filters('bbp_moderation_keys', $blacklist);

    Here are a bunch of helpful guides that I am just going to drop here.

    Working With Patches

    Installing Via SVN

    Robkk
    Moderator

    Try some troubleshooting to see if it is a plugin or theme issue.

    Troubleshooting

    Also know that the visual editor was not activated by default because it started having issues. So it might be better to just use the quicktags toolbar.

    Please explain on the formatting issue.

    #166253
    Robkk
    Moderator

    How does this pertain to bbPress?

    #166250
    saintjaved
    Participant

    I installed bbpress and it’s working fine. My boss wants users using the site to create topics without ever having to create a forum. Is that Possible? Also on the front end, When a user is creating a new topic can I hide or disable “Topic Type:”, “Topic Status:” and “Notify me of follow-up replies via email”? Even the “Notify me of follow-up replies via email” option isn’t working. What can I do the fix that?

    N.B All of this must be possible on the front end. The back end is fine.

    #166238
    Rob Sbaglia
    Participant

    I am running a WordPress network with the latest version of Buddypress and bbpress. The site is http://theglobalschool.net/science and it is run for high school students.

    My problem is that every time a blog is viewed, that viewer is added as a user, which makes things very confusing after a short while. Is there any way I can prevent this from happening? I noticed there is a checkbox in the settings for forums but it doesn’t seem to resolve the problem.

    Thanks,
    Rob.

    #166237
    Robert.S
    Participant

    Thanks so much Robkk.

    I’ll take a look at those files, and see if any plugins might do the trick.

    I am using some custom code I found *somewhere* (!! maybe here haha??) to include Forum results in general WordPress Search results, which works well enough, but of course this is from a site-search, not the BBPress search function.

    Here it is in case anyone else stumbles across this thread and wants to extend WordPress searches to include Forum results (without adding a plugin):

    /**
     * Include bbPress 'topic' custom post type in WordPress' search results */
    
    function ntwb_bbp_topic_cpt_search( $topic_search ) {
    	$topic_search['exclude_from_search'] = false;
    	return $topic_search;
    }
    add_filter( 'bbp_register_topic_post_type', 'ntwb_bbp_topic_cpt_search' );
    
    /**
     * Include bbPress 'forum' custom post type in WordPress' search results */
    
    function ntwb_bbp_forum_cpt_search( $forum_search ) {
    	$forum_search['exclude_from_search'] = false;
    	return $forum_search;
    }
    add_filter( 'bbp_register_forum_post_type', 'ntwb_bbp_forum_cpt_search' );
    
    /**
     * Include bbPress 'reply' custom post type in WordPress' search results  */
    
    function ntwb_bbp_reply_cpt_search( $reply_search ) {
    	$reply_search['exclude_from_search'] = false;
    	return $reply_search;
    }
    add_filter( 'bbp_register_reply_post_type', 'ntwb_bbp_reply_cpt_search' );
    #166236
    vizcano
    Participant

    Hi you all,

    I made a personalized Spanish translation of bbpress words but when this get updated it goes back to the one that bbpress offers in Spanish.
    Is there a way to prevent these changes?

    I want to keep my Spanish translation all the time.
    Anyone?
    Thanks

    #166230
    Robkk
    Moderator

    @devyncjohnson

    1. Well yeah the cache staying not removing is the issue, it could be a bug in WordPress itself since that caches the oembeds. What peice of code did you use to fix this?

    12. I couldn’t duplicate the issue on latest Firefox on W10 using the html5 blank theme.

    Yeah I know, I bookmarked most of the suggestions for features for the bbPress plugin on this site, but if you are experiencing some kind of issue, then why not help out too.

    What I got from you that could possibly make the bbPress plugin are.

    option to turn off feeds.
    add topic auto-suggestion (might be better for the forum search though)
    Integrate some plugins like report content (maybe external links)
    Export and import settings
    View counter
    Custom notices
    Specific forum permissions
    Avatar system

    Most of the SEO things could be best to have in a separate plugin, or should be left to the theme and how it is set up.


    @pinkishhue

    The forum requests and feedback is for this type of thing. If you think some codex article should be available, features should be in bbPress, this site bbpress.org should have some style fixes, etc. this forum is where you post all that in. If you need to create a new topic with a list of suggestions in a list from yourself, you can do that.

    The way the menu items show up has always been like that since bbPress v1 standalone. It could be easier for users to see all the post types in one section, this might need another opinion though. I think it is fine either way though. It will be annoying to change all the codex articles if we do change that though haha.

    #166229

    In reply to: bbPress and Yootheme

    Robkk
    Moderator

    Alright I am going to just test out this theme later today to see all the issues it presents and try to resolve them.

    Try this on a local development server or just a test site in general o the site you are trying to import from. Cloning the whole site might be the best way to import from one WordPress site to another WordPress site.

    Creating a Test Site

    #166223
    nblxhd
    Participant

    Going to reinstall WordPress and bbPress and budypress

    #166211

    In reply to: Moderation words

    Stefano Lissa
    Participant

    I’ve just created a ticket, hopefully in the correct way…

    https://bbpress.trac.wordpress.org/ticket/2861

    Stefano.

    #166209
    PinkishHue
    Participant

    Not sure if this is the right place to add another suggestion but something that just occurred to me that I think would be helpful –

    Perhaps all bbpress custom post types could be grouped together under 1 ‘bbpress’ entry in the admin menu. I find it feels quite cluttered once you’ve installed bbpress and suddenly have the 3 entries there for forums, topics & replies, and this must also be confusing for less experienced users who might not understand that they are 3 different post types.

    #166207
    Schuitema
    Participant

    Hi Rob

    Sorry but I am really at a loss here.

    The What The File plugin directed me to the index.php, I copied this to my child theme and pasted the suddested code in there, this changed my layout dramatically when viwing the forum and search results, but did noting to help with the problem, still not getting forum results in the bbpress search.

    I also tried adding the code suggested in the thread, to add forum to the wp search, and installed both plugin fixes, but still wordpress ignores the forum in it’s searches.

    The issue is that my forum is useless without a decent search function.

    Please help.

    #166205
    Denna Gherlyn
    Participant
    #166204
    Denna Gherlyn
    Participant

    I might have found the problem.

    It seems that bbpress has a problem with moving the topics from backend. I’ll make another fresh installation to verify that. If that is the case I’ll need to open a ticket, I guess.

    #166203
    DevynCJohnson
    Participant

    BBCode Deluxe (https://wordpress.org/plugins/bbcode-deluxe/) adds BBCode markup (and other shortcodes) to WordPress and BBPress. This plugin is a fork of the unmaintained (but well loved and used) “bbPress2 BBCode” plugin by Anton Channing (https://wordpress.org/plugins/bbpress-bbcode/).

    This plugin includes code from the below listed developers and their plugins. More BBCodes/shortcodes will be added (such as the rest of the BBCodes from “Video and Audio BBCodes”).

    • Copyright (C) 2013 Anton Channing (“Video and Audio BBCodes” and “bbPress2 BBCode”)
    • Copyright (C) 2010 b0ingBall (b0ingBall BBCode plugin)
    • Copyright (C) 2008 Viper007Bond (the original BBCode plugin)

    The BBCodes are (or try to be) HTML5-compliant.

    #166201
    DevynCJohnson
    Participant

    @robkk

    1. If the oEmbeds are disabled in the options, then how would I still have oEmbed cache accumulating?

    12. I use Firefox (latest) on Linux and Android. I occasionally use Chromium (also the latest version on Linux).

    By the way, thanks for all of your help. However, keep in mind that my main purpose for this thread is to give the BBPress developers some ideas rather than fix my problems.

    #166199
    larnoult
    Participant

    Hey,

    I can’t find any option to cancel bbPress sending a notification to the buddypress profile of a user that has subscribed to a newly answered topic.
    I need to cancel these bbpress notifications, any tips?

    Thx!!

    Cheers,

    #166198
    cluciftias
    Participant

    Hi,

    I am in the process of converting Joomla!/SMF portal into WP/bbPress. WordPress I used is 4.3 and bbPress 2.5.8. I managed to convert Joomla! to WP but I keep getting into problems with SMF.

    Users from SMF get migrated without a problem. However, migrating topics is a bit of a problem. It’s a large forum with 6885 topis and over 80000 posts. Topic migration keeps getting stuck after ~6500 topics. I tried removing topics that I assumed to be the issue but it didn’t help. I removed large number of topics – it didn’t help. Converter simply gets into loop. Restarting migration doesn’t help.

    Neither PHP nor MySQL have any restrictions – it’s a server I’m administering and for this particular scenario I’ve let PHP consume all the memory it needed. It didn’t help. I’ve tried changing row limit to even 1, it’s still the same.

    Any suggestion will be most welcome. Thank you.

Viewing 25 results - 14,051 through 14,075 (of 64,515 total)
Skip to toolbar