Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 22,151 through 22,175 (of 64,534 total)
  • Author
    Search Results
  • #141912
    #141910
    brightbell
    Participant

    I have been building a site http://www.racingpigeon.com
    The site includes a bbpress forum.

    I found that there was peculiar things going on with the forum such as it could not be accessed from the back end. It can be viewed from the front end until someone logs in then it becomes blocked and returns 404. This happened first on the production site but was confirmed on a pilot installation also by deactivating and reactivating Ad King Pro. 1.9.9
    bbPress 2.5.3

    #141908

    In reply to: Forum root confusion

    gastronomicslc
    Participant

    Fixed it myself ๐Ÿ™‚

    I guess bbPress and Genesis don’t play nicely out of the box and the Genesis bbPress extend plugin is needed.

    #141907
    gastronomicslc
    Participant

    Hi all.

    My apologies if this is a fairly rudimentary query, or one covered elsewhere, I did search but managed to only confuse myself more ๐Ÿ˜‰

    My site is:
    http://www.gastronomicslc.com/

    Running latest WP and a Genesis based theme from Studiopress. I installed bbPress but am having issues generating a coherent main page, I guess the forum root if you will. I followed the install instructions and made my forum root slug (foodie-talk), I also then made the foodie-talk page, however that doesn’t seem to work:

    http://www.gastronomicslc.com/foodie-talk/

    I have created two test sub-forums

    http://www.gastronomicslc.com/foodie-talk/forum/general-talk/
    http://www.gastronomicslc.com/foodie-talk/forum/ask-expert/

    with a test post in each. I have yet to link to the bbPRess directly from my site while I work on this. On the foodie-talk page I have the [bbp-forum-index] code right now.

    I imagine I have made some simpleton fault, appreciate anyone pointing it out ๐Ÿ™‚

    JustinF
    Participant

    Hi John-

    Sorry for the delay. The add-on I was referring to was this:

    https://wordpress.org/plugins/bbpress-private-replies/

    It appears it is not compatible with the current version of bbpress in that the replies that are marked as “private” are in fact viewable by users without Admin permissions if using the Search function.

    I suspect Pippin would be the one to contact for this?

    #141904
    Prometheus Fire
    Participant

    In BBPress, is there an equivalent to WP’s next_post_link() and previous_post_link() functions to create navigation to the next topic?

    Reference:
    http://codex.wordpress.org/Function_Reference/next_post_link
    http://codex.wordpress.org/Template_Tags/previous_post_link

    If not, can anyone think of a custom way to create one, or do something similar?

    #141903

    There are a few plugins that jumpstart WordPress’s roles and capabilities, which can cause permissions issues with bbPress (and any other plugin that relies on roles and capabilities.) These plugins are __doing_it_wrong() in the conventional sense, and there’s not much bbPress can do about that other than throw debug notices when WP_DEBUG is turned on.

    #141900

    It looks to me like bbPress isn’t finding its default CSS. You could try reinstalling bbPress; it’s possible you have an incomplete installation, with only some non-essential assets were caught missing.

    Otherwise, it could be a plugin conflict, or some other code might just be getting in the way of bbPress’s CSS loading. You could also try deactivating plugins one at a time, and seeing if something new you’ve added recently is causing this to happen.

    #141899

    Sounds to be like qTranslate is accidentally stomping out bbPress’s top level menu locations. WordPress’s code in regards to navigation has a tendency to be pretty fickle in this regard.

    bbPress even takes measures to try and avoid this from happening on its own, but it looks like it’s still not enough anymore.

    We’ll see if there’s anything we can do on our end to avoid any of these kinds of menu collisions again. If so, improvements will come in a future version of bbPress.

    #141898

    The most likely culprit is another plugin causing a conflict. If you’re an admin already, activating bbPress, it forces your forum role to Keymaster so you’re able to administrate the forums completely.

    #141894
    Shmoo
    Participant

    – Yes the plugin is 100% sure active and working because you can see ( red border ) the topic is reported , I’ve even deactivated & activated it again to make sure when I saw that error.

    – It’s a clean copy-/paste from the plugin’s functions file. I’ve even added echo in front of it to check if there was a difference but both with & without echo have the same error.

    Why I ask if a plugin function can be private or protected is, when I take a look inside the plugin function-file I see all functions wrapped inside a class which is pretty standard for making plugins I’ve seen online.

    But I also see something like this:

    
    	protected $version = '1.0.0';
    	protected $plugin_slug = 'bbpress-report-content';
    	protected static $instance = null;
    	protected $plugin_screen_hook_suffix = null;
    	protected $plugin_path = null;
    ____
    	private function __construct() { ....
    
    ____
    	public static function get_instance() {
    
    		// If the single instance hasn't been set, set it now.
    		if ( null == self::$instance ) {
    			self::$instance = new self;
    		}
    
    		return self::$instance;
    	}
    
    

    Most functions have public function function_name() and the function I would like to use has only function function_name()

    That made me think maybe my function it’s protected, so I started testing and searching online and did this inside my page template.

    
    <?php if(function_exists('get_topic_report_link')) {
    echo get_topic_report_link( $args = '' );
    } else {
    echo 'Function does not exists..';
    }
     ?>
    

    It takes the ELSE option so there is something wrong right.

    ___

    This is what I did to kill for example the Merge link from the admin_links, preventing it would show up something else when called upon.

    
    function shmoo_kill_topic_merge_link( $r ) {
    	$r = null;
    	return $r;
    }
    add_filter( 'bbp_get_topic_merge_link', 'shmoo_kill_topic_merge_link' );
    

    I’m a Check Norris fan, when I change stuff it has to be NULL ๐Ÿ˜‰

    I know, I probably add and write too much functions-/codes of my own to alter the bbPress core but at least I’m getting it done right now and starting to understand how it works a little. In a few years I will be better ( hopefully ) and add more logic to my projects.

    #141889
    Shmoo
    Participant

    – Plugin to filter bad words can done by almost any WordPress plugin that does this kinda trick, it will also filter bbPress posts.

    – Who’s online I have no idea. I don’t think this is available.

    #141888
    Shmoo
    Participant

    If you know a little CSS and you’re not afraid the change the bbPress templates a little you can make this happen with through the forum_id(); which is unique for each forum.

    Take a look inside loops-forums.php ( the template that starts the forums loop ) you’ll find this. <?php bbp_forum_id(); ?>

    Copy that, next open your loop-single-forum.php and paste that code where you would like your image to show up.
    For example something like this could be possible.

    
    <img class="bbp-featured-img" src="http://example.org/images/forums/featured_forum_<?php bbp_forum_id(); ?>.png" alt="<?php bbp_forum_title(); ?>" /><a class="bbp-forum-title" href="<?php bbp_forum_permalink(); ?>"><?php bbp_forum_title(); ?></a>
    

    All you have to do now is make sure you call your forum images featured_forum_[ID].png and upload them to the path you set in the image tag.

    If you Hover over the forum names at the WP back-end you’ll see where the URL-page is pointing to if you would’ve clicked it, this link has a number like 88 or something, each forum has an unique number so your could pick that number and call it in your images, featured_forum_88.png >> upload the image and it will show up next to the forum title.

    Change-/position it a little by CSS ( img.bbp-featured-img { } ) and you’re done.

    I’ve done this myself the same way only with icon-fonts in front of the forum titles.
    It’s a little bit of customization and it has a static feeling but it’s not that difficult and works perfect.

    Edit

    Almost forgot to say, don’t change the bbPRess template files inside your plugins directory but copy those files to your theme directory.
    https://codex.bbpress.org/theme-compatibility/

    #141884
    Kris35
    Participant

    Hi. Is there a way to add mandatory custom fields in the BBPress registering process? I did get someone to add a text field for the location but it wasn’t mandatory and for the UK, they were adding variations like England, Britain etc so in my user directory and search, people looking for people in the UK would only find people in the UK and not in England or the United Kingdom etc. So I had to go and edit their profiles to say United Kindom so they would come up in the search. Sooo…what I really need is not a text field but a drop down or other thingy where new members have to choose where they are from from the options they are given. So I need a list of all countries and then for now, a list for US states and UK counties. I have a coder to do this for me (Ive not got a clue)….is it possible to do this by configuring BBpress or is a custom code thingy needed? If I can do it, I will show it here maybe so others can see?

    #141882
    barnabe
    Participant

    Hi all,

    I try to make a multilingual website with WordPress and I have a bug (?) when I activate bbPress and qTranslate both.
    Indeed, the bbPress’ menu in admin appears correctly when qTranslate is disabled, but disappears when both are activated. And if I try to go to the edit topic’s page, WordPress says to me I don’t have rights. I debug the allcaps WP_User property and I don’t find the edit_topics capability.

    How can I fix that problem?

    Subsidiary question: Does bbPress allow multilingual?

    My config :

    – WordPress 3.8.1 (last)
    – bbPress 2.5.3 (last)
    – qTranslate 2.5.39 (last)

    Thanks!

    #141877
    Kris35
    Participant

    Ta John,

    I need to look into this as currently I am using amr user list for a list of members. Hmm. Never knew BuddyPress profiles even existed. Maybe I should combine the two – both BBPress and BuddyPress? Ive read that sometimes the two dont play well togfether so am a bit worried about that. The BBPress profiles are quite basic I think, so would you say that BuddyPress is the same regarding layout etc? Also, going off topic slightly – amr has a search function….is there a way via the BBPress or BuddyPress registration to add a location field that people have to fill in via a drop down menu and not a text box. At the moment I have a text box location in my BBPress registration thingy but its not mandatory, and also members are adding their locations as UK, United Kingdom, Britain, England and such so I have to go in and edit those to say United Kingdom so they come up in the search. Does my message make sense? Ive just got up! Thanks.

    #141876
    dichter4fun
    Participant

    Same here. Fresh install of WP 3.8.1 an bbpress 2.5.3. Cannot create a new forum always getting the error invalid post type. I’ve checked the user roles and created a second user with administrative rights but nothing helped.

    Any ideas what went wrong?

    Thank you, Stefan!

    #141874
    Sreekanth Reddy
    Participant

    I tried to install bbpress for several times . Its installing correctly but no links were displayed to create a new forum or settings.

    One time it shown an error ” you have no sufficient permissions”

    Please let me know where i did wrong.

    Latest WordPress
    Latest bbPress

    Thank you

    Sreekanth

    #141873

    In reply to: bbPress 2.5.3

    lanse20
    Participant

    Hello admin.

    I m from china and my english is not good, so please forgive me for my words
    I dont know if this question is mentioned before
    I run a simple website ,
    evilstore.me for my group of people
    and bbpress is a very important part.we chat and discuss with it a lot.
    I have a problem.in the “Activity” , Comments and replies have no notifications ,this make me really hard to see whats happening๏ผŒI hope the next buddypress can have a notification for Comment reply notifications. that would really helpful
    please tell me how can i solve this problem ,or if there is any similar cases,thank you so much

    #141868
    Tearstone
    Participant

    It has been about two weeks since I converted my vBulletin forum over to BBPress. The existing forum has been around since 2008 and since the conversion, we have been receiving emails over entire history of the site that topics have been replied to. These are notifications that have been sent non-stop since the conversion.

    I installed Buddypress and BBPress at the same time, so I’m not sure exactly what is causing all of these emails to continue to be sent out. How do I stop these notification emails from going out? I’ve already attempted to add the following code to my site specific plug-in, but it does not seem to have helped much. I guess it helped with mentions but not the replies.

    remove_action( ‘bp_activity_posted_update’, ‘bp_activity_at_message_notification’, 10, 3 );
    remove_action( ‘bp_groups_posted_update’, ‘groups_at_message_notification’, 10, 4 );

    What are the BBPress hooks to stop reply notifications? I just want them to stop for awhile without disabling email site wide.

    #141865

    Sure did; thanks. I ways able to create an account easily enough, but it looks like logins are completely broken on your site; they do not even work through WordPress’s traditional wp-login.php directly (which is what bbPress sends login data to.)

    Something else is wrong, outside of bbPress, though it’s difficult to troubleshoot on this end. It might be the case-sensitive URL (with “Install” in there) or it could be any other server config, plugin, theme, or random cookie issue.

    Sorry I can’t be much more help, but hopefully this helps you sniff it out.

    #141862

    A few things to check:

    • Is the plugin active?
    • Are you calling the function correctly (named correctly, etc…)?
    • Cherry picking functions and putting them in your functions.php file can be tedious, since you’re stuck supporting all your own new code rather than letting the plugin do the work. Are you sure you’re comfortable with this?
    • If the function says it’s undefined, it means whatever file you’re putting that code in, isn’t loading. Why not?

    You’ll likely have better results if you filter the results of bbp_after_get_topic_admin_links_parse_args like so:

    /**
     * Replace the individual link calls with your own functions
     */
    function foo( $args = array() ) {
    
        $args['links'] = array(
            'edit'  => bbp_get_topic_edit_link ( $args ),
            'close' => bbp_get_topic_close_link( $args ),
            'stick' => bbp_get_topic_stick_link( $args ),
            'merge' => bbp_get_topic_merge_link( $args ),
            'trash' => bbp_get_topic_trash_link( $args ),
            'spam'  => bbp_get_topic_spam_link ( $args ),
            'reply' => bbp_get_topic_reply_link( $args )
        );
    
        return $args;
    }
    add_filter( 'bbp_after_get_topic_admin_links_parse_args', 'foo' );

    Keep in mind that each link function accepts its own parameters (including the ability to change the text to anything you want) so you can either pass new parameters, or filter each link and adjust them. This way you can just filter bbPress’s core functionality rather than rewrite everything on your own

    #141860
    Shmoo
    Participant

    I kinda know how filters work right now and I’ve used them a few times to hide or change default bbPress functions.

    As you can see at my screenshot I’ve completely removed the Merge, Split, Move and Reply links from my admin_links() function because I don’t need them. It’s a fun thing to do if you start to understand how it works.

    The only problem is,
    bbp_topic_admin_links(); is just a wrapper for all the links, each link has it’s own function and if you play nice with them you can copy them and use them straight into your page templates and you’ll see your link-/button show up wherever you want them to show up.
    This is great, I’ve done something like this shmoo_bbp_topic_edit_link(); changed and reused the default topic link function and placed it at the top of the content as you can see in my screenshot.

    Great, only thing is, if I try to do the same with a function from a plugin developer it says; Fatal error: Call to undefined function get_topic_report_link()

    Why is this function undefined ??
    The developer has made that function in his plugin file – which hooks straight into my functions.php , why can’t I use his functions the way I do use the Core bbPress functions inside my functions.php file..

    I would like to remove the report link from the admin_links and bring it solo to the top of the content.

    #141859

    In reply to: Private Messaging?

    Integrating BuddyPress and bbPress should be a breeze. One thing to keep in mind however, is that bbPress user profiles yield to BuddyPress’s member profiles. This could be overridden with a plugin, but is the default experience when integrating them together.

    #141857

    By default, closed topics get a greyed out text color. You can override this with some CSS tweaks that target it specifically. Something like:

    #bbpress-forums .status-closed,
    #bbpress-forums .status-closed a {
        color: red;
    }
Viewing 25 results - 22,151 through 22,175 (of 64,534 total)
Skip to toolbar