Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 4,101 through 4,125 (of 11,598 total)
  • Author
    Search Results
  • #154634
    Robin W
    Moderator

    sorry for the late reply, I have been busy elsewhere.

    Read private forums is fine, and as it should be.

    I have carefully read through the above, and am struggling to help you further.

    The best I can suggest is that you set up a test site

    https://codex.bbpress.org/creating-a-test-site/

    so that you can try with a default theme and not break you live site

    #154626
    m_elghag
    Participant

    Ok, thought there might be an easy way to just add an conditional to the whole code and test if the forum has a certain parameter.

    #154585
    Robkk
    Moderator

    well its not really a limit on having a certain number of forums
    i think its just a limit of it being on the root page since it doesn’t have pagination.

    for example if you have over 50 forums displayed in the forum root page any additional forum will not display

    i found this function doing a search , i havent tested though.

    plop the code into your child themes functions.php file or your functionality plugin
    and change 100 to whatever you like

    function bbp_increase-forum-per-page( $args = array() ) {
    $args['posts_per_page'] = get_option( ‘_bbp_forums_per_page’, 100 );
    return $args;
    }
    add_filter( ‘bbp_before_has_forums_parse_args’, ‘bbp_increase-forum-per-page’ );

    code is from this topic

    Hitting 50 forum limit? What can I do?

    #154567
    Robkk
    Moderator

    so if we forget

    no one forget.


    @durqrimast
    contact userpros support

    i cant test it out without buying the plugin.

    i did find this in like 20 seconds though

    http://userproplugin.com/userpro/forums/topic/integrating-userpro-profile-links-user-badges-in-bbpress/

    #154566
    Robkk
    Moderator

    try combining the two into this and try it.

    i tested in twenty-fourteen and it worked.

    #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic {
        background-color: #0099FF;
        border: 1px solid #dd6;
    }
    #154557
    Robkk
    Moderator

    @durqrimast contact userpros support

    i cant test it out without buying the plugin.

    #154529
    colinsp
    Participant

    On my site I have several boards in each Forum. Is there a way of showing which of the boards have the latest post? Or alternatively is there an option to show unread posts?

    Wordpress 4.0, bbPress 2.5.4. The forums are not available to view as they are member only.

    What I want is some indication of which board the red circled item refers to in the attached image.

    https://www.flickr.com/photos/7515926@N08/15602098719

    #154515
    tharsheblows
    Participant

    The reason for this is that sending out subscription emails one by one was appreciably slowing down some large sites, so in the last update they switched to bcc’ing in subscribers.

    It’s fairly straightforward to change how the subscription emails are handled once you know how. If you unhook ‘bbp_notify_topic_subscribers’ you can then hook in your own subscription function.

    Below is similar to what I did – I have it in a plugin but you could put it in your bbpress-functions.php file too, I think – this should be in a child theme. If you do this, please test it first as this is simply an example and not necessarily working code. I’ve gone ahead and simply pasted in the function that was used in the previous version of bbPress so you don’t have to find it.

    //custom topic subscription emails, unhook old function, hook in new one
    remove_action( 'bbp_new_reply',    'bbp_notify_topic_subscribers', 11, 5 );
    add_action( 'bbp_new_reply',    'mjj_bbp_notify_topic_subscribers', 11, 5 );
    
    /** 
    * from bbpress / includes / common / functions.php
    * this is taken from 2.5.3 - I've left in all comments to make it easier to understand
    **/
    
    /** Subscriptions *************************************************************/
    
    /**
     * Sends notification emails for new replies to subscribed topics
     *
     * Gets new post's ID and check if there are subscribed users to that topic, and
     * if there are, send notifications
     *
     * @since bbPress (r2668)
     *
     * @param int $reply_id ID of the newly made reply
     * @uses bbp_is_subscriptions_active() To check if the subscriptions are active
     * @uses bbp_get_reply_id() To validate the reply ID
     * @uses bbp_get_topic_id() To validate the topic ID
     * @uses bbp_get_forum_id() To validate the forum ID
     * @uses bbp_get_reply() To get the reply
     * @uses bbp_is_reply_published() To make sure the reply is published
     * @uses bbp_get_topic_id() To validate the topic ID
     * @uses bbp_get_topic() To get the reply's topic
     * @uses bbp_is_topic_published() To make sure the topic is published
     * @uses bbp_get_reply_author_display_name() To get the reply author's display name
     * @uses do_action() Calls 'bbp_pre_notify_subscribers' with the reply id,
     *                    topic id and user id
     * @uses bbp_get_topic_subscribers() To get the topic subscribers
     * @uses apply_filters() Calls 'bbp_subscription_mail_message' with the
     *                    message, reply id, topic id and user id
     * @uses apply_filters() Calls 'bbp_subscription_mail_title' with the
     *                    topic title, reply id, topic id and user id
     * @uses apply_filters() Calls 'bbp_subscription_mail_headers'
     * @uses get_userdata() To get the user data
     * @uses wp_mail() To send the mail
     * @uses do_action() Calls 'bbp_post_notify_subscribers' with the reply id,
     *                    topic id and user id
     * @return bool True on success, false on failure
     */
    function mjj_bbp_notify_subscribers( $reply_id = 0, $topic_id = 0, $forum_id = 0, $anonymous_data = false, $reply_author = 0 ) {
    
    	// Bail if subscriptions are turned off
    	if ( !bbp_is_subscriptions_active() )
    		return false;
    
    	/** Validation ************************************************************/
    
    	$reply_id = bbp_get_reply_id( $reply_id );
    	$topic_id = bbp_get_topic_id( $topic_id );
    	$forum_id = bbp_get_forum_id( $forum_id );
    
    	/** Reply *****************************************************************/
    
    	// Bail if reply is not published
    	if ( !bbp_is_reply_published( $reply_id ) )
    		return false;
    
    	/** Topic *****************************************************************/
    
    	// Bail if topic is not published
    	if ( !bbp_is_topic_published( $topic_id ) )
    		return false;
    
    	/** User ******************************************************************/
    
    	// Get topic subscribers and bail if empty
    	$user_ids = bbp_get_topic_subscribers( $topic_id, true );
    	if ( empty( $user_ids ) )
    		return false;
    
    	// Poster name
    	$reply_author_name = bbp_get_reply_author_display_name( $reply_id );
    
    	/** Mail ******************************************************************/
    
    	do_action( 'bbp_pre_notify_subscribers', $reply_id, $topic_id, $user_ids );
    
    	// Remove filters from reply content and topic title to prevent content
    	// from being encoded with HTML entities, wrapped in paragraph tags, etc...
    	remove_all_filters( 'bbp_get_reply_content' );
    	remove_all_filters( 'bbp_get_topic_title'   );
    
    	// Strip tags from text
    	$topic_title   = strip_tags( bbp_get_topic_title( $topic_id ) );
    	$reply_content = strip_tags( bbp_get_reply_content( $reply_id ) );
    	$reply_url     = bbp_get_reply_url( $reply_id );
    	$blog_name     = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );
    
    	// Loop through users
    	foreach ( (array) $user_ids as $user_id ) {
    
    		// Don't send notifications to the person who made the post
    		if ( !empty( $reply_author ) && (int) $user_id === (int) $reply_author )
    			continue;
    
    		// For plugins to filter messages per reply/topic/user
    		$message = sprintf( __( '%1$s wrote:
    
    %2$s
    
    Post Link: %3$s
    
    -----------
    
    You are receiving this email because you subscribed to a forum topic.
    
    Login and visit the topic to unsubscribe from these emails.', 'bbpress' ),
    
    			$reply_author_name,
    			$reply_content,
    			$reply_url
    		);
    
    		$message = apply_filters( 'bbp_subscription_mail_message', $message, $reply_id, $topic_id, $user_id );
    		if ( empty( $message ) )
    			continue;
    
    		// For plugins to filter titles per reply/topic/user
    		$subject = apply_filters( 'bbp_subscription_mail_title', '[' . $blog_name . '] ' . $topic_title, $reply_id, $topic_id, $user_id );
    		if ( empty( $subject ) )
    			continue;
    
    		// Custom headers
    		$headers = apply_filters( 'bbp_subscription_mail_headers', array() );
    
    		// Get user data of this user
    		$user = get_userdata( $user_id );
    
    		// Send notification email
    		wp_mail( $user->user_email, $subject, $message, $headers );
    	}
    
    	do_action( 'bbp_post_notify_subscribers', $reply_id, $topic_id, $user_ids );
    
    	return true;
    }
    biscuitier0
    Participant

    Okay I managed to do roughly what I wanted without changing the functions.php. Here’s how:

    1) I installed bbP Members Only plugin https://wordpress.org/plugins/bbpress-members-only/, I then created a test forum and topic

    2) I created a page called ‘member login’ and put the [bbp-login] shortcode in this page (no menu link for this page)….

    #154429
    Icaroferreira
    Participant

    Hello,

    What is the procedure to display the profile photo, in the option “Latest posts”? Same have is here in this forum.

    Helpe me please.

    Regards,
    Icaro

    #154427
    Robkk
    Moderator

    @atfpodcast
    i just checked on my side with the latest raindrops theme ,

    i checked to see if all of the quicktag buttons worked
    they did.

    i checked if some of the bbcodes from gdbbpress and bbpress2 bbcode didnt just process the bbcode out well
    they did.

    i didnt run bbpress2 bbcode with bbpress direct quotes while gdbbpress tools activated at the same time, because i mean they do the same thing.

    if you feel like the quicktags toolbar is really causing the problem and you have some error logs to post or images of error logs or any other info you can get while debugging is on, make a new topic with all the information in it.

    #154399
    readwriteandedit
    Participant

    I’m trying to format the background and the border for the lead topic, just as you’ve done here in the bbPress forum. I used Firebug to see your code, which is

    #bbpress-forums ul.bbp-lead-topic li.bbp-body {
        border: 1px solid #dd6;
    }
    #bbpress-forums ul.bbp-lead-topic li.bbp-body div.topic {
        background-color: #0099FF;
    }

    But when I add this to my child theme’s CSS (where I’ve successfully made other bbPress changes), nothing changes.

    I don’t know if something else I’ve changed is preventing this from changing or maybe if you have something in the setup that I don’t have, something that allows you to style this in CSS when I can’t.

    Any suggestions? The forum is private, but I can get you in temporarily, if that would help. Or I could paste into a comment all the changes to bbPress I made in my CSS.

    (Note: I changed your color for testing purposes)

    Thanks for any help you can give me.

    Beth

    #154396
    realerq
    Participant

    Hello, @Robin-W

    Thanks for your quick reply.

    I tried to deactivate all plugins i have except for bbpress(actually i also tried to reinstall all of them that can be connected to bbpress) and it gave no result.
    I am in fear of changing my theme as it can just break all the site, so i can’t do it now(but my theme author actually was the on who suggested to use your plugin, so i believe it shouldn’t be the case)

    So currently i have this:

    Main: WordPress 4.0

    Theme: Kleo 2.1.1

    Plugins installed and activated:
    bbP last post 1.0
    bbP private groups 2.4
    bbPress 2.5.4
    bbPress – Private Replies 1.2
    bbPress Enable TinyMCE Visual Tab 1.0.1
    bbPress Go To First Unread Post 1.1
    bbPress Pencil Unread 1.0.9
    bbPress Post Toolbar 0.7.5
    bbPress String Swap 1.4.0
    bbP topic count 1.3.1
    Black Stupio TinyMCE Widget 2.1.6
    BuddyPress 2.1.1
    Capability Manager Enhanced 1.5.2
    GD bbPress Tools 1.6
    Global Hide Toolbar 1.6.1
    K Elements 2.1.1
    Rendez Vous 1.1.0
    Revolution Slider 4.6.0
    rtMedia for WordPress, BuddyPress and bbPress 3.7.16
    Taxonomy Metadata 0.4
    TinyMCE Advanced 4.1.1
    W3 Total Cache 0.9.4
    WordPress Importer 0.6.1
    WPBakery Vusual Composer 4.3.4

    Plugins installed, but deactivated:(dont really think it matters, but who knows)
    Akismet 3.0.3
    bbp buddypressprofile information 1.0
    bbPress Topic Thumbnails 1.2
    bbPress Unread Posts 1.0
    BBSpoiler 1.01
    Custom Field Suite 2.3.8
    Global Hide Toolbar Bruteforce 1.6.1
    Google Apps Login 2.5.2
    Google Drive Embedder 3.1
    Jetpack WordPress.com 3.1.1
    P3(Plugin Performance Profiler) 1.5.3.1
    Paid Membership Pro 1.7.14.2
    Rss Post Importer 1.0.7
    Use Any Font 4.2.1
    wp-Monalisa 3.4
    WP Login Timeout Settings 1.1.0
    YouTube Channel 2.4.0.2

    What i have now:
    5 groups in plugin, member testuserrq is subscriper to a site and a participant to a forum. He is inside group1 in plugin. I have some forums private and they are marked only for groups2-4. This user can’t see this forums when he is browsing forum, but if he will try direct-link he can see it and he can browse it further(for example by direct link to a forum and then to threads in this forum)
    I tried different options in plugin, created new forums and changed groups, but still problem with direct link persists. If i will give user reader right in forum he cant see this themes anymore, only as participant. Changing his role to site does nothing(i can even turn it off).
    I tried installing capability manager enhanced to look what capabilities this role have and i see it has read private forums – should it be this way? I guess it is how it goes by default.

    Please, try to give me any direction where i can look at, because its crucial for my site(as i rely on forum much and forum access security is a subject of a main concern)

    Sorry for so many text and this mess 🙁

    #154389
    wookey
    Participant

    Hi _ck_

    Do you have an updated version of your plugin that works with the latest version of bbpress?

    Here’s the only one I can find for download:
    https://plugins-svn.bbpress.org/bbpress-theme-switcher/trunk/

    Alternatively, how can I get this working without a plugin?

    Thanks for all your work!

    #154347
    Pilxy
    Participant

    Hi,

    I’m using latest WP version (4.0) and have bbPress 2.5.4-5380 installed.

    I have a problem with the profile (Avatar and Username) on the replied posts.
    Profile in the First post is allways fine, but profiles in all other posts below are not aligned properly and have some kind of border/background with an hover effect.

    Here is the link to my test page forum: http://www.geosledec.si/wp/forums/topic/new-topic/

    The problem must be theme related as it only exist if I’m using that theme. TwentyEleven works fine.

    I tried asking for help in the theme support forum, but it seems no one can help me there, so I hope someone here has a better knowledge and could help me deal with that.

    Thank you. 🙂

    #154343
    Robin W
    Moderator

    @realerq

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    then come back

    #154339
    wookey
    Participant

    I managed to implement a custom function to search by $forum_id and it’s all working and great, and it was done using the instructions from this page.

    What I need is a way to search by user. Here’s what the search by forum function looks like:

    function my_bbp_filter_search_results( $r ){
    	//Get the submitted forum ID (from the hidden field added in step 2)
    	$forum_id = sanitize_title_for_query( $_GET['bbp_search_forum_id'] );
    	//If the forum ID exits, filter the query
    	if( $forum_id && is_numeric( $forum_id ) ){
    		$r['meta_query'] = array(
    			array(
    				'key' => '_bbp_forum_id',
    				'value' => $forum_id,
    				'compare' => '=',
    			)
    		);
    	}
    	return $r;
    }
    add_filter( 'bbp_after_has_search_results_parse_args' , 'my_bbp_filter_search_results' );

    I tried changing all instances of the word “forum” to the word “user”, but no dice. I tried doing searches like this:
    http://mysite.com/search/?bbp_search=testword&bbp_search_user_id=123

    But nothing I does works and I’ve spent many hours tearing my hair out trying to get it working. I would hugely appreciate any assistance making it happen.
    Thanks

    #154333
    atfpodcast
    Participant

    probably , the guy does have a separate support forum just for premium plugin users

    he might just be busy and more concentrated over there more since the plugin provides income for him

    Why would some one pay for support on a non working plugin lol

    i tested the plugin in the latest firefox and chrome , not IE though.

    it could be a cache system/plugin or a minify plugin minifying the direct quotes plugins javascript wrong but im just guessing right now.

    I dont have caching but with all plugins deactivated other then the ones needed for forums its not working

    i would say contact as much people as you can to help solve the issue.

    or just give up on having bbCode.

    #154330
    Robin W
    Moderator

    Topic pages are not appearing. They appear as links on the indexes, and I can create new ones, however if I click them, I am taken to a page of a messed up template

    so I suspect that the links are working fine, it’s just the template is conflicting, suspect theme issue

    It could be a theme or plugin issue

    Plugins

    Deactivate all but bbpress and see if this fixes. if it does, re-enable one at a time to see which is causing the error.

    Themes

    If plugins don’t pinpoint the problem, as a test switch to a default theme such as twentytwelve, and see if this fixes.

    #154326
    Robkk
    Moderator

    I wonder if I said I wanted to go pro I bet he would reply

    probably , the guy does have a separate support forum just for premium plugin users

    he might just be busy and more concentrated over there more since the plugin provides income for him.

    I manually did the quote and it put it in the lower area of the post.

    you probably have to contact your theme author, on how to fix that.

    it might be you have float:left; or clear:left; in the css and that might be causing the issue.
    switching both to none should fix it.

    I don’t see anything with this new plugin either… 🙁 Not even a quote either.

    It’s working in IE not firefox. grrrrrrrrrrr I don’t know why it worked in raindrops when I installed it and now it wont and I cant find any plugins messing with it.

    i tested the plugin in the latest firefox and chrome , not IE though.

    it could be a cache system/plugin or a minify plugin minifying the direct quotes plugins javascript wrong but im just guessing right now.

    i would say contact as much people as you can to help solve the issue.

    hosting support
    plugin support
    theme support

    #154324
    drakesong
    Participant

    Hello, I am fairly new to WordPress.

    I recently added bbPress to my site and tested out the forums.

    I created a “testuser” so that I could post on the forums; however, after signing into “testuser”, I found out that the role “participant” can access the Dashboard of WordPress and through the Dashboard, the Theme Options and change it.

    Not sure if this is supposed to happen or not but I would like to know if there is a way to restrict the “participant” from accessing Dashboard and other WordPress options.

    Thanks

    #154300
    akyboy
    Participant

    link me to a post with a quote

    ill check and see if it can be easily fixed

    if not you probably have to find it out yourself or hire a person to fix it.

    Test

    #154289
    Danpajosite
    Participant

    Hello,

    I have a strange thing going on on my site. When I want to leave a comment below a blog post it is not possible for me to click the WYSIWYG editor field. I cannot type any comment. Not as an Administrator or normal user.

    After searching a lot I have noticed that the setting “Add a toolbar and buttons to text boxes to help in HTML format is causing this strange behaviour.

    When I turn this setting off I can type a comment. When I turn it on again its not possible anymore to click the comment field.

    How to solve this because the buttons are needed. With the seettings turned on I can only leave a commment after hitting F5 multiple times.

    To see an example go to click here its a dutch article but that doesnt matter.

    At this moment it is not possible to leave a comment. I have turned “Add a toolbar and buttons to text boxes to help in HTML format” on. You can use for login

    login: testpiet
    pass: test123

    Let me know when you want me to turn the bbpress setting off.

    Or how I can solve this.

    Regards

    jap

    #154286

    In reply to: Quicktags out of line

    Nellples
    Participant

    Thanks Robkk, I’ve setup a subscriber user account for you to login to the wp-admin.

    Username – tester
    Pword- 1234

    Many thanks

    #154284
    aniaorome
    Participant

    Hello!

    So there are about a dozen (dozen) topics about this, but here goes:

    So:
    WP 4.0
    bbPress 2.5.4
    a ton others (none that influences my users and their access)

    I created the test forum, the test topic, the page with the ‘forums’ pretty permalink and the whole shebang.

    I have a custom theme (cause I need it :D) and custom permalinks (with the needed .htaccess file).

    The topic page appears without problem, but the forum page gives me a “Page Not Found”.

    Any suggestions?

    Thanks!
    Ana

Viewing 25 results - 4,101 through 4,125 (of 11,598 total)
Skip to toolbar