Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,051 through 25,075 (of 64,518 total)
  • Author
    Search Results
  • #135544
    ozgurpolat
    Participant

    In form-reply.php after the line:

    <div class="bbp-template-notice"><p><?php _e( 'Your account has the ability to post unrestricted HTML content.', 'bbpress' ); ?></p></div>

    I inserted <?php else : ?><div class="bbp-template-notice"><p><?php _e( 'PLEASE NOTE: Your post will be sent to AWAITING MODERATION folder, will be posted if approved!', 'bbpress' ); ?></p></div>

    Which is not so good because I am changing the core file. Is there a better way to do this?

    #135539
    Kimber254
    Participant

    Hello, just download bbpress for the first time. I believe it is version 2.0. While the bbpress works great with theme, I’d like have the topics be a big more defined. I was doing some reading about bbpress and wondered is someone can explain the difference in a Skin and Theme? Or what is the css I can make changes too?

    Thanks

    ozgurpolat
    Participant

    Hi,

    I have just installed bbpress moderation plug-in, but my question is not about the moderation plug-in, it is about putting a default text into the reply field, so that the users can read before posting. This is because currently bbpress moderation plug-in does not notify the user that the reply/post is held for moderation. So the user posts something in the forum, but nothing happens, there is no message saying that user’s message is awaiting moderation. The plug in author was asked about this 8 months ago, and he replied that it would be difficult to do something about this, and apparently the color of the reply is yellow, hinting that the reply is held for moderation. But there is no way of knowing this. So I decided to put the default text into the reply field so that the user can read before posting. I don’t know how to do this, I am quite new to bbpress.

    #135537
    adambware
    Participant

    I see the Group Extension in BBPress checks to see if the BBP_Forums_Group_Extension class is already defined, but I cannot figure out which action I need to hook into so that my custom BBP_Forums_Group_Extension is used instead of the default BBPress Group Extension.

    Please help!

    #135536

    In reply to: Fly-Fishing Site

    ZachMatthews
    Participant

    Hey guys –

    The page load times were due to a couple slow plug ins which I was able to identify with the P3 Plug In Profiler and remove. Load time is now sub 1.5s per page (once you load the heavy banners – I need to reduce the size on those but I haven’t found the time yet since they are site-wide and it will take me a while to reconfigure everything).

    Thanks for the feedback. I still haven’t been able to make BuddyPress play nice but bbPress is at last fully functional with Pinboard.

    Zach

    #135533
    peter-hamilton
    Participant

    wow just wrote long reply press post and all is gone??

    came down to that you can mail me at seedism@gmail.com and i will send code to thank you for your reply.

    I am not yet posting it here cause I want to use it for a theme i am trying to create.

    preview here:

    P.H.

    #135532
    peter-hamilton
    Participant

    The two examples you gave are close, but do not actually show what I need, this link is more like what I mean.

    But, they did make me realize that the desired hierarchy can be achieved with a combination of css and selecting the right category/forum/topic order, and that the existing three levels (categories/forums/topics) is one too little.

    This is what I think is a solution.

    1.Create/give parent Categories a name to display as title in a new category header, remove all other data through css from the header, like the “topics” and “freshness” text since this needs to be echoed only in the next level of categories.

    2.Create categories in parent category and change functions and css so they show as a list under each other and include topics and hierarchy text.

    3.create another level of categories to act as main forums, here we include the freshness-links and topic count.

    4.Topics/threads are created inside the fourth level.

    5.remove the original bb-header to allow the first level categories to take over this function.

    I think this makes sense to me, will have to try tomorrow if this works.

    I can not yet make my solution of the freshness-topic-title public since I am working on a theme with this function included, I can not send private messages on the bbpress forum else I would have pm’ed you it as appreciation for your reply.

    You can send me a mail and I will send you the code but please keep it to yourself.
    seedism@gmail.com
    Here is a link to a live demo, this is a work in progress and site is not close to finished but you can get an idea of what I did.
    http://cultivators-forum.com/cultivation-forum/

    Peter Hamilton

    #135531
    Tecca
    Participant

    At the moment, the only way to get a hierarchy is to do it with template edits. I haven’t gotten there since I’m working on WordPress, bbPress and BuddyPress all at once, so I can’t help you out there. There is a trac about it here, though: https://bbpress.trac.wordpress.org/ticket/1958

    Looks like it’s coming in bbPress 2.5, if there’s time.

    How did you go about getting the title for the freshness link? I was actually going to do that last night, but I haven’t gotten around to it — so a quick heads up there would be awesome.

    Oh, and a couple of examples of bbPress forums I’ve seen with a hierarchy (in case you’d like to see it live):

    http://tamrielfoundry.com/forums/
    http://www.dev4press.com/forums/

    #135530
    peter-hamilton
    Participant

    Thanks to a page of spam only threads on bbpress I added another reply to get back on top.
    Not a very busy forum this is, although I am an impatient guy…

    Will check every day until there is an answer to the question.

    btw, i did manage to get post titles of the last replies in my freshness link, like you can see in the image I attached at the start of this thread, this is a much asked for adjustment of the forums-list and I find it weird that a noob like me finds a way to do this when there are 3 years of topics/requests of this feature.

    P.H.

    #135525
    Sloppy Buns
    Participant

    I love BBpress but this is so annoying I have searched here and googled it but there just isn’t anything anywhere that shows how to place a simple link to the BBpress users profile in your menu or on a page, this must be possible as it is the most basic need for a forum.

    Is there anyone that can shed some lite on this for us poor mortals that have exhausted all avenues ??

    Thanks in advance

    dbungard
    Participant

    Or maybe it’s down here

    
    /**
     * Output the view url
     *
     * @since bbPress (r2789)
     *
     * @param string $view Optional. View id
     * @uses bbp_get_view_url() To get the view url
     */
    function bbp_view_url( $view = false ) {
    	echo bbp_get_view_url( $view );
    }
    	/**
    	 * Return the view url
    	 *
    	 * @since bbPress (r2789)
    	 *
    	 * @param string $view Optional. View id
    	 * @uses sanitize_title() To sanitize the view id
    	 * @uses home_url() To get blog home url
    	 * @uses add_query_arg() To add custom args to the url
    	 * @uses apply_filters() Calls 'bbp_get_view_url' with the view url,
    	 *                        used view id
    	 * @return string View url (or home url if the view was not found)
    	 */
    	function bbp_get_view_url( $view = false ) {
    		global $wp_rewrite;
    
    		$view = bbp_get_view_id( $view );
    		if ( empty( $view ) )
    			return home_url();
    
    		// Pretty permalinks
    		if ( $wp_rewrite->using_permalinks() ) {
    			$url = $wp_rewrite->root . bbp_get_view_slug() . '/' . $view;
    			$url = home_url( user_trailingslashit( $url ) );
    
    		// Unpretty permalinks
    		} else {
    			$url = add_query_arg( array( 'bbp_view' => $view ), home_url( '/' ) );
    		}
    
    		return apply_filters( 'bbp_get_view_link', $url, $view );
    	}
    

    Please someone help – I am a designer not a programer – honestly I hadn’t realized that bbpress WOULDN”T have the forum name associated with the topic…

    #135520

    In reply to: Forum ID in Topics URL

    dbungard
    Participant

    Or maybe it’s down here

    
    /**
     * Output the view url
     *
     * @since bbPress (r2789)
     *
     * @param string $view Optional. View id
     * @uses bbp_get_view_url() To get the view url
     */
    function bbp_view_url( $view = false ) {
    	echo bbp_get_view_url( $view );
    }
    	/**
    	 * Return the view url
    	 *
    	 * @since bbPress (r2789)
    	 *
    	 * @param string $view Optional. View id
    	 * @uses sanitize_title() To sanitize the view id
    	 * @uses home_url() To get blog home url
    	 * @uses add_query_arg() To add custom args to the url
    	 * @uses apply_filters() Calls 'bbp_get_view_url' with the view url,
    	 *                        used view id
    	 * @return string View url (or home url if the view was not found)
    	 */
    	function bbp_get_view_url( $view = false ) {
    		global $wp_rewrite;
    
    		$view = bbp_get_view_id( $view );
    		if ( empty( $view ) )
    			return home_url();
    
    		// Pretty permalinks
    		if ( $wp_rewrite->using_permalinks() ) {
    			$url = $wp_rewrite->root . bbp_get_view_slug() . '/' . $view;
    			$url = home_url( user_trailingslashit( $url ) );
    
    		// Unpretty permalinks
    		} else {
    			$url = add_query_arg( array( 'bbp_view' => $view ), home_url( '/' ) );
    		}
    
    		return apply_filters( 'bbp_get_view_link', $url, $view );
    	}
    

    Please someone help – I am a designer not a programer – honestly I hadn’t realized that bbpress WOULDN”T have the forum name associated with the topic…

    #135519
    rrtryon
    Participant

    Hello,
    I am having the exact same problem.

    2 weeks ago I had downloaded the forum and was able to have others test it and it worked fine without anybody having to register.

    However, now that is not the case. I have gone to forum settings and made sure that I unclicked the ‘anonymous posting’ box, making it possible for anybody to post (Theoretically).

    I have also gone to the “Discussions” settings and unclicked the box “users must be logged in and registered to comment).

    Originally when I uploaded the forum, people who replied had to enter their name, email and optionally their website. That was fine. Where did it go? I can’t recall if there has been an upgrade since then.

    My site is http://www.cclhdn.org and you can see “MEMBER FORUM” on the top menu (far right).

    I use Suffusion theme, and have also recently dowloaded Askimet and bbPressCaptcha. However, the problem was there before I did this. Also, I can’t figure out how to use bbpressCaptcha with bbPress, but maybe that will come when people can actually respond.

    I would really appreciate some help with this, I’ve been trying to fix this for about 3 days now and need it to be done by the time of a newsletter launch this Thurs!

    Thanks,
    Rebecca

    #135507
    first_j
    Participant

    Just downloaded the bbPress for the forum option and trying to mess with it before I can tell my company to use it. Able to create forum and topic and link them to each other. Also, able to embed the forum in a page. Now everything is set up on the forum for public and open, but when I visit the forum to test it, it won’t let me reply to it.

    I am doing this in a different browser and not logged in on that browser so that doesn’t mess it up. Please help.

    #135506
    Techknowledgic
    Participant

    Any help guys?

    #135504
    stuudio
    Participant

    This is actually a bbPress bug 🙂
    Please see http://bpsocialnetwork.wordpress.com/2013/07/21/spun-theme-compatibility/

    #135501
    Rachel Biel
    Participant

    I think that you have to disable the buddypress side of it, but thought that was taken care of in the last update. This video really helped me: http://www.youtube.com/watch?v=M8mh3f6Vzbo

    I disabled the sitewide forums because I found it so confusing to have both. But, even just with the group forums things are confusing. The problem we are having is that the reply function doesn’t follow through on the posting in all of the places it shows up: Activity Streams, Group Home page and Group Forum page. If you reply on the activity streams, it will show up on the group home page, but not on the forum page. Here’s our site if you want to take a look:
    http://www.tafaforum.com/

    Tecca
    Participant

    You can change this through your bbpress.css file fairly easily. The IDs/classes you’re looking for will be similar to this:

    #favorite-toggle, #subscription-toggle {
    	text-decoration: none;
    	padding: 0 6px;
    	font-weight: bold;
    	}
    	#favorite-toggle a {
    		color: #d7be4c;
    	}
    	#favorite-toggle a:hover {
    		color: #dfca66;
    	}
    	#favorite-toggle span.is-favorite a, #subscription-toggle span.is-subscribed a {
    		color: #888888;
    		}
    		#favorite-toggle span.is-favorite a:hover, #subscription-toggle span.is-subscribed a:hover {
    			color: #555555;
    		}
    
    #subscription-toggle a {
    	color: #39c696;
    	}
    	#subscription-toggle a:hover {
    		color: #4cd4a5;
    	}

    That’s an older version of what I was using — in there you can see that these elements will change the color based on whatever you set them to:

    #favorite-toggle span.is-favorite a, #subscription-toggle span.is-subscribed a

    Take note of “span.is-favorite a” and “span.is-subscribed a”. Those are the important ones that will allow you to change the color and style.

    If you’d like to add a check mark, you can do something like:

    #favorite-toggle span.is-favorite a:before, #subscription-toggle span.is-subscribed a:before {
    	content: "✓";
    		}

    In the above, I added the “:before” pseudo elements to indicate that “before the word, add this content.” The content is the checkmark. Alternatively, you can also use the “:after” pseudo element and add things that way. Both work.

    #135499
    Weaper
    Participant

    Just to say that I believe it’s coming from Buddypress itself more then bbPress.
    All of Buddypress pages are empty (Activity, groups, etc…)

    I’ll look that way but if anyone know the issue, feel free to help.
    thanks

    nando99
    Participant

    i’m using bbpress with buddypress, latest versions of both and latest version of wp.

    the recent topic widget displays topics from private group forums to everyone… groups are private for a reason… is this a bug or?

    craig
    Participant

    same issue here suddenly:
    Fatal error: Using $this when not in object context in /wp-content/plugins/bbpress/includes/extend/buddypress/group.php on line 461

    Anyone a link to an old version of buddypress?

    craig
    Participant

    Hi all,

    I’ve always been confused with this and it seems so does my coding.

    I’ve installed both buddypress group forums and bbpress’ sitewide forums. I would like to retain both.

    So first off I several questions on setup, but to save time for you all, is there any documentation explaining some of the following in detail?

    1. why when a user sets up a group does it ask them twice if they want the group to include a forum? Once under the ‘setting’ section saying: ‘group forum – should this group have a forum? – enable discussion forum?’, and then another the following tab ‘3.Forum’?

    2. I don’t understand the group forums showing in site wide forums etc etc.

    So any documentation on understanding this would be great.

    But my main question is why in the users profile we have a ‘forum’ tab, which allows the user to see their contributions to forums by ‘topics started’ ‘replies created’ ‘favourites’ ‘subscriptions’, however the latter 3 show both content from sitewide and group forums, yet the ‘topics started’ only shows topics started in group forums.

    hopefully I’ll get there in the end :-/

    craig
    Participant

    Hi all,

    Currently in bbpress, I have it so you can favourite and subscribe to topics. However, when the user does so, it literally changes the ‘favourite’ to ‘favourited’, and I don’t think this is obvious enough for my user base.

    How can I modify this to either, add a tick icon for posts you’ve favourited, or give a alert box informing you you’ve successfully favourited / subscribed etc.

    It would also be nice, if the user could see at a glance that they’re favourited or subscribed to a topic from the forum it’s self. So while scrolling through new topics, they can see ones that they’ve already favourited etc.

    Can’t seem to find anything on this online :-/

    any ideas?

    craig
    Participant

    Hi all,

    So I’m now just trying to remove the ‘topic contains’ elements in bbpress, and I’ve used @jshultz ‘s code above in my themes function.php file, but it no longer seems to work.

    Would there be an update for this?

    #135485
    Techknowledgic
    Participant

    Hey

    I am looking for forum to install on my wordpress CMS website and was wondering if I install bbpress plugin will it look like this forum ( bbpress.org) on my website or what?

    and what’s the difference between bbpress and buddypress?

    ty

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