Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 23,126 through 23,150 (of 64,518 total)
  • Author
    Search Results
  • #139575

    Hello Stephen,
    1) I am using XAMPP1.8(3) locally. I chose XAMPP for Windows. I did install it over 1 year ago. so I do not remember well, but it is from the same location: http://www.apachefriends.org/en/xampp.html.
    2)What is “Window Xampp Apache (3.1.0.3.1.0)” – I found this info on XAMPP control panel. it is version 3.1.0.3.1.0. but it is not right information for you. 🙂
    3)We have a patch ready to ship with bbPress 2.5.1
    https://bbpress.trac.wordpress.org/ticket/2481
    I do not know how to install the patch. can you provide the detail steps? I would love to test it. I also do updates/installation inside the wordpress panel. so I do not know how to manually do patch.:)

    4) If the patch is not working, how can un-install it or what should I do? so I can have recovery plan.

    Happy thanksgiving!!!

    thank you

    #139574
    Stephen Edgar
    Keymaster

    The plot thickens…

    I don’t disbelieve you, but I can’t understand why the visual tab has been working since the installation of bbPress a month ago and suddenly failed this week?

    I think you may be using another plugin that adds this functionality and the issue may be with that plugin 😉

    I followed the link and loaded the updated version on the server then installed it in the plugin directory. There was no change, I still can’t select the visual tab, but I do see the Add Media button and it works.

    Neither bbPress or the plugin I linked to have an ‘Add media’ button :/

    #139573
    Matoca
    Participant

    Thank you for writing back so quickly!

    I don’t disbelieve you, but I can’t understand why the visual tab has been working since the installation of bbPress a month ago and suddenly failed this week?

    I followed the link and loaded the updated version on the server then installed it in the plugin directory. There was no change, I still can’t select the visual tab, but I do see the Add Media button and it works.

    Once I start getting some emails of posts I will be able to tell if the html has been removed from emailed posts.
    Thank you

    #139572
    justsayno1
    Participant

    Hi,

    I am in the same situation and I have found a solution. You can apply filters to almost every function in bbpress it seems. I just followed the functions until I found these three filters:

    apply_filters( 'bbp_get_user_profile_link', $user_link, $user_id );
    apply_filters( 'bbp_get_reply_author_display_name', $author_name, $reply_id )
    apply_filters( 'bbp_get_topic_author_link', $author_link, $args );
    

    Using these you can change basically everything. I found it easier to change the avatar ALT text vie the normal wordpress get_avatar filter since I wanted that to happen site wide anyway. Here is an example of the reply filter:

    
    function replace_bbpress_replies_username_filter($author_name,$reply_id ){
    $author_id = bbp_get_reply_author_id($reply_id);
    $author_object = get_userdata( $author_id );
    $author_name  = ucfirst($author_object->user_login);
    return $author_name;
    }
    add_filter( 'bbp_get_reply_author_display_name','replace_bbpress_replies_username_filter',10, 2);
    

    Hope that helps. You can do it through templating but this way you don’t have to worry about doing it in a million different templates and then also dealing the layout of the markup you use to replace the current markup. And if filters confuse you and you don’t understand go read this:

    http://dev.themeblvd.com/tutorial/filters/

    I had zero knowledge of how to do filters when I read this thread 16 hours ago and decided to not go the route the above person mentioned.

    EDIT: I thought I’d add that they really could make this a lot easier with very little effort and make it so that you could configure what to use as a display name…. If anyone reads this from bbPress I’d be happy to get involved and do it for them. Seems so dumb to default to make it peoples full names when 90% people don’t want that. That is what facebook, G+ etc is for.

    #139569
    Stephen Edgar
    Keymaster

    bbPress disabled the visual editor in bbPress 2.3 ~8 months ago.

    Take a look at this plugin if you want to enable it again

    https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/

    If you think that is what you want to try please use the download link attached to this post in their support forum as it is an updated version https://wordpress.org/support/topic/not-working-in-bbpress-24?replies=9#post-4687693

    #139567
    Matoca
    Participant

    I have a bbPress forum running that has been successfully running for a little over a month now on a WP blog. Average usage is about 20 posts a day.

    In the last few days I noticed that the Visual tab is not available for replies, only the text tab. I have tried to switch to the visual tab, but it is not available. This would not be so annoying except all posts are emailed to all admins and the replies are full of HTML code. I understand what it is, but the other moderators do not understand it.

    So the emails look like this:
    “worked closely with one of the researchers on this paper <span style=”line-height: 1.428571429;”>(both did their Internal medicine specials together at vet university)</span><span style=”line-height: 1.428571429;”> &”

    I hope someone is able to help. We are a busy forum helping very sick dogs and there probably have been 50 replies in the last few hours.
    Thank you, Matoca

    #139566

    In reply to: Stylesheet Issues

    Stephen Edgar
    Keymaster

    @thetechnoman Are you using custom bbPress templates in your theme?

    It’s hard to tell by your screenshot of what is or is not broken, to me that looks fine but I have no idea what it used to look like, can you give me some more information and/or screenshots of 2.4 vs 2.5 please.

    #139565

    In reply to: Stylesheet Issues

    Stephen Edgar
    Keymaster

    @focallocal Cool, it looks like the patch has worked for you

    The W3 (and any cache plugin for that matter) are known to be funky with bbPress, there are a few discussions here on bbpress.org if you want to know more on that.

    #139564

    In reply to: Stylesheet Issues

    focallocal
    Participant

    i think i’ve found it.

    the problem is only there when W3 Total Cache and bbPress are both switched on, if either are off the problem goes away. i’ve flushed the cache a few times but it made no difference so i believe there is a compatibility issue between the two. W3 is not essential to my site so i’ve switched it off and wont worry too much, but i thought you’d like to know.

    #139559

    In reply to: Stylesheet Issues

    focallocal
    Participant

    i’m making all changes live to my site as i havent launched yet (hopefully in 2 days) and my hosting companies servers are running Litespeed.

    <link rel=’stylesheet’ id=’bbp-default-css’ href=’http://focallocal.org/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.5-5199&#8242; type=’text/css’ media=’screen’ />

    #139557

    In reply to: Stylesheet Issues

    Stephen Edgar
    Keymaster

    It looks like you have patched the file correctly.

    Can you view the source and get the stylesheet path and paste it here:

    eg.
    A ‘failed’ example
    <link rel="stylesheet" id="bbp-default-css" href="http://localhost/wordpress37/wp-content/C:devhtdocswordpress37wp-contentpluginsbbpress/templates/default/css/bbpress.css?ver=2.5-5199" type="text/css" media="screen">

    A ‘working’ example:
    <link rel='stylesheet' id='bbp-default-css' href='http://127.0.0.1/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.5-5199' type='text/css' media='screen' />

    Stephen Edgar
    Keymaster

    Are you hosting this yourself on Windows?

    If so we have a patch for bbPress 2.5.1 here
    https://bbpress.trac.wordpress.org/ticket/2481

    We have had no known issues of this for bbPress 2.4

    Who is your webhost provider and/or what software package and version are you using locally? eg. XAMPP 1.8.3

    ozgurpolat
    Participant

    Hi,

    I have a bbpress Version 2.3.2 installation that works fine but if I upgrade to Version 2.4 or 2.5, the css breaks for subscribers and only for child forums. What I mean is if I have a parent forum and create a child forum, when a subscriber visits the child forum, css doesn’t display properly, but if the user is admin, there is no problem. Not sure how to fix it.

    Thanks

    #139551

    In reply to: Stylesheet Issues

    focallocal
    Participant
    function bbp_enqueue_style( $handle = '', $file = '', $dependencies = array(), $version = false, $media = 'all' ) {
    
    	// No file found yet
    	$located = false;
    
    	// Trim off any slashes from the template name
    	$file = ltrim( $file, '/' );
    
    	// Make sure there is always a version
    	if ( empty( $version ) ) {
    		$version = bbp_get_version();
    	}
    
    	// Loop through template stack
    	foreach ( (array) bbp_get_template_stack() as $template_location ) {
    
    		// Continue if $template_location is empty
    		if ( empty( $template_location ) ) {
    			continue;
    		}
    
    		// Check child theme first
    		if ( file_exists( trailingslashit( $template_location ) . $file ) ) {
    			$located = trailingslashit( $template_location ) . $file;
    			break;
    		}
    	}
    
    	// Enqueue if located
    	if ( !empty( $located ) ) {
    
                    $content_dir = constant( 'WP_CONTENT_DIR' );
    
                    // IIS (Windows) here
                    // Replace back slashes with forward slash
                    if ( strpos( $located, '\\' ) !== false ) {
                            $located     = str_replace( '\\', '/', $located );
                            $content_dir = str_replace( '\\', '/', $content_dir );
                    }
    
    		// Make path to file relative to site URL
    		$located = str_replace( $content_dir, WP_CONTENT_URL, $located );
    
    		// Enqueue the style
    		wp_enqueue_style( $handle, $located, $dependencies, $version, $media );
    	}
    
    	return $located;
    }
    
    /**
     * Enqueue a script from the highest priority location in the template stack.
     *
     * Registers the style if file provided (does NOT overwrite) and enqueues.
     *
     * @since bbPress (r5180)
     *
     * @param string      $handle    Name of the script.
     * @param string|bool $file      Relative path to the script. Example: '/js/myscript.js'.
     * @param array       $deps      An array of registered handles this script depends on. Default empty array.
     * @param string|bool $ver       Optional. String specifying the script version number, if it has one. This parameter
     *                               is used to ensure that the correct version is sent to the client regardless of caching,
     *                               and so should be included if a version number is available and makes sense for the script.
     * @param bool        $in_footer Optional. Whether to enqueue the script before </head> or before </body>.
     *                               Default 'false'. Accepts 'false' or 'true'.
     *
     * @return string The script filename if one is located.
     */
    function bbp_enqueue_script( $handle = '', $file = '', $dependencies = array(), $version = false, $in_footer = 'all' ) {
    
    	// No file found yet
    	$located = false;
    
    	// Trim off any slashes from the template name
    	$file = ltrim( $file, '/' );
    
    	// Make sure there is always a version
    	if ( empty( $version ) ) {
    		$version = bbp_get_version();
    	}
    
    	// Loop through template stack
    	foreach ( (array) bbp_get_template_stack() as $template_location ) {
    
    		// Continue if $template_location is empty
    		if ( empty( $template_location ) ) {
    			continue;
    		}
    
    		// Check child theme first
    		if ( file_exists( trailingslashit( $template_location ) . $file ) ) {
    			$located = trailingslashit( $template_location ) . $file;
    			break;
    		}
    	}
    
    	// Enqueue if located
    	if ( !empty( $located ) ) {
    
    				$content_dir = constant( 'WP_CONTENT_DIR' ); 	 
    		                // IIS (Windows) here 
     		                // Replace back slashes with forward slash 
     		                if ( strpos( $located, '\\' ) !== false ) { 
     		                        $located     = str_replace( '\\', '/', $located ); 
     		                        $content_dir = str_replace( '\\', '/', $content_dir ); 
     		                } 
    
    		// Make path to file relative to site URL
    		$located = str_replace( $content_dir, WP_CONTENT_URL, $located );
    
    		// Enqueue the style
    		wp_enqueue_script( $handle, $located, $dependencies, $version, $in_footer );
    	}
    
    	return $located;
    }
    
    /**
     * This is really cool. This function
    #139549
    Stephen Edgar
    Keymaster

    …the search members (filters) has drop downs. Is this a part of the BBpress plugin?

    No, this not part of bbPress, it is part of your ‘Sweet Date’ theme.

    #139548
    Stephen Edgar
    Keymaster

    We have a patch ready to ship with bbPress 2.5.1

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

    If you could test that patch that would be great, I have tested it on XAMPP 1.8.3 , Apache, IIS and a couple of other systems but we’d like some feedback on the patch before we release 2.5.1 to make sure we haven’t broken something else. 🙂

    #139545

    In reply to: Stylesheet Issues

    Stephen Edgar
    Keymaster

    Yes, it is a bug in bbPress 2.5, we have a patch in and ready for bbPress 2.5.1

    Details are here if you want to apply the patch yourself:
    https://bbpress.trac.wordpress.org/ticket/2481

    If not bbPress 2.5.1 is not far away….

    #139543
    kiwi3685
    Participant

    I wonder, have I misunderstood this new (2.5) feature.

    I expected that once I am subscribed to a forum I would receive email notification of any new post or reply in that forum. But I haven’t received any (and yes, there were posts overnight to forums I have subscribed to)

    Am I wrong? Is “subscription” different to “notification”?

    If they are different, what is the design purpose of subscriptions?

    I had assumed that the subscription feature would mean I could deactivate ‘bbPress Notify’ plugin, but it seems I still need it.

    #139542

    In reply to: bbPress 2.5 is out!

    focallocal
    Participant

    i added the 2481.01.2.patch but bbpress still breaks my site when active (it was fine before the update)

    and here’s screenshots of what’s happening on my site: http://imgur.com/a/4SNAC

    sorry, i have learned from this to wait a few weeks before updating – but if anyone could help me to see what what i’ve done wrong here that’d be a huge help.

    EDIT: As your issue is fixed I removed the huge code chunk you posted. Netweb 3rd Dec

    #139541
    kiwi3685
    Participant

    I simply added this to my bbpress.css file (in my theme folder)

    #subscription-toggle {float:right;}

    #139537

    In reply to: bbPress 2.5 is out!

    focallocal
    Participant

    thanks for the style sheet fix. any idea how long before its officially fixed in bbpress so i can decide whether to have a go at it myself or to wait?

    i’m a little nervous about messing around with code as updates seem to break the things i change.. ironically in this case.

    #139536

    In reply to: Stylesheet Issues

    focallocal
    Participant

    i think i am having the same issue, although i dont understand what windows would have to do with it.

    i updated and the styling on my site was broken. if i deactivate bbpress it comes back to normal. here’s some screen shots: http://imgur.com/a/4SNAC

    notice after the update the headers have turned blue, the outlines of all elements have gone and the image in the top left of the header has moved to the top of the page. the site is: http://www.focallocal.org

    #139535

    Stephen, fyi. I believe that I have the same problem like this one. https://bbpress.org/forums/topic/why-is-forum-index-in-bullet-points/
    I am also asking them how did they fix it.

    thank you

    #139534
    Robin W
    Moderator

    You might need to play a bit, and come back if this either works or doesn’t, I’ve only had a quick look, and suspect there’s a much better way…but

    You main theme uses ‘Helvetica Neue’,sans-serif and the forum is using Arial

    I’m still on 2.4.1 so can’t tell you which lines you need in version 2.5

    So in the bbpress.css file you’ve correctly copied to theme’s folder, do a search for “font-size” and where you find it, add a line

    font: ‘Helvetica Neue’,sans-serif;

    That will take it in common with the main theme’s font.

    for instance

    #bbpress-forums div.bbp-forum-title h3,
    #bbpress-forums div.bbp-topic-title h3,
    #bbpress-forums div.bbp-reply-title h3 {
    	background: none;
    	border: none;
    	font-size: 16px;
     	line-height: 1em;
     	margin: 8px 0;
    	padding: 0;
    	text-transform: none;

    you’d alter it to say

    #bbpress-forums div.bbp-forum-title h3,
    #bbpress-forums div.bbp-topic-title h3,
    #bbpress-forums div.bbp-reply-title h3 {
    	background: none;
    	border: none;
    	font-size: 16px;
     	font: 'Helvetica Neue',sans-serif;
     	line-height: 1em;
     	margin: 8px 0;
    	padding: 0;
    	text-transform: none;
    #139533

    hi Stephen, I am using Window Xampp Apache (3.1.0.3.1.0). I guess that I am not using Window IIS.
    more information as the following base on the research.

    I installed bbpress & buddypress on my site which has pitch theme. I suspect this could be from my theme formatting the bbpress forums this way.the pitch theme is working perfectly. I created a page which is called “Forums”(forum index page). I chose the default template. My forum index page is just a bunch of bullet points listing each text for the topics

    example:
    —-
    Forum
    Topics
    Posts
    Freshness

    Group Forums
    group one (2, 0)
    2
    2
    41 minutes ago
    Avatar of admin admin

    not group forum
    cool
    0
    0
    No Topics
    ———–

    I also asked that Pitch theme is compatibly with bbpress and buddypress or not.

    Thank you

Viewing 25 results - 23,126 through 23,150 (of 64,518 total)
Skip to toolbar