Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 20,926 through 20,950 (of 64,518 total)
  • Author
    Search Results
  • #145293

    In reply to: Theme problem

    chetan0412
    Participant

    Thank you, Thank you, Thank you sooo much .. you saved my life….

    after declaring full path of both files in bbpress-functions.php,

    and adding script to theme function.php its work like magic….

    also 404 errors gone…..

    but this gives 403 to my shop page…

    again thanks for prompt response……..

    #145291

    In reply to: Theme problem

    tharsheblows
    Participant

    Yeah, it might have been a dns propagation issue, I didn’t think of that. It didn’t work, then you disabled bbpress and then it worked a couple of hours later (I did check a few times) then wasn’t working the next morning.

    Do you have bbpress-functions.php in your WP theme folder? You could try editing that to give the correct path.

    OR what you could do is just ignore the 404 and add them in separately. So workaround rather than fix. I’m guessing all your css and js files in your template directory are not getting included. But they’re there – I can see them.

    This isn’t pretty and will stop working if you change themes or hosts, it’s like fixing trousers with duct tape, but it might work – you can and should keep trying to fix things in the meantime.

    It goes into functions.php but don’t add using the admin area editor as if something goes wrong and you don’t have another way of editing files, you’re in deep trouble. I say that because I’m not really convinced it’s completely right, there’s no conditional logic for the js files so you need to be prepared to fix it if needs be (or ask, that’s fine, too!).

    add_action('wp_enqueue_scripts', 'mjj_readd_scripts');
    function mjj_readd_scripts(){
    	
    	wp_register_style( 'ifuture-styles', '/ifuture/plugins/bbpress/templates/default/css/bbpress.css' );
    	wp_register_script( 'ifuture-editor', '/ifuture/plugins/bbpress/templates/default/js/editor.js' );
    	wp_register_script( 'ifuture-reply', '/ifuture/plugins/bbpress/templates/default/js/reply.js' );
    	wp_register_script( 'ifuture-topic', '/ifuture/plugins/bbpress/templates/default/js/topic.js' );
    	wp_register_script( 'ifuture-user', '/ifuture/plugins/bbpress/templates/default/js/user.js' );	
    
    	wp_enqueue_script( 'ifuture-editor' );
    	wp_enqueue_script( 'ifuture-reply' );
    	wp_enqueue_script( 'ifuture-topic' );
    	wp_enqueue_script( 'ifuture-user' );
    	
    	
    	wp_enqueue_style( 'ifuture-styles' );
    	
    }
    #145290
    Bob1nz
    Participant

    @palmdoc

    Check out the files i have in my pastebin http://pastebin.com/u/Bob1nz
    these were what I used with buddyboss a wee while ago using @kaliceos code

    Just make the four files and drop them into \buddybosschildtheme\bbpress\

    #145289
    Steve Weiss
    Participant

    Wordpress version 3.9
    bbPress Version 2.5.3
    http://stevethehurricane.com/

    I am having an issue where only the Keymaster can see topic questions submitted by participants. The participant can’t see the questions they submitted, only responses. How do I fix this? Do I have to have BuddyPress installed to use bbpress?

    I am using bbpress forum for Members Only.So unless you long in you can’t access the page where the forum is.

    Thank you in advance for your help with this.

    #145285
    tharsheblows
    Participant

    @hardeepasrani just did this, yay! Here is his post on how to add it in:
    http://www.trickspanda.com/2014/01/add-replies-topics-count-bbpress/

    #145277
    palmdoc
    Participant

    Hi I’m really keen on this layout rather than the default Forum index layout in bbPress.

    I have created the loop-forums.php with the code and placed it in the bbpress folder of my child theme (I am using Buddyboss)

    However having done that, my Forum index page still remains unchanged
    The page just has
    [bbp-forum-index]

    Advice much appreciated

    #145276
    keytastic
    Participant

    No dice. Or I’m doing something wrong.

    I decided on a much lighter color scheme for the website, and now it looks OK. If I could change one thing now, it would be for active links to behave the same way. For some reason certain links show an underline when you hover over them, and others turn white when you hover over them. It’s not a big deal if I can’t fix this, but it is kind of annoying.

    #bbpress-forums li.bbp-header,
    #bbpress-forums li.bbp-footer {
    	background: #89a2f4;
    }
    
    #bbpress-forums {
    	margin-bottom: 10px;
    	border: 1px solid #666;
    	padding: 12px;
    	background-color: #89a2f4;
    	color: #31485a;
    }
    
    #bbpress-forums div.bbp-forum-title h3,
    #bbpress-forums div.bbp-topic-title h3,
    #bbpress-forums div.bbp-reply-title h3,
    #bbpress-forums a.bbp-forum-title,
    #bbpress-forums a.bbp-topic-permalink {
    	color: #31485a;
    }
    
    #bbpress-forums a.bbp-author-name {
    	font-size: 12px;
    	color: #31485a;
    }
    Stephen Edgar
    Keymaster

    I am now implementing this for the next version of bbPress to support importing anonymous/guest users, thus far I only have it working for phpBB and am now working on adding it to the other importers.

    obasimvilla
    Participant

    I tried importing with simple;press it imported my smf forum correctly, importing guest posters as guest and all users aright.

    Then I tried importing from simple;press to bbpress only to have those guest posters converted to my admin account (keymaster) again.

    Is there no way to walk around this?

    #145268
    yoyoma1974
    Participant

    I searched for a plugin but couldn’t find anything like that, bummer. hmmm, not sure if were using a custom bbpress template. I don’t think so. If we’re not using a custom template would we need to create one? Then I imagine copy and past the login code at the bottom of that file?

    #145266
    jerryskate
    Participant

    Hi! Im having a problem with undefined call for Subscribe and favorites on threadreplys. Seems to be a known issue, but i can’t figure out how to fix it. Im using the BBpress starter theme from epicwebs, and i found this thread describing the problem: https://bbpress.org/forums/topic/help-me-to-solve-clicking-favorite-and-subscribe-problem/

    I have fiddled around with the changes to functions-php he is linking to github, but can’t get it right. If i delete everything in the bbpress.functions it works, but everything looks shit, of course. If i change the while file to the new functions.php as a whole, it works but all styling is crazy off.

    Was wondering anyone knows what part of the code controls this so maybe i can change just that part?

    Regards,
    Jerry

    #145261
    kepilif
    Participant

    Hello,

    I’m working on website for NGO. I use WordPress 3.9; theme: Twenty Fourteen; plugins: Fourteen Extended 1.2.31, Fourteen Colors 1.0.2, bbPress 2.5.3. In theme which i use, have two sidebars. Primary sidebar it’s main sidebar that appears on the left, and the Content Sidebar he’s appears on the right.

    Now forum appears on center of page, at content column. (look: http://tata-dzieciom.malopolska.pl/forums/). I want that appear on space right sidebar too so that it will be wider. How to do it? I hope I wrote everything clearly.

    #145259

    In reply to: Theme problem

    chetan0412
    Participant

    Thanks for prompt response….

    did you actually do the functions 1 & 2? means ???

    both files(editor.js & bbpress.css) are already available in dir.

    yes checked after disabling wp security.

    still same problem.

    #145258
    Robin W
    Moderator

    presume you mean the topic form?

    If so, then

    wp-content/plugins/bbpress/templates/default/bbpress

    and look for the templates that deal with forms, starting with form-topic.php

    Basically in the root of your theme/child-theme, create a directory called bbpress ie

    wp-content/themes/your-theme-name/bbpress

    and copy across any templates you wish to alter. bbPress will then use them instead.

    you’ll also find some js scripts in the default folders.

    #145257

    In reply to: Compose message

    Robin W
    Moderator

    this looks like more of a buddypress issue, as bbPress doesn’t have messages, or do you have a plugin, in which case it’s that 🙂

    #145253

    In reply to: Theme problem

    chetan0412
    Participant

    1. Checked with twentytwelve theme.

    2. 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. -same problem

    see below image i can check log status from better wp security.

    http://i227.photobucket.com/albums/dd197/chetan_2002_2003/Capture_zps8077a5d6.jpgii

    #145251

    In reply to: Theme problem

    Robin W
    Moderator

    ok, lets work out where the problem lies.

    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, switch to a default theme such as twentytwelve, and see if this fixes.

    then come back

    #145250

    In reply to: Theme problem

    chetan0412
    Participant

    downloaded from bbpress.org and re installed but same problem.

    #145249
    Robin W
    Moderator

    additionally or alternately you might see a bbpress.php file in there ie

    /home4/kingdox1/public_html/demigodlegion/wp-content/themes/arcade-basic/bbpress.php

    If so, again copy this to your pc, and then delete it on the server.

    #145248
    Robin W
    Moderator

    Ok, so suffusion has added some specific files in your theme, which bbPress is now using NOT changed your forum entries.

    So I think all you need to do is go into

    to /home4/kingdox1/public_html/demigodlegion/wp-content/themes/arcade-basic and you should see a bbpress folder

    ie
    /home4/kingdox1/public_html/demigodlegion/wp-content/themes/arcade-basic/bbpress

    copy these files to your pc as a backup, and then just delete this folder. bbPress will revert to using the default ones, and you should be working.

    #145247
    Robin W
    Moderator

    For individual users, they can subscribe to individual posts or to individual forums.

    For admin, I use bbpress notify plugin, although you can use this for everyone as well, but lots of email messages can annoy some users, so I only use for moderators and above.

    #145241

    In reply to: Theme problem

    Robin W
    Moderator

    Did you move the bbpress files, or install bbpress?

    If you have not changed the bbpress files in your old site, then I’d deactivate the bbpress plugin and then delete it, and then re-install from the web.

    #145240

    In reply to: Theme problem

    chetan0412
    Participant

    i am getting 404 error for this two files.

    plugins/bbpress/templates/default/css/bbpress.css
    plugins/bbpress/templates/default/js/editor.js

    any hope for solution ?

    #145232
    Matoca
    Participant

    I was using a specific bbPress tinyMCE plugin, but I disabled that over a week ago when you mentioned that there may be some issues with it. Was it successful? I don’t know, you can read my moderator’s varied results above. When I had originally added the plugin it was specifically so moderators could edit photo size in the forum and not have to go into the dashboard to do that. I still ask my moderators to always be logged in when they are posting. If it is as simple as asking my moderator with the iphone issues to not log in when she needs to post replies or start topics, that is what we will do.

    The latest upgrade WP 3.9 has ver 4.0 tinyMCS in it. See:

    TinyMCE 4.0 is in core

    So, rather than confuse my troubleshooting, I have no tinyMCE plugins installed. Whatever tinyMCE capabilities 3.9 has is what I now have.

    When I am logged in, on the text tab there are the standards plus insert/edit link, url img, code and close tags, the same as we are seeing on this forum.

    On the visual tab, logged in, in addition to the standards there is undo, redo, add link, remove link and insert/edit image. Perfect, exactly what I wanted for the moderators.

    When I am not logged in there are only the standard fields for name, email and website and add message. There are no text or visual tabs. I have the Nextgen gallery plugin for Upload Photos so that solves the issue of users wanting to post photos. They go directly into a specific gallery and I get an email telling me that something has been uploaded and needs approving.

    I have Post Formatting in the forum tools settings unchecked for “Add toolbar & buttons to text areas to help with HTML formatting.” So that is probably why they are not allowed to have visual or text tabs. I do not require registration for posting. If I have trouble with someone I can put their IP on a blacklist. Akismet works well.

    But it’s only been a couple of days since I upgraded to 3.9. The developer of the theme I am using has notified me that he is also reworking his theme so that may change things as well.

    Once my moderator gets back in touch with me I will post here. Perhaps this WP upgrade has solved the problems with iPhone and iPad?
    my best, matoca

    #145230
    tharsheblows
    Participant

    I’m not quite clear on your code, so can’t help with the last piece.

    As I mentioned, I did it differently and specific to the forum I was working on which has categories with forums but no sub-forums and one single forum without a category. I don’t think this will help you unless you decide to try something different but this is what I did – in loop-forums.php replace the while loop with :

    <?php while ( bbp_forums() ) : bbp_the_forum(); ?>
       <?php if( !bbp_is_forum_category() ) {
         bbp_get_template_part( 'loop', 'single-forum' ); 
       } else {
         bbp_get_template_part( 'loop', 'single-categories' ); 
       } ?>
    <?php endwhile; ?>

    and then I made a loop-single-categories.php https://bbpress.trac.wordpress.org/attachment/ticket/1958/loop-single-categories.php

Viewing 25 results - 20,926 through 20,950 (of 64,518 total)
Skip to toolbar