Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 5,251 through 5,275 (of 11,580 total)
  • Author
    Search Results
  • #138826
    salvador21
    Participant

    I am having no luck importing from phpbb (latest version 3.0.12) The importer just seems to hang for hours and hours on “Starting Conversion”

    At what point do I give up and start again. Should it take over four hours?

    #138815
    Stephen Edgar
    Keymaster

    Again, you can extend bbPress with custom views.

    One of the sites in that link list has 4 views:

    Most popular topics
    Topics with no replies
    Topics with most replies
    Latest topics

    That doesn’t mean they are part of bbPress, check your themes functions.php file for something like this:

    function wphc_register_custom_views() {
    	bbp_register_view( 'popular-topics', __( 'Popular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num' ), false );
    	bbp_register_view( 'unpopular-topics', __( 'Unpopular Topics' ), array( 'meta_key' => '_bbp_reply_count', 'orderby' => 'meta_value_num', 'order' => 'asc' ), false );
    	bbp_register_view( 'random-topic', __( 'Random Topic' ), array( 'orderby' => 'rand' ), false );
    	bbp_register_view( 'closed', __( 'Recently Closed' ), array( 'post_status' => 'closed' ), false );
    	
    
    }
    add_action( 'bbp_register_views', 'wphc_register_custom_views' );
    #138813
    FreeWPress
    Participant

    Look at this: Google link

    Hi have exactly this… where i found this? Links are stored in (bbPress) Topic Views List widget!!

    #138812
    Stephen Edgar
    Keymaster

    I did some pretty exhaustive testing of this a couple of days ago and was not able to reproduce this behaviour. Can you give us some more details with some direct links to your site highlighting the issue.

    #138783
    FreeWPress
    Participant

    Hi, i have two title pages with no translation:
    forums/view/most-replies/ it show title page –> Topics with most replies
    forums/view/latest-topics/ it show title page –> Latest topics

    I nedd to translate but this two elements do not exist in original file bbpress.pot

    Can you see if bbpress.pot contain this two elements or is true wich do not exist?

    Thanks…

    #138766
    tristanojbacon
    Participant

    I have tried to install bbPress, but am having issues with the Forum Index page.
    This is the forum index: Forums. However, the actual forums work fine, as you can see on a test forum I created called Suggestions.

    Any ideas as to why it’s doing this? I’ve followed the few instructions I could find, including the page about Theme Compatibility. I added the bbPress theme files to my own theme, as suggested in those intructions.

    Also, is there a way for the link to just be ‘http://thewhitesharks.co.uk/forums/suggestions/’ instead of ‘http://thewhitesharks.co.uk/forums/forum/suggestions/’? Seems a bit long to me…

    #138740
    adaba063
    Participant

    sorry forgot to include info regarding the website I am working on

    http://derrallbellaire.info

    username: test001
    password: test001

    #138660
    Stephen Edgar
    Keymaster

    Also I have only tested the vBulletin importer with importing from vBulletin v4.2 so there might be a few changes in the database structure between 4.1x & 4.2x but as I can’t get my hands on vBulletin 4.15 I cannot confirm this.

    If you are comfortable in phpMyAdmin and you could export half a dozen rows from each of the ‘forum’, ‘thread’, ‘post’, ‘tagcontent’, ‘tag’ & ‘user’ tables I could have a closer look at why this isn’t working for you.

    #138583
    patc890
    Participant

    We just started to use bbpress forum and noticed that some of the entries are out of order (time and date). I just put in a test entry and it shows up before two other entries up to 10 days before this one.
    Can anyone tell me what the problem is?

    Thanks.

    Pat

    #138558
    baylock
    Participant

    Ok, thank you!

    I achieved what I wanted, this way:

    Forums list:

    <p class="bbpx-topic-meta">
        <?php
        $forum_id  = bbp_get_forum_id();
        $last_active = get_post_meta( $forum_id, '_bbp_last_active_time', true );
        if ( empty( $last_active ) ) {
            $reply_id = bbp_get_forum_last_reply_id( $forum_id );
    	if (!empty( $reply_id)){$last_active = get_post_field( 'post_date', $reply_id );} 
            else 
            {
    	    $topic_id = bbp_get_forum_last_topic_id( $forum_id );
                if (!empty( $topic_id)){$last_active = bbp_get_topic_last_active_time( $topic_id );};
    	};
        };
        $date= date('d/m/Y',bbp_convert_date( $last_active ));
        $active_id = bbp_get_forum_last_active_id( $forum_id );
        $link_url  = $title = '';
    
        //these two next lines are beyond me: same condition, two results for the same variable...
        if (empty($active_id)){$active_id = bbp_get_forum_last_reply_id( $forum_id );};	
        if (empty($active_id)){$active_id = bbp_get_forum_last_topic_id( $forum_id );};
    
        if (bbp_is_topic($active_id)) 
        {
    	$link_url = bbp_get_forum_last_topic_permalink( $forum_id );
    	$title    = bbp_get_forum_last_topic_title( $forum_id );
        } 
        elseif (bbp_is_reply($active_id)) 
        {
    	$link_url = bbp_get_forum_last_reply_url( $forum_id );
    	$title    = bbp_get_forum_last_reply_title( $forum_id );
        };
        $time_since = bbp_get_forum_last_active_time( $forum_id );
        if (!empty($time_since) && !empty($link_url) 
        {
    	$anchor = '<a href="'.esc_url($link_url).'" title="'.esc_attr($title).'">'.$date.'</a>';		
            ?>
            <span class="bbp-topic-freshness-author">
              <?php
                  bbp_author_link(array('post_id'=>bbp_get_forum_last_active_id(),'size'=> 14));
              ?>
            </span>
            <?php	
        }
        else {$anchor = 'esc_html__( 'No Topics', 'bbpress' );};
        ?>
    </p>
    		
    <?php
    echo apply_filters( 'bbp_get_post_time', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );
    ?>

    Topics list:

    <p class="bbp-topic-meta">
        <span class="bbp-topic-freshness-author"><?php bbp_author_link(array('post_id =>bbp_get_topic_last_active_id(),'size'=>14)); ?></span>
            <?php
    	$topic_id   = bbp_get_topic_id();
    	$reply_id   = bbp_get_topic_last_reply_id();
    	$title      = bbp_get_topic_last_reply_title( $topic_id );
    	$link_url   = bbp_get_topic_last_reply_url( $topic_id );
    	$date   = get_post_time( 'd/m/Y', $gmt, $reply_id, true );
    	$anchor = '<a href="'.esc_url($link_url).'" title="'.esc_attr($title).'">'.esc_html($date).'</a>';
    	echo apply_filters( 'bbp_get_topic_freshness_link', $anchor, $reply_id, $result, $link_url, $title );	
    	?>
    </p>

    As you can see, I didn’t hook anything already. So far I just got rid of the “bbp_topic_freshness_link()” in the templates and simply replaced the initial function by these lines, just to make a test. I still have to make a function out of these.

    Not happy with this mess as I’m sure it’s more complicated that it should be, but it works.

    Thank you for your guidance koendb!

    #138557

    Topic: Cross site login?

    in forum Plugins
    #138549
    #138540
    baylock
    Participant

    Please guys, this is not something trivial.

    I tried to work it out but I couldn’t as there is not a single post around here answering that and there is nowhere I can find a comprehensive list and description of the BBPress functions.

    All BBpress functions I happened to find that are related to the dates are displaying them in a sophisticated way, there is none I could find that just displays the date in its simplest form.
    I tried to “date()” and “strtotime()” every single variable I could find but with no success.

    There are posts telling how to use flat dates around here but these posts are very old (4 years..) and they make use of functions that don’t exist anymore.
    There was supposed to be a plugin for that but this plugin doesn’t exist anymore neither.
    And the more recent questions about this issue are just not answered.

    I hope this will not be taken the wrong way: I’m very grateful for this plugin and for all the people working on it. Really. I just don’t know how to move on with an unanswered question and some outdated answers.

    PS: I asked you how to get the latest post date in the forum list view but now, I also (and mainly) need to know how to achieve this in the topic list view and posts view as they are not documented neither.
    Long story short: how to get real dates everywhere!

    It’s been two days and I’m still in the dark. If it’s there somewhere, my bad, but please be assured that, as obvious as it might be, I tried my best.

    Thank you very much for your help.

    #138517
    eduardosilva
    Participant

    Greetings,

    I’ve migrated my bbpress install to from 1.x to 2.x (latest) and I didn’t noticed that there was a “change” in the permalinks structure.

    Now google webmaster tools is complaining that I have a lot of 404 errors.

    With bbpress 1.x the the “dots” where removed from permalinks, after the migration the “dots” where converted from “.” to “-”

    Topic name: “Example 2.6.1”
    old permalink: /topic/example-261
    new permalink: /topic/example-2-6-1

    The problem is that now, even if I fix the permalinks to behave like they where in 1.x, I will have 404 errors for the new items already indexed. So, is there any way to “redirect” the “old” permalinks to the new ones?

    At this moment google webmaster tools is reporting 2.133 404 errors

    Thank you!

    #138480
    Robin W
    Moderator

    What theme are you using? and can we see how it looks – give us your website address

    #138425
    akgt
    Participant

    SEO issues bbPress with buddypress

    This means that there are duplication issues on title tags and metadescriptions within the groups and subcategories.

    groups/automotive/forum

    /automotive/forum/topic/test/

    both have the same title even using yoasta

    Is there any way so that the title of the post is pulled through to the title tag and the description is pulled through to the metadescription?

    #138407

    In reply to: bbp_rel_nofollow

    koendb
    Participant

    I only know a little php, and I think this way the function searches through ALL the links in a reply/topic and adds target_blank to all of them when at least one of them is external. That’s not what you want.

    You need to
    1) explode the content
    2) loop through all link tags
    3) Test if it’s external or internal
    4) if external: use the function above to add the target=_blank
    5) if internal: remove nofollow
    6) implode and return the new reply/topic content.

    It would probably take me a few hours to google this together, maybe you could try this yourself or somebody whit a little more php knowledge could help.

    modbunker
    Participant

    Hi

    Ive setup the forum and have the register link in the widget setup properly. My test profile was able to register and receive an activation email. But when/if I log out and try to sign back in using the BBPress Login Widget, after I click “login” it takes me to the wordpress login?

    Is this how the login is supposed to work? Is there a way to login using the widget that doesnt prompt them to login with wordpress? Why after clicking on “login” does it take the user to another login screen and just log them in on that same page?

    I dont feel secure if users can maybe access the backend to the site, but it looks like this is how this site works as well?

    Ive installed a BBPress plugin called BBPress – No Admin does this solve my fear of them being able to access the backend?

    Any help would be greatly appreciated.

    Im running WordPress 3.6.1 with BBPress 2.4.1 and BuddyPress 1.8.1

    David2013
    Participant

    Need help with that error message in forum-topics

    `Home › Forums › Test

    Warning: sprintf() [function.sprintf]: Too few arguments in /xxx/xxx/xxx/wp-content/plugins/bbpress/includes/forums/template.php on line 187

    anyone knows what is wrong?

    #138344
    Stephen Edgar
    Keymaster

    That plugin looks fine to use with bbPress 2.x, you just need to download either the bbpress-close-old-posts.php file and upload it to your plugins folder, or download the .zip, extract to a folder and upload that folder to your plugins folder.

    But since it’s not listed at bbpress.org plugins list, I’m not sure if it’s safe or even compatible with my current install.

    You will at times find many themes and plugins that are not hosted on WordPress.org, sometimes they are proprietary code, other times they are just quick snippets of code, it doesn’t mean they are unsafe and usually a quick note to the author will confirm if they work with the latest version of bbPress.

    btw, searching for “lock” at bbpress.org plugins, at the bottom of the page you will see: ”Viewing 1 to 4 (4 total)” but there are only 3 plugins listed.”

    Thanks, this is a known issue and will hopefully be fixed soon.

    #138325
    radleycollector
    Participant

    Hello , I have got the latest bbpress plugin workings with my WordPress but now I am noticing forums and topics are not refreshing . I use w3 total cache and assume that is the issue . Is there a way to exclude bbpress from it or do you know how to make it compatible , thank you

    #138212
    #138191
    Stephen Edgar
    Keymaster

    Looking at the source of http://atdp.berkeley.edu/forums/topic/test-topic-2/ the ‘content’ looks like its getting nuked either directly by your theme or by the plugin ‘W3 Total Cache’

    Can you switch to Twenty Eleven/Twelve/Thirteen and see if you get your content back?

    If no go there, disable the ‘W3 Total Cache’ plugin and try that as there are some issues running ‘cache’ plugins with bbPress see this for more info on that.

    #138180
    elitetester
    Participant

    If a user makes a nice forum post I would like to be able to choose to post this single topic into a WP post/blog of categoryX. If I see another nice forum post then I would like to be able to choose to post this single topic to the same, or perhaps a different WP post/blog under categoryY. All video/images etc should be presented in WordPress as it would appear in the forum.

    I’d like to see the topic content appearing as an article rather than a forum topic: No reply window shown even if logged in, instead show ‘number-of-replies’. No avatar, just a short comment ‘posted-by-xxx’. The topic title and ‘number-of-replies’ links the user to the respective forum topic in the main forum view.

    ————-
    I was thinking this might be possible using shortcodes. e.g. create a new shortcode based on ‘bbp-single-topic’ (perhaps called ‘bbp-single-topic-post2blog’). Then add a drop-down-list beside each forum topic only visible for admins. The drop-down-list includes all WP posts/blogs. After selecting a WP post from the drop-down-list the shortcode and respective topic-ID gets added to the bottom of the WP post content.

    What do you think? I have quite a clear picture on how this should work.
    If this is possible I would be happy to test it.

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