Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 2,276 through 2,300 (of 7,384 total)
  • Author
    Search Results
  • #165868
    katumos
    Participant

    hi @mercime this is the site http://www.habakwahaba.com/ what i basically want is groups for
    Real Estate
    Stocks
    Techprenuers
    Stocks

    each group has a forum .i would like each of the group to have forums on a separate page .earlier i put bbpress but the css is not pleasing .plus i want the members of fthe groups to interact .

    I would be glad if you assist

    #165814
    bp-help
    Participant

    @henrywright-1
    Have you succeeded in your pages list? I think it would be a helpful contribution to the codex. I did my best at covering buddypress and bbpress pages with the plugin Private Community For BP Right now the only thing that makes me hesitate releasing it to the repo is the uncertainty of if I covered all BP specific pages and the fact it has no dashboard page settings so users can specify which pages are off limits to logged out users. Anyway, just checking in on this thread because it has a lot of relevance.

    #165776
    Famous
    Participant

    I am using BBpress login widget, could that be the problem?

    #165767
    ldjautobody
    Participant

    @bphelp, Wow and thank you for the awesome tutorial. This is perfect! I was actually using the original site I put up as a tempsite until I had the whole Buddy Press and bbpress thing figured out. I am in the process now of building our new site which will up be and running shortly.

    The information you sent me is great. The register and log-in pages are wonderful. I am probably going to have to make some changes to our WP theme as I found out just recently that they have published a bbpress child theme which works great with the original WP theme. In fact, I’ll even give them a little plug here…Mysitemyway.com has some awesome premium wordpress themes that are definitely work a “look see” by anyone that is light on WP coding and wants a truly beautiful theme! So there guys…there’s your “plug’o the day!” from LDJ! LOL

    Since learning a bunch of new things playing with the old temp site, the new site is going to be formatted completely different. I owe it to everyone here for their help during this learning curve and thank you everybody for all your great advice.

    I’ll put up the new url as soon as I get the stuff up and running and I know I’ll be back here to get more help as we move forward with our forum site.

    Thanks again for all your help!

    Denise (@ldjautobody) 🙂

    #165716
    danbp
    Participant

    The author answer means that the plugin works only with group forums ?!!!

    So you have to search another rating widget who works with bbPress or create it yourself or to configure your buddypress to use group forums instead of a standalone forum.

    But as bbP is fully post typed, have you tried to use the plugin’s shortcode ?
    https://wordpress.org/support/topic/ratings-in-custom-post-types

    #165706
    Nate
    Participant

    Here’s the plugin: https://wordpress.org/plugins/rating-widget/

    The developer said: “seems like you are using the standalone version of bbPress … we only support BuddyPress’es bbPress forums.”

    I don’t have any group forums, as they’re not necessary. Using most recent version of WP & BP under Woo’s Canvas theme. Thanks!

    #165705
    danbp
    Participant

    If you installed bbpress on WP, you have a standalone forum configuration ! So no matter if you installed it before BuddyPress. 😉

    Have you group forums ?

    What is the not working voting-widget plugin you speak about ? Give an URL please.

    What BP/WP version do you use ?
    What is your theme ?

    Unsal Korkmaz
    Participant

    FirmaSite 1.1.4 released.

    Biggest improvement is adding Flatly named theme style. You can check demo here:
    http://demo.theme.firmasite.com/?style=flatly

    You can read other details of changes here:
    http://theme.firmasite.com/category/changelog/

    #165666
    @mercime
    Participant

    I have tried creating a menu item that points to the actual “forum” itself, but it returns with “page not found”

    What is the title/slug of your main forum page. This main forum page should be created via Pages > Add New. At the very least, if you forgot to add the forums index or other available bbPress shortcodes to the main forum page before publishing that page, you’d only get a page with Page title and not a 404 error.

    Set up bbPress forums with BuddyPress installs https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/

    #165637
    @mercime
    Participant

    @dswd tested on install with WP 3.6 beta 3, with plugins – BuddyPress trunk and bbPress trunk – and Twenty Twelve theme. Steps #1 through #6 are the same for me. For step 7, when I go back to groups, I am not a member of that group yet. Done this with 7 other regular users and I get the same results – not a member of that group unless I click on the accept button.

    My test installations at this point are all on trunk and I have not received any reports about this issue in live sites – probably because they click on “Accept” button right away instead of wandering from group to profile to group 🙂

    #165610
    modemlooper
    Moderator

    Did you click link from email sent after signup?

    #165570
    bp-help
    Participant

    @caming
    If your using BuddyPress then it should login users to use forums as well. I think you may want to post this issue on the bbpress forums as well.

    #165524
    unknownterritory20
    Participant

    Ok. I played around with it until I found out the issue, but I don’t know how to solve it.

    In groups > forum > topics > My New Topic … when I inspect the element for the href for the modify link (and others) are as follows…

    href=”http://mysite.com/groups/Sailing/forum/topic/edit?_wpnonce=xxx”. This gives me a blank page, or bbpress edit form.

    If I slightly modify the url to href=”http://mysite.com/groups/Sailing/forum/topic/my-new topic/edit?_wpnonce=xxx” then I see things exactly how they are supposed to be. So the modify link was taking me to the wrong page.

    I have no idea how to modify the url to insert the topic title. This would completely resolve my issue

    The modify link is embedded in the bp_the_topic_admin_links function.

    function bp_the_topic_admin_links( $args = '' ) {
    	echo bp_get_the_topic_admin_links( $args );
    }
    	function bp_get_the_topic_admin_links( $args = '' ) {
    		global $forum_template;
    
    		$defaults = array(
    			'seperator' => '|'
    		);
    
    		$r = wp_parse_args( $args, $defaults );
    		extract( $r, EXTR_SKIP );
    
    		$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'edit', 'bp_forums_edit_topic' ) . '">' . __( 'Edit Topic', 'buddypress' ) . '</a>';
    
    		if ( bp_is_item_admin() || bp_is_item_mod() || bp_current_user_can( 'bp_moderate' ) ) {
    			if ( 0 == (int) $forum_template->topic->topic_sticky )
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'stick', 'bp_forums_stick_topic' ) . '">' . __( 'Sticky Topic', 'buddypress' ) . '</a>';
    			else
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'unstick', 'bp_forums_unstick_topic' ) . '">' . __( 'Un-stick Topic', 'buddypress' ) . '</a>';
    
    			if ( 0 == (int) $forum_template->topic->topic_open )
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'open', 'bp_forums_open_topic' ) . '">' . __( 'Open Topic', 'buddypress' ) . '</a>';
    			else
    				$links[] = '<a href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'close', 'bp_forums_close_topic' ) . '">' . __( 'Close Topic', 'buddypress' ) . '</a>';
    
    			$links[] = '<a class="confirm" id="topic-delete-link" href="' . wp_nonce_url( bp_get_the_topic_permalink() . 'delete', 'bp_forums_delete_topic' ) . '">' . __( 'Delete Topic', 'buddypress' ) . '</a>';
    		}
    
    		return implode( ' ' . $seperator . ' ', (array) $links );
    	}
    

    ALSO, is there a way to disable bbpress user profiles, completely? I only want bp profiles active.

    #165523
    @mercime
    Participant

    @thecrow72 basically, BuddyPress uses the WP email functions for its registration process. Deactivate BuddyPress, bbPress and other plugins then check your WP registration/activation emails, etc. If it’s not working, then please resolve your issue at https://wordpress.org/support/forum/how-to-and-troubleshooting

    Before activating BuddyPress, read https://codex.buddypress.org/user/before-installing/

    Good luck!

    #165515
    unknownterritory20
    Participant

    Thanks for responding.

    -I’m using WP 3.5
    -BP 1.7 is installed in a directory.
    -I have bbpress 2.2.4 running
    Please let me know if you need anymore info

    #165513

    In reply to: Display Issues

    bkypes
    Participant

    @mercime, I did download and install the integration but that didn’t seem to make any difference with the issues that I’ve been having. I just deleted the files from my site and I’m going to have a guy who helps us with our coding remove any traces of bbPress or BuddyPress from the myPHPadmin file and the reinstall everything.

    #165506
    @mercime
    Participant

    @adamfratino Thank you for posting back about the cause of the bbPress avatar issue. Please post at plugin’s support forums about the bbPress avatars issue when BuddyPress and Social Login are activated. https://wordpress.org/support/plugin/oa-social-login

    #165498
    adamfratino
    Participant

    Wordpress 3.5.1, Buddypress 1.7.2, using Bonpress free theme from WPZOOM. I just realized there might be a conflict with WordPress Social Login, which is pulling avatar data from Facebook/Twitter when registering new members, or just when logging them back in with the social options.

    When I shut off WordPress Social Login, the Buddypress avatars show up in BBPress. When I turn social login back on, the original avatars from when the user signed up take over the BBPress avatars.

    #165495
    @mercime
    Participant

    I’m looking to use the Buddypress avatars within the BBPress forums

    BuddyPress avatars should show up in bbPress forums.

    WP/BP versions? What theme are you using? What plugins are activated? Have you tried deactivating all plugins except BuddyPress and bbPress then changing to BP Default theme to check if issues are resolved?

    unknownterritory20
    Participant

    I have a similar issue. When I click on ‘edit’, I used to get the buddypress group topic edit form. But lately, I get the bbpress edit form. When i click on ‘save changes’ I get an error.

    How can I go back to using the buddypress group topics edit form?

    Any help would be great.
    Thanks in advance.

    #165483
    Nate
    Participant

    OK, color me confused. Registration is working (the only thing I changed was not directly linking to the /register page, but I can’t see how that would be an issue), but now there’s another problem.

    When a user registers, they’re forwarded along to the “wait for your confirmation” message. Once a user clicks the activation link in the e-mail, the system says they have successfully activated the account.

    But this is where it gets interesting: I’m using the bbPress login widget in the header. If they try to login immediately (which would be the logical course for the user), the system responds with the red box and says they need to need enter their activation key.

    Yet, they’re logged in.

    Anyway to bypass this, or at the very least add a link they can click on? It seems silly to tell people “Congrats on signing up” and then not give the user an action.

    Any help would be appreciated!

    #165482
    bp-help
    Participant

    @biggerplay
    Correct pre BP 1.7 it came bundled, and as of 1.7+ bbpress is separate. Yes you can have group forums, site-wide forums, or both. See the link @synaptic provided.

    #165478

    In reply to: Forum

    modemlooper
    Moderator

    If you are on BuddyPress 1.7 you need bbPress for forums. Do you have that installed?

    marcoarena
    Participant

    Sorry, I just found a ticket is open here: https://bbpress.trac.wordpress.org/ticket/2279

    #165435
    Asynaptic
    Participant

    https://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/

    a theme is a completely different thing than bbpress or buddypress. the theme gives the ‘look’ the bbpress and/or buddypress plugins give the functionality

Viewing 25 results - 2,276 through 2,300 (of 7,384 total)
Skip to toolbar