Robin W (@robin-w)

Forum Replies Created

Viewing 25 replies - 7,976 through 8,000 (of 14,141 total)
  • In reply to: Forum Creation Issue

    @robin-w

    Moderator

    hey great, glad you are fixed !!

    In reply to: Forum Creation Issue

    @robin-w

    Moderator

    sorry – but it’s most likely a theme or plugin upgrade, and ‘those suggestions’ are the way to find out which 🙂

    @robin-w

    Moderator

    no problem !

    @robin-w

    Moderator

    ok, I’ve also added breadcrumb navigation to my style pack plugin

    bbp style pack

    go to

    dashboard>settings>bbp style pack>breadcrumbs and you can select where the home and forum breadcrumbs take you to.

    @robin-w

    Moderator

    install

    bbp style pack

    and go to

    dashboard>settings>bbp style pack>topic/reply form item 9
    and you can select which to show

    In reply to: 404 on new forums

    @robin-w

    Moderator

    great – glad you are sorted !

    In reply to: 404 on new forums

    @robin-w

    Moderator

    try

    dashboard>settings>permlinks and just click save.

    This resets the links and may fix

    @robin-w

    Moderator

    Can’t say I’d ever looked for them

    what do you want to use them for, and would this help

    Advanced Custom Fields

    In reply to: Forum Creation Issue

    @robin-w

    Moderator

    here is fine.

    ok so is this a new site? has it worked before and stopped working?

    What has changed – have you added a plugin upgraded plugins or done anything to themes.

    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 twentyfifteen, and see if this fixes.

    Then come back

    @robin-w

    Moderator

    ok, then it is a theme thing. maybe raise with theme authors

    @robin-w

    Moderator

    sorry don’t understand the question.

    Yes I can see it says search the forum, what would you like it to say, or what would you like it to do ? and how is this related to the topic heading ?

    In reply to: Styling of subforums

    @robin-w

    Moderator

    link to an example if possible please.

    @robin-w

    Moderator

    your theme is loading css with the page including

    .btn-primary, .btn-secondary, .btn-success, .btn-info, .btn-warning, .btn-danger {
    	color: #fff !important;
    }

    this area is using .btn-primary

    as it comes up as inline, it is almost impossible to overwrite.

    Don’t know how your sign-up form is done, is it a plugin?

    In reply to: Repair tool with cron

    @robin-w

    Moderator

    the functions you need to call are in

    includes/admin/tools.php

    so if you wanted to run the topic reply count you would link this function to cron

    bbp_admin_repair_topic_reply_count()

    But be careful about running mulitples of these, they are really resource hungry !

    @robin-w

    Moderator

    what level of forum role do your members have?

    In reply to: Freshness Date Format

    @robin-w

    Moderator

    Great – glad you are fixed

    In reply to: Repair tool with cron

    @robin-w

    Moderator

    what functions are you using to create the topics/replies – if you are creating topics and replies using bbpress functions, then repair shouldn’t be needed.

    do you want me to take a look at your import code ?

    In reply to: Freshness Date Format

    @robin-w

    Moderator

    ok so leave in the code that you have – that will make the default into date

    then add this

    function rew_forum_freshness_link( $forum_id = 0) {
    	echo rew_get_forum_freshness_link( $forum_id );
    }
    
    function rew_get_forum_freshness_link( $forum_id = 0 ) {
    		$forum_id  = bbp_get_forum_id( $forum_id );
    		$active_id = bbp_get_forum_last_active_id( $forum_id );
    		$link_url  = $title = '';
    
    		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 ) . '">' . esc_html( $time_since ) . '</a>';
    		else
    			$anchor = esc_html__( 'No Topics', 'bbpress' );
    
    		return apply_filters( 'rew_get_forum_freshness_link', $anchor, $forum_id, $time_since, $link_url, $title, $active_id );
    	}

    and where you want to show a ‘since’ freshness link change

    bbp_forum_freshness_link() to
    rew_forum_freshness_link()

    You should put any amended templates into your child theme

    come back if you don’t know how to do that

    @robin-w

    Moderator

    members is buddypress

    @robin-w

    Moderator

    ok try this

    add a page called ‘forums’ and put the shortcode

    [bbp-forum-index] 
    

    in it.

    Your site should then see it as a page, and you should be able to use this page in your menu swapper

    @robin-w

    Moderator

    ok, that list is from buddypress.

    In reply to: Freshness Date Format

    @robin-w

    Moderator

    ok,

    can you say which lines in loop-single-topic you need which in?

    @robin-w

    Moderator

    adding an editors choice field to the topic form is doable, and creating a view of these also possible, but would be a chunk of code.

    @robin-w

    Moderator

    ok, not totally sure what you are trying to achieve, is it possible to give me a link to your site and you tell me how to see the problem?

    @robin-w

    Moderator

    ok, so you have bbpress as an iten in a menu – yes ?

    If so is it a page, a link or what ?

Viewing 25 replies - 7,976 through 8,000 (of 14,141 total)