Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 17,851 through 17,875 (of 64,532 total)
  • Author
    Search Results
  • #154341
    jmellors
    Participant

    Hi there,

    I am currently doing some theme modifications and was hoping to get BBPress working with a Travelify theme which I’ve modified. It doesn’t seem to be working however, and shows up as follows:

    http://mellxx.byethost5.com/blog/forum/

    If anyone could help/ has any ideas and/ or could suggest any similar themes that BBPress is compatible with, that would be greatly appreciated.

    Regards,
    Joseph 🙂

    #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

    helal.desk
    Participant

    Hi,

    I am having problem on my site where I have a bbpress login/logout widget and without typing any user/password in field of widget if I press the Login Button then it redirect me to wp-login.php login page. I need a solution on how do I redirect them to home page or to the page I want?.

    WordPress: 4.0
    BBpress: 2.5.4
    BuddyPress: 2.1.1

    Thanks.

    #154337
    Robkk
    Moderator

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

    its works for other users

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

    again im just trying to bring up possible conflicts that might be causing the issue.

    or just give up on having bbCode.

    well i guess you just tell your users that your site has oembed and it can be used in the forums as long as you have Auto-embed Links checked in the forum settings.

    and that any youtube/vimeo video link will automatically embed
    imgur/flickr will automatically embed and so on.

    images from other sources can use the img button in the quicktags toolbar

    and options like bold/italicize/link/block-quote can be used from the quicktags toolbar.

    we have been using block-quote button back and forth so to replace quotes you can do that too.

    list of available oembed providers

    https://codex.wordpress.org/Embeds

    more on forum settings

    https://codex.bbpress.org/forum-settings/

    #154331
    Robin W
    Moderator

    1) just use the

    [bbp-single-forum id=$forum_id] – Display a single forums topics. eg. [bbp-single-forum id=32]
    

    shortcode on the page to do that

    2) That can all be done using coding, but would require a lot of code and expertise both within bbpress/wordpress and to link it to a payment product to take the money, and you’ll lose a lot of revenue in commission on 75p payments on say payal, who take a 20p a transaction charge as well as 3.4% commission.

    Ballpark say £100-£200 for a coder to write that all for you (without looking that’s the sort of figure I’d expect to charge to write that, but it could be a lot more)

    You would do better to look at a ‘membership’ site plugin, and take a payment per say ten ‘ads’, and use something like ‘bbp notify’ to know when they’ve posted, and a simple excel spreadsheet which you manually update. Then suspend membership or block posting when they have used up their limit.

    #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.

    #154328
    Robin W
    Moderator

    you can just untick the toolbar option for each user in dashboard>users and edit a user

    If you want to disable for all but admins, put this in our functions file

    <?php
    
    //disable toolbar for non-admins
    
    if (!current_user_can('manage_options')) {
    show_admin_bar(false);
    }
    

    Functions files and child themes – explained !

    #154327
    Robkk
    Moderator

    @bsilverop thanks , ya need anymore help or find something awkward in your bbpress section of your site please feel free to make a new topic

    #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

    #154323
    Preston
    Participant

    WordPress Version: 4.0
    bbPress Version: 2.5.4
    Theme: Lightly modified Skeleton (http://themes.simplethemes.com/skeleton/)

    I’m using this code: http://pastebin.com/7NQnubJP to add custom fields in a specific forum. Everything is working great except for when I try to edit an existing topic. When I try to edit an existing topic, the custom fields aren’t displayed on the page, and therefor aren’t editable. Only the normal Title and Content fields are displayed.

    The issue still happens while using an unmodified Twenty Fourteen theme (besides adding the relevant code to the functions.php file, of course).

    I haven’t had any luck finding out what the problem is, but I’m hoping it’s something simple.

    I appreciate any help!

    #154310

    In reply to: Quicktags out of line

    Robkk
    Moderator

    im not sure about the e

    have you been editing templates??

    did your theme come with bbpress templates already in it??

    but i did find this other little bug that shows the little checkbox thats right by Notify me of follow-up replies via email thats all awkward and what not.

    #bbpress-forums fieldset.bbp-form input {
    margin: 0 0 8px;
    width: auto;
    }
    #154308
    akyboy
    Participant

    Hi Rob,

    i have bbpress.css in my theme css folder

    when i was setting it up i read instructions and i think i did it right 😛

    so it is in:
    /themes/tank/css/bbpress.css

    I have used code you just posted and i see difference but still not the way it is supposed to be )

    #154307
    Robkk
    Moderator

    @akyboy

    hopefully you are putting it into your child themes stylesheet
    or in a plugin like jetpacks custom css

    it doesnt have to be in the bbpress.css file, because the code is in your themes stylesheet.

    since it didnt work try this.

    blockquote {
    font-style: italic !important;
    width: 200px;
    float: none !important;
    clear: none !important;
    padding-bottom: 15px;
    }
    #154305
    akyboy
    Participant

    Thanks Rob,

    tried to put in in both themes style.css and ../themes/tank/css/bbpress.css

    doesn’t work

    #154303

    In reply to: Quicktags out of line

    Nellples
    Participant

    Bingo! Works much better, thanks so much Robkk you’re a superstar!

    I don’t suppose you happen to know where the random ‘e’ character has appeared from above the Quicktags do you? I think its been there since I first installed bbPress.

    #154295
    shriji252
    Participant

    thanks bud

    I had @import in my child theme

    did as mentioned in

    put below code in style.css in child theme
    ———————————————–
    #bbpress-forums {
    font-size: inherit !important;
    width: 100% !important;
    }


    @media
    screen and (min-width: 1008px)
    .bbpress .site-content {
    margin-right: 0 !important;
    margin-left: 182px !important;
    }

    .bbpress .site-content {
    margin-right: 0 !important;
    margin-left: 0 !important;
    }
    ———————————–
    also copied page.php (from twentyfourteen folder) and renamed to bbpress.php put in root of child theme

    #154294
    dmx09
    Participant

    Hi all,
    I am trying to figure out how to style a single forum page differently to the main forum pages. I know I can do a conditional statement so say when on this page, do this, however I think there might be an easier way.

    Can I use the usual naming & hierarchy structure used by WordPress? ie; when I have a custom post type named ‘movies’ I can use a template for this page called ‘single-movies.php’.

    Can I do something like this perhaps?
    forum-my-forum-name.php
    or bbpress-my-forum-name.php

    I’ve tried but didn’t seem to work for me so maybe I’m missing something fundamental.

    Thanks in advance.

    #154293
    akyboy
    Participant

    Just for anyone in the future who wants it dofollow, outcomment the lines. So
    //add_filter( ‘bbp_get_reply_content’,’bbp_rel_nofollow’, 50 );
    //add_filter( ‘bbp_get_topic_content’,’bbp_rel_nofollow’, 50 );
    That’ll work.

    That actually worked well.

    But i have another problem, i removed nofollow in order to try to get light box working on bbpress posts, its working fine on wp posts however.

    I need rel=”lightbox” on images in posts, how to add that filter if anyone can help?

    Thanks

    #154292

    In reply to: Quicktags out of line

    Robkk
    Moderator

    try this anywhere where you can put custom css

    #bbpress-forums div.bbp-the-content-wrapper input {
    font-size: 12px;
    padding: 5px;
    margin: 0 2px 0 0;
    line-height: 1em;
    width: auto;
    }
    #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

    #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

    #154283
    Robin W
    Moderator

    see

    Trying to make forum full width

    for how they did it

    #154282
    Cabeiri
    Participant

    I just finished setting up a new site and went live this week. I’m now getting an error within my bbPress forum that reads, “Error: Taxonomy isn’t defined”. What do I need to do in order to fix/make this message go away? It is only shown once you select a topic to view, at the top of the page, following the title of the topic.

    Wordpress 4.0

    bbPress – 2.5.4

    Community Forums

    #154278
    sicky_brazz
    Participant

    Hi, before i go ahead and start trying to make a car enthusiast site built on my current ideas, i wanted to know if this is possible, and if so, how..?

    1) – Multiple Forums
    I would like to have multiple bbPress forums over multiple WordPress pages, e.g. “general forums” on one WP page, a “buy/sell” forum on the second WP page, a “Services” forum on another WP page etc. and all while having the same login/passwords etc.

    2) – Pay Per Thread
    I would like to charge users a set amount, say maybe 75p to post a thread (not a reply etc.) in the “buy/sell” forums and say maybe 50p to post a thread (again, not a reply etc.) in the “Services” forum so that I make the money to sustain my site from people posting items for sale or offering a helping hand (a “service”) for a smaller fee than a garage etc.

    #154274
    Confuzion
    Participant

    Is there a way for BBpress to allow a newly registered user to post in a private forum and only be able to see his own post and comments from members.

    background info:
    I want to make a gaming site and i need a forum where it is possible for future applicants to post a private application without fear of being discovered by his old guild if they look at our forums or make a user to gain access.
    I have searched for this option for 2 days now and i can’t seem to find a solution to this problem!

    If it isn’t possible through either plugins or something else, then please suggest other forums with that capability.

Viewing 25 results - 17,851 through 17,875 (of 64,532 total)
Skip to toolbar