Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 5,101 through 5,125 (of 11,580 total)
  • Author
    Search Results
  • #141256
    piccart
    Participant

    ok, I’ve figured it out.

    the files which have to be edited are:
    bbpress/templates/default/bbpress/content-single-forum.php
    bbpress/templates/default/bbpress/content-single-topic.php

    in the first one you’ll have to cut off this line in each place it comes:
    <?php bbp_get_template_part( 'form', 'topic' ); ?>

    and substitute with something like this, to make the new-topic link:
    <a href="http://mywebsite.com/form-new-topic/?forum_id=<?php bbp_forum_id(); ?>

    then you create a new template page (which you’ll assign to a page called “Form New Topic”) copying your theme default page, and adding at the top /* Template Name: Form New Topic */ . then you can substitute the function which displays the content, or just add this below it:

    $forum_id = $_GET['forum_id'];
    echo do_shortcode("[bbp-topic-form forum_id=$forum_id]");

    at the same you can edit the second file (the topics list) substituting this:
    <?php bbp_get_template_part( 'form', 'reply' ); ?>

    with something like this:
    <a href="http://mywebsite.com/form-new-reply/?topic_id=<?php bbp_topic_id(); ?>

    and then create a new template called “Form New Reply”, and add a code similar to the other one but using the shortcode to display the reply form. unfortunately the shortcode for the reply form seems to don’t have a topic id attribute, according to this list: https://codex.bbpress.org/shortcodes/

    I’ll make some test to see how it react, the only other solution I see is to make a spoiler with the reply form, so it’s hidden till you click.

    p.s. you can also store the ids into variables, using these functions:

    $forum_id = bbp_get_forum_id();
    $topic_id = bbp_get_topic_id();
    #141254
    PCTP
    Participant

    Using Magazine Basic Premium and latest WP.

    Why am I showing only MY activity in the activity area. Also, how do I make the subscribers become members so that we can communicate in the forum? I’ve been through all the settings … don’t see anything.

    #141246
    ibab
    Participant

    I have WordPress 3.8 installed with the bbPress 2.5.2. The WP is in Finnish so it’s important that the forums are in Finnish as well, so I attempted to add the translation file as told here.
    http://codex.bbpress.org/bbpress-in-your-language/

    I took the latest dev branch Finnish translation, downloaded the .po and .mo files, renamed them to bbpress-pt_FI, even attempted bbpress-fi_FI, uploaded to /wp-content/languages/bbpress/ but no results. The forums are still in English.

    I also checked that the language is set to fi in the wp-config.

    Why is the translation not working?

    #141210

    In reply to: Visual bbpress

    NarOneR
    Participant

    I just tried with a default theme but it does not work either.

    My plugin enable are :
    bbPress
    bbPress Enable TinyMCE Visual Tab
    Light – Responsive LightBox
    NextGEN Gallery by Photocrati
    Regenerate Thumbnails
    Relevanssi
    Responsive Lightbox
    Sidebar Login
    Theme My Login
    TinyMCE Advanced
    User Role Editor
    WP-PageNavi
    WP Minify
    WP Wall

    You can test on http://www.lsa-clan.fr/wordpress/forums (register is open)

    #141197

    In reply to: Visual bbpress

    NarOneR
    Participant

    I have the latest version of TinyMCE bbPress Enable Visual Tab and I have the same problem with or without the advanced TinyMCE plugin.

    #141159

    In reply to: Visual bbpress

    Stephen Edgar
    Keymaster

    Do you have the latest version 1.0.1 of ‘bbPress Enable TinyMCE Visual Tab’ installed?
    (It was updated a couple of days ago)

    Also I am not sure of the bbPress compatibility of the ‘tinyMCE advanced module’, does everything work as it should with this plugin disabled?

    Lynqoid
    Participant

    Hey guys,

    The theme is what teamoverpowered.com forums is based on and it is still working (I always update bbPress).

    So in theory the theme should work, take a backup and test it! 🙂

    I am (slowly) working on another theme which should be quite nice, it’s just taking longer than expected.

    #141141
    PCTP
    Participant

    I have the latest versions of WP & bbPress.

    Looking for short codes for “ACTIVITY” – “MEMBERS” – “GROUPS” to keep it private from the public. i.e., only those logged in will be able to view those three items on the home bar. http://www.PickensCountyTeaParty.com

    Thanks!

    #141124

    In reply to: Thousands of revisions

    inspirationally
    Participant

    After deactivating all bbPress related Plugins, it still occured. Now I removed the functions.php and it seems to have stopped and I’m re-adding it one snippet after the other, but I always have to wait half an hour between each snippet to see if it continues. No idea how to test it “immediately”.

    It might be something about this part:

    //Remove bbPress Head on non bbPress sites

    add_action( 'wp_head', 'conditional_bbpress_head', 9 );
    function conditional_bbpress_head(){
    global $post;
    if( !is_bbpress() && !(is_home() && $_SERVER['SERVER_NAME'] == 'deppheads.com') && !(isset( $post->post_parent ) && $post->post_parent == "17123") )
    remove_action( 'wp_head', 'bbp_head' );
    }
    add_action( 'wp_enqueue_scripts', 'conditional_bbpress_scripts', 9 );
    function conditional_bbpress_scripts(){
    global $post;
    if( !is_bbpress() && !(is_home() && $_SERVER['SERVER_NAME'] == 'deppheads.com') && !(isset( $post->post_parent ) && $post->post_parent == "17123") )

    remove_action( 'wp_enqueue_scripts', 'bbp_enqueue_scripts' );
    }

    which I added because I have two domains running and just one little part under the domain deppheads is actually the forum, and I did not want all that bbPress code in all sites, especially not on my main site.
    Is that possible??

    Halo Diehard
    Participant

    All I know is I’ve got it running on my local for the update before the latest and it’s working. Haven’t updated yet because I’m in the process of converting forums and need everything to stay stable until I get it all figured out…

    Edit: PS – if it doesn’t work all you have to do is replace the files with the backup files you save before you try it out.

    #141083
    mth75
    Participant

    Hello all,

    On my website i’m trying to use the wp-editor as editor for my bbpress forum (always latest stable version). I use the same code as I use for my WP comments section (to keep the appearances the same).

    The code I use does show the tinymce, doesn’t “parse” the content though (with an “ERROR: Your reply cannot be empty” as result.

    My guess is that I haven’t found the right parameters (***) in the wp_editor function. Help is much appreciated.

    Regards.

    Marc

     
    add_filter( 'bbp_after_get_the_content_parse_args', 'bbp_enable_visual_editor' );
    function bbp_enable_visual_editor( $args ) {
    	wp_editor( '****', '****', array(
    		'media_buttons' => true, // show insert/upload button(s) to users with permission
    		'textarea_rows' => '10', // re-size text area
    		'dfw' => false, // replace the default full screen with DFW (WordPress 3.4+)
    		'tinymce' => array(
            	'theme_advanced_buttons1' => 'bold,italic,underline,strikethrough,bullist,numlist,code,blockquote,link,unlink,outdent,indent,|,undo,redo,fullscreen',
    	        'theme_advanced_buttons2' => '', // 2nd row, if needed
            	'theme_advanced_buttons3' => '', // 3rd row, if needed
            	'theme_advanced_buttons4' => '' // 4th row, if needed
      	  	),
    		'quicktags' => array(
     	       'buttons' => 'strong,em,link,block,del,ins,img,ul,ol,li,code,close'
    	    )
    	) );
    }
    
    #141076
    PCTP
    Participant

    I want sidebars on my blog page, but not on my forum page. How do I remove the sidebars from my forum page? I am using the latest version of WP and Magazine Basic theme (latest version). http://www.PickensCountyTeaParty.com
    Thanks!

    #141074
    inspirationally
    Participant

    Hey there,

    I have a problem I can’t find a solution for (all latest versions, but it was the same before) at deppheads.com:

    Every few seconds, I can see a new revision coming up in the database. I just removed the revisions of the last month and there were over 50000! I mean my forums have a few hundred thousand posts, and they are some kind of reply/topic revisions to existing posts/topics as copies of existing replies (I think). Very curious.

    I have no idea how to disable them from being created. I already set auto_save to define('AUTOSAVE_INTERVAL', 86400);

    and added

    
    add_action('admin_init', 'disable_revisions');
    function disable_revisions(){
           remove_post_type_support('revision', 'revisions');
     remove_post_type_support('topic', 'revisions');
        remove_post_type_support('reply', 'revisions');
    }
    

    to my functions.php, but they still appear.

    And I disabled revisions for bbpress posts in the settings page.

    Any ideas??

    Visitors are allowed to post, and I’d like to keep it like that, because it is also my comments system and I know many would not comment if they needed to register.

    Here are the last 20 exported as sql (couln’t copy it in, so as a link:)

    http://deppheads.com/insert.txt

    Here one example of the “parent” http://deppheads.com/forums/reply/359207/

    B
    Participant

    Hi friends,

    I’m attempting to convert over from Vanilla 2.0 to bbPress. I’d like to test first on my local machine, so I’m trying the Import Forums option in my local WP install.

    My question: Should there be any problem importing from a live instance to my local?

    I’m in PHPMyAdmin and quadruple checking all my settings, so as far as I can tell, I’m inputting all the database settings within bbPress correctly. Sadly, once I start the conversion, I get the “No xxxxxx” set of errors.

    What are some common database setting mistakes, just in case I might be overlooking some options? Also, could it be that I’m importing to my local machine and that’s causing the problem (I assume not)?

    Let me know if I can provide any more info to make this easier (screenshots, server info, etc)

    Thanks!

    WPDragon
    Participant

    Can this bbpress Layout still be used?…or would there be issues with latest version of bbpress & wordpress?

    Please reply…thanks.

    #141003
    Stephen Edgar
    Keymaster

    @tnts That sounds like the right way to go, I’d also suggest testing all this in a local XAMPP/WAMP setup to get comfortable with all the processes before performing this on your live site.

    #140974

    Topic: Permission Error

    in forum Installation
    ctseng01
    Participant

    When I tried to create a topic under the forum, I get this error message:

    ERROR: You do not have permission to create new topics.

    I also am not able to go into any link under Dashboard>Forum – I think somehow the permission setting is all jacked up…

    I already deleted and re-installed the Plugin, tested it on TwentyThirdteen, the problem still persist.

    I am using bbPress 2.5.2-5234, WP Version 3.8. The site is collaborativemotherhood.com. Also, the site is password protected (ctseng01, santaynezvalley) The forum link is in the footer, between “Mommy Power” and “Help Center”

    Thanks for your help.

    Mod: I edited and removed the user/pass from your post.

    #140927
    Deaf_Guy
    Participant

    Hi – I am setting up a forum similar to this one using bbpress:

    http://aslstem.cs.washington.edu/

    I want to be able to allow people to create an account and then post YouTube videos in ASL. I then want them to be able to embed the video into their forum page (similar to the above).

    Here is the bbpress I’ve created:

    http://hissign.com/bbpress/forum.php?id=1

    I’m calling the forum ASL exchange and you’ll notice that I created a test topic called Baby Signs. When you click on that post you’ll notice the YTV video link but I was unable to embed the video in the post so the video plays there (instead of just the link).

    Can someone explain to me how or what I need to do to embed the video into the post?

    Thanks.

    #140922
    TechHaus
    Participant

    Bummer, not seeing that! Thanks for the response.

    Going to try with another user account because there were some weird user role issues with my forum until recently when I installed User Role Editor to fix the issue.

    EDIT: none of my keymasters can see that button. Going to try to disable a few other plugins but everything is the latest version.

    EDIT 2: still no. Has this plugin broken for anyone else or does it work for wp 3.8+ and bbpress 2.5+?

    #140917
    Lynqoid
    Participant

    If I test on a blank install of WordPress the twitter feed works, if I add bbPress it also works. Do you have an example of any other non bbPress site where the twitter feed is not working?

    I am guessing a plugin conflict, javascript error or template problem.

    Good luck!

    #140896
    pchapmannc
    Participant

    My forums show up on the page if I add the shortcode [bbp-forum-index] but then none of my topics show up! There is a number under topics but when I click on the number I end up at a blank page.I’m just starting the forum and tried several test topics but they go to a blank page. I’m using Creativo as a theme, and wonder if there is something I should modify somewhere. Any ideas?

    Thanks!

    #140886
    jsalomone
    Participant

    I still have the problem on my site, and am not using WishList Member.

    I tried a clean install with all plugins I am using, and maybe the order of installing was different, but on the clean install I had no problem, until I did a database restore. Something in the db messes it up. I can’t see where in the code the showing of the first post (or any) is checked against some condition.

    Did the past updates of bbpress and other plugins too (not the latest wordpress though) and the behavior is still the same.

    #140837
    artkahlich
    Participant

    I have observed precisely the same problem on my Android Motorola Droid HD Maxx. In my case I defined a page containing the [bbp-forum-index] shortcode for the Forums top level. If I go to that page in either of the latest versions of IE or Firefox, I get a nice page showing the Forum categories. Using my Android phone, I get a page containing the single word ‘Forums’. As the OP noted, if I go directly to a Forum category or topic all is well.

    My WordPress version is 3.8, bbPress version is 2.5.2. I am using a copied and modified version of the TwentyFourteen theme.

    #140827
    jdredd87
    Participant

    Using latest wordpress 3.8 and bbpress 2.5.2..
    Using the 2014 template.
    Did searching but didn’t see my exact problem mentioned?
    I am new to WP/BBPress so maybe a newb issue. Only been 3 days..

    Windows/OSX/Chrome/IE/Safari work fine.

    Chrome/Safari on iOS on an iPad seems to work fine.

    Chrome/Safari on iOS on a phone does not. If you go straight to the forums link
    you just get a section that says Forums and thats it.

    Android is unknown…

    If you go straight to a forum section or a forum post, that works fine.

    site is http://turbo3800.com/

    Screen shot…

    http://i111.photobucket.com/albums/n136/jdredd87/IMG_0988_zpsee71ee92.png

    #140800
    Stephen Edgar
    Keymaster

    This thread here mentions a vBulletin conversion of ~600,000 posts took around 8-10 hours on an iMac so thats 1/6th of the time you’ve estimated.

    vBulletin to bbPress questions

    I’d love to test the DB you have, maybe some improvements can be made though I doubt they’d be done before your import completes 😉 I just followed you on Twitter so follow me back and drop me a DM with a ftp/dropbox link and I’ll give it a whirl.

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