Skip to:
Content
Pages
Categories
Search
Top
Bottom

Topic Date / Time under Mentions

  • @sallyruchman

    Participant

    Hello,

    i use WP 4.6.1 and BBpress 2.5.11. I would like to move the Date / Time in Topics (over the Avatar) down under Mentions, like its here in the bbpress forum done?

    Thanks
    Regards
    Sally

Viewing 13 replies - 1 through 13 (of 13 total)
  • @sallyruchman

    Participant

    I would like this order

    Avatar Image
    Username
    User Role
    Mention
    Freshness

    @sallyruchman

    Participant

    Hi,

    can someone help me ??

    Thx
    Sally

    @sallyruchman

    Participant

    Hello,

    pls see here a screenshot.

    https://drive.google.com/open?id=0Bwsq40iT9zm9RTU2ODAtYjhFekk

    2. How to Move the Freshness Time under @Mentions
    4. How to Rename the #ID to Reply

    Can someone help me with this?

    Thx
    Sally

    @sallyruchman

    Participant

    Can someone help me with this?

    Thx
    Sally

    @sallyruchman

    Participant

    Any advice ???

    @sallyruchman

    Participant

    No one an idea???

    @robin-w

    Moderator

    to hide the date at the top, put this in your css

    .bbp-reply-post-date {
      display: none;
    }

    Then to add to the list add this to your functions file

    add_action ('bbp_theme_after_reply_author_details', 'rew_display_date');
    add_action ('bbp_theme_after_topic_author_details', 'rew_display_date'); 
    
    function rew_display_date () {
    	?>
    	<span class="bbp-reply-post-date"><?php bbp_reply_post_date(); ?></span>
    	<?php
    }
    

    @sallyruchman

    Participant

    Hello,

    the first code to hide the bbp-topic-post-date works. Adding the second code to the functions.php and checking the topics / reply the bbp-topic-post-date is nowhere visible..

    What else can i try?

    @robin-w

    Moderator

    I’d need a link to your site

    @sallyruchman

    Participant

    @robin-w

    Moderator

    ah, found out what I have done wrong

    can you change the code to

    add_action ('bbp_theme_after_reply_author_details', 'rew_display_date');
    add_action ('bbp_theme_after_topic_author_details', 'rew_display_date'); 
    
    function rew_display_date () {
    	?>
    	<span class="bss-reply-post-date"><?php bbp_reply_post_date(); ?></span>
    	<?php
    }

    @sallyruchman

    Participant

    Hi Robin,

    thanks, the last Code works

    Regards
    Sally

    @robin-w

    Moderator

    great !

Viewing 13 replies - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.
Skip to toolbar