Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
In reply to: Reply-Post-Date needs a space after the word On
Thanks for your help, Robin.
Issue resolved.
The theme, Publisher, has a function buried in their visual editor, called ‘Theme Translations’, which let me change the “On” to “on ” (space).
In reply to: Reply-Post-Date needs a space after the word OnAt least they address it.
https://community.betterstudio.com/publisher-doc/forum-options/In reply to: Reply-Post-Date needs a space after the word OnThank you Robin.
Cheers
🙂-e
In reply to: Reply-Post-Date needs a space after the word OnRobin,
Doubtful they’d have a response. Is the ‘On’ atypical to normal bbPress installs?
If so, I can start looking at the theme instead of bbP.-e
In reply to: Reply-Post-Date needs a space after the word OnI’m digging through php and can’t locate where the word “On” gets inserted.
bbpress/includes/replies/template/php
lines 660-680
function bbp_get_reply_post_date( $reply_id = 0, $humanize = false, $gmt = false ) { $reply_id = bbp_get_reply_id( $reply_id ); // 4 days, 4 hours ago if ( ! empty( $humanize ) ) { $gmt_s = ! empty( $gmt ) ? 'G' : 'U'; $date = get_post_time( $gmt_s, $gmt, $reply_id ); $time = false; // For filter below $result = bbp_get_time_since( $date ); // August 4, 2012 at 2:37 pm } else { $date = get_post_time( get_option( 'date_format' ), $gmt, $reply_id, true ); $time = get_post_time( get_option( 'time_format' ), $gmt, $reply_id, true ); $result = sprintf( _x( '%1$s at %2$s', 'date at time', 'bbpress' ), $date, $time ); } // Filter & return return apply_filters( 'bbp_get_reply_post_date', $result, $reply_id, $humanize, $gmt, $date, $time ); }
In reply to: Reply-Post-Date needs a space after the word OnHey Robin,
Theme is Publisherhttps://community.betterstudio.com/publisher-doc/publisher-introduction/
Viewing 6 replies - 1 through 6 (of 6 total)