Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 14,401 through 14,425 (of 64,454 total)
  • Author
    Search Results
  • #165100

    In reply to: Replies not displayed

    Robkk
    Moderator

    Try some troubleshooting, see if this only happens in a certain theme that you may have placed code snippets, cache needs to be cleared, or that a plugin is causing an issue.

    Troubleshooting

    #165097
    x0rchid
    Participant

    Thanks @Robkk for the kind insight. Would you please guide me to the starting point, maybe I can just do it myself? (I’m a developer but no experience in WP/bbpress dev.)

    #165096
    Rinuko
    Participant

    Hello
    I’m using latest version of WP and BBPress.
    I’m looking for a away to change my role titles in BBPress but can’t find anything.
    I’ve looked here and google’d but all end to plugins thats not available anymore or edit code but those lines don’t seem to exsist in present version (unless i missed something).

    #165095
    Pascal Casier
    Moderator

    Hi,
    I’m using bbpress 2.5.8 on wordpress 4.2.4.
    My request seems so stupid, but I just don’t find it… How, as a wordpress admin, can I find a list of all the users that subscribed to new topics in a forum ? Any specific page ? Or even a SQL statement to the DB ?
    Thanks, Pascal.

    #165089
    project_subdomain
    Participant

    Hi!
    I’m searching for a solution to auto delete replies after a specific period of time.

    Looked at some plugins like auto prune posts, auto post scheduler and the bbpress close old posts git but nothing seems to work for replies only.

    Would be really great to find a solution.

    #165083
    kossie99
    Participant

    Newbie question: I am about to persuade my colleagues into launching a community/forum for my company’s members. However, to illustrate my community thoughts and the idea’s potential in this early stage it would be very helpful with a Powerpoint template to illustrate how the front page could be organized into sub areas with headline this and that (instead of just showing other companies’ communities).

    Anyone here with a template I could ‘massage’ with my ideas?

    Big thanks in advance.

    /kossie99

    #165077
    Robkk
    Moderator

    Sorry for the late reply to your post, it was marked as spam and had to be approved by a moderator.

    I do not have a list of great themes to choose from but bbPress can work with any WordPress theme you install.

    I explain it better here.

    Installing Themes

    #165074
    Robkk
    Moderator

    Sorry for the late reply your post was marked as spam and was awaiting approval.

    bbPress themes are basically just WordPress themes, you can use any WordPress theme and theme compatibility in the bbPress plugin will do the rest. You may need to edit some files though, because some themes may be tricky to work with.

    I explain it better here.

    Installing Themes

    #165072

    In reply to: want to help others

    Robkk
    Moderator

    Sorry your reply was marked as spam and was awaiting review.

    If you still are interested in contributing you can easily help out other users in the forums.

    If you are a skilled PHP developer, you can start getting your feet wet in the bbPress trac if you want and help out the core developers and core plugin development.

    If you are a skilled writer, I can grant you permission of an editor, but I have to see at least 1 or 2 guides written in Google Docs before granting you that role for security reasons. I can give you suggestions on guides to write if you want, or you can just email me some ideas for me to write to.

    Participate & Contribute

    #165068
    richard.wil
    Participant

    I don’t think the current version of bbpress supports importing from phpbb 3.1
    https://bbpress.trac.wordpress.org/ticket/2716

    Thats more information that I am getting, where are you seeing that output?
    Mine just sits on ‘starting conversion’ and never progress any further than that no matter how long I leave it.

    #161240
    someinsun
    Participant

    View of the forum is not normal.

    Blue bubbles are li of ul in my theme. But why they fly so strange in different positions?
    And table of forum is not normal…

    How can I fix this? How I can switch off withdrawal css of my theme?

    WP 4.1.1
    bbPress 2.5.6
    site http://kurpyakov.ru/forum/
    test
    _G7ZwvYV

    #165058
    Robkk
    Moderator

    I think this will do it. Edit any words in English to German.

    function my_german_titles( $new_title ){
    // Profile page
    	if ( bbp_is_single_user() ) {
    
    		// User is viewing their own profile
    		if ( bbp_is_user_home() ) {
    			$new_title['text'] = esc_attr_x( 'Mien', 'User viewing his/her own profile', 'bbpress' );
    			
    
    		// User is viewing someone else's profile (so use their display name)
    		} else {
    			$new_title['text'] = sprintf( esc_attr_x( "%s's", 'User viewing another users profile', 'bbpress' ), get_userdata( bbp_get_user_id() )->display_name );
    		}
    
    		// User topics created
    		if ( bbp_is_user_home() && bbp_is_single_user_topics() ) {
    			$new_title['format'] = esc_attr__( "Miene Topics",        'bbpress' );
    
    		// User rueplies created
    		} elseif ( bbp_is_user_home() && bbp_is_single_user_replies() ) {
    			$new_title['format'] = esc_attr__( "Miene Replies",       'bbpress' );
    
    		// User favorites
    		} elseif ( bbp_is_user_home() && bbp_is_favorites() ) {
    			$new_title['format'] = esc_attr__( "Miene Favorites",     'bbpress' );
    
    		// User subscriptions
    		} elseif ( bbp_is_user_home() && bbp_is_subscriptions() ) {
    			$new_title['format'] = esc_attr__( "Miene Subscriptions", 'bbpress' );
    		}
    
    	// Profile edit page
    	} elseif ( bbp_is_single_user_edit() ) {
    
    		// Current user
    		if ( bbp_is_user_home_edit() ) {
    			$new_title['text']   = esc_attr__( 'Edit Your Profile', 'bbpress' );
    
    		// Other user
    		} else {
    			$new_title['text']   = get_userdata( bbp_get_user_id() )->display_name;
    			$new_title['format'] = esc_attr__( "Edit %s's Profile", 'bbpress' );
    		}
        
    }
        
        return $new_title;
    }    
    
    add_filter( 'bbp_before_title_parse_args', 'my_german_titles' );
    #165055

    In reply to: link admin bar change

    Stephen Edgar
    Keymaster

    bbPress has quite a few functions that will help you here:

    bbp_get_user_profile_url() would get you /forums/membre/user
    bbp_get_user_profile_edit_url() would get you /forums/membre/user/edit

    You can also use bbp_get_current_user_id() if you need the current user ID

    #165051
    cocolabombe0
    Participant

    I try to edit the user-profile.php file.
    I’ve just figured out how to retrieve information.

    Profile Overview:
    http://www.hostingpics.net/viewer.php?id=211738profile.jpg

    Member List
    http://www.hostingpics.net/viewer.php?id=989016member.jpg

    			<?php $user_info = get_userdata(bbp_get_displayed_user_id()); ?>
    			
    			<p class="bbp-user-forum-role"><?php echo 'Roles sur le site: ' . implode(', ', $user_info->roles) . "\n";?></p>
    			<p class="bbp-user-forum-role"><?php  printf( __( 'Forum Role: %s',      'bbpress' ), bbp_get_user_display_role()    ); ?></p>
    			<p class="bbp-user-topic-count"><?php printf( __( 'Topics Started: %s',  'bbpress' ), bbp_get_user_topic_count_raw() ); ?></p>
    			<p class="bbp-user-reply-count"><?php printf( __( 'Replies Created: %s', 'bbpress' ), bbp_get_user_reply_count_raw() ); ?></p>
    
    			<p><?php printf ( __( 'First name: %s', 'bbpress' ), bbp_get_displayed_user_field( 'first_name'));?></p>
    			<p><?php printf ( __( 'Licence: %s', 'bbpress' ), bbp_get_displayed_user_field( 'licence'));?></p>
    			<p><?php printf( __( 'Role sur le site: %s',      'bbpress' ), bbp_get_user_blog_role()    ); ?></p>
    			<p><?php printf( __( 'Role sur le site: %s',      'bbpress' ), bbp_get_user_role()    ); ?></p>
    			
    		<h2 class="entry-title">Réseaux sociaux</h2>
    		<p><?php  printf( __( 'Facebook: %s',     'bbpress' ), bbp_get_displayed_user_field( 'facebook')    ); ?></p>
    		<p><?php  printf( __( 'Twitter: %s',      'bbpress' ), bbp_get_displayed_user_field( 'twitter')     ); ?></p>
    		<p><?php  printf( __( 'Google+: %s',      'bbpress' ), bbp_get_displayed_user_field( 'google_plus')    ); ?></p>

    How to display the roles with the text displayed on the image of the members?
    Basically, I want the user michael Menil, we see:
    Roles sur le site: administrateur, keymaster, admin bureau

    These terms mean:
    Administrator (the website)
    KeyMaster (the Forum)
    admin office (lower than the administrator)

    The first two roles are given by WP FRONT ROLE USER EDITOR PERSONAL PRO. The third, I created from scratch by the same plugin.

    goldlux
    Participant

    We need a plugin that automatically creates a gallery of newest images from users media image. Ideally it would include, “Most viewed” “Latest” ect as a way to sort the images. Is there anything like this at all that would work with BuddyPress BBpress???

    Thanks so much in advance!

    #165030

    In reply to: SMF Import to bbPress

    Stephen Edgar
    Keymaster

    @donchulio Adding a topic titled Ankündigungen with the topic content Ankündigungen and a reply with content Ankündigungen works as expected for me with bbPress 2.5.8

    Screen Shot

    Can you check what character set and collation both your source SMF database is and also the same for your WordPress database?

    #165029
    Vili
    Participant

    As much as I tried earlier, I couldn’t really get bbPress Moderation to work. It may have something to do with my theme, but I also see that I’m not the only one with problems.

    I’m not sure if I follow what you are saying about Spectators. Since they cannot post, there isn’t really any moderating to do either as far as I can see. Or am I missing something?

    I’m increasingly thinking about writing a custom plugin. I suppose one basic idea would be to create a new user role like “Untrusted Subscriber”, make it the default role for new subscriptions and mark all comments, topics and replies by such users as “pending” until the user is updated to regular “Subscriber” status. The system should also serve a page explaining this when these users post. Something like that.

    I’m just not entirely sure if it’s more time and effort to write the above than it is to manually delete spam messages and users. So, I was wondering if someone else may already have found a solution.

    #165027

    In reply to: Importing from WBB4

    Stephen Edgar
    Keymaster

    Yes that is an other problem, every languageID field is empty.
    how can i solve that?

    You shouldn’t need to do anything, if there is no value it will default to English

    In the wbb1_1_board from wbb3 is the parentID “0”
    but in wbb1_board from wbb4 is the parentID “NULL” (german for zero).
    There are a lot of these fields….

    Indeed Null is German for zero, also NULL is a special value in SQL databases.

    Typically I’d expect a reply to always have a parentID, that ID should be the topic ID.

    A topics parent ID will typically be the forum ID the topic belongs to.

    bbPress will treat replies without a parentID as an “orphaned” reply because there is no association between the topic and reply id’s.

    bbPress will treat topics without a parentID as a topic not associated with a specific forum, so unlike replies, bbPress does not require topics to have to have a forum id.

    Forums without a parentID are treated as “top level” forums, forums with a parentID of another forum are treated as “child” or “sub” forums of the parent forum.

    So some parentID values may be an integer 1, 13, 653 etc, sometimes it will be 0 meaning there is no parentID and other times it will be NULL, it is all dependant upon that forum softwares configuration and the context it’s being used in.

    #165024
    Robkk
    Moderator

    So basically you want to use bbPress for something other than forums?? I am leaning toward custom development and you might need to hire a developer right now, but I do not get what you mean by directory. Explain what you mean by directory, and if you really want to email me the pictures here.

    Contact

    #165023
    ainoha_vs
    Participant

    Hi! Thank you for replying 🙂 with “invalid” I mean making some actions “nule”. I don´t want anybody to comment what I post… the reason is that I prefer bbpress more as directory than a forum.. If you have an email I could send you some pics so maybe you could understand it better. Thank you 😀

    #165013
    cocolabombe0
    Participant

    Ok, I was on.
    I added a Facebook field in the License File function.php theme.
    So we can see also in publishing bbpress.
    http://www.hostingpics.net/viewer.php?id=918166contact.jpg

    On these fields created in the meta WP, how to display it on the profile page as the image below (but is plain text)
    http://www.hostingpics.net/viewer.php?id=567243profil.jpg

    Idem on the forum topics. As already does plugin.
    Added text or an image under the name of the user.

    For the plugin, I tried to contact him to see.

    ainoha_vs
    Participant

    Hi everybody! I need to change some “titles” and “invalid” some actions of BBPress so I can use it for my blog. Anybody who could help me with some codes, please?
    Than you! 😀
    Cheers!

    #165011

    In reply to: link admin bar change

    cocolabombe0
    Participant

    no, I have not used the codex.
    I checked the box of bbpress option.
    And the links are replaced.
    http://www.hostingpics.net/viewer.php?id=857251bbpress.jpg

    #165010
    Robkk
    Moderator

    I think there is a different filter for bbPress tinymce buttons. Will check it out later.

    #165008
    you4eea
    Participant

    PinkishHue thanks!

    It would work, but I don’t know the exact names for bbpress
    i.e. below is for post (https://wordpress.org/plugins/csv-importer/other_notes/).
    csv_post_title – title of the post
    csv_post_post – body of the post
    csv_post_type – post, page or a custom post type

    Do you know what they would be for bbpress? or where I can find them.
    This would be the way to go, I need add descriptions so that would save me a lot of time.

Viewing 25 results - 14,401 through 14,425 (of 64,454 total)
Skip to toolbar