Forum Replies Created
-
In reply to: CSS to move bbp-reply-content below timestamp?
Thanks. It works.
In reply to: How do I add timestamp to posts within a topic?It worked. Thanks.
In reply to: CSS to move bbp-reply-content below timestamp?The class for the timestamp is “mjj-post-date”.
In reply to: How do I add timestamp to posts within a topic?Thanks. It works. Is there a way to only show the date and not the hour/minute? Maybe using code similar to the below could help?
function short_freshness_time( $output) { $output = preg_replace( '/, .*[^ago]/', ' ', $output ); return $output; }
In reply to: How do I add timestamp to posts within a topic?Thanks for responding. I made the below code and unfortunately didn’t work. When you have time in a week or 2, would love to know what went wrong. Thanks.
function post_time ( $output) { $output = preg_replace( '/, .*[^ago]/', ' ', $output ); echo $output; } add_action ('bbp_theme_before_reply_content', 'post_time') ;
In reply to: How do I add timestamp to posts within a topic?Please see this link. Thanks.
In reply to: Basic syntax question for items like this <Thanks. It works.
It works! Thanks for the team effort.
Thanks for giving it a good try. Really appreciate it.
I’ve tried on Safari and Chrome after clearing cache and no luck. “|” fortunately doesn’t show when you go to the topic page. It’s after you click the “subscribe” or “unsubscribe” button, where it then displays.
Thanks. It works when you go to the topic page, but after you click on the subscribe link it will reappear. Any idea if there’s another function I should add? Thx.
Thanks. I entered the below function and it did not fix the issue. Any idea why? Thx.
function hide_before2 ($args = array() ) { $args['before'] = ''; return $args; } add_filter ('bbp_before_get_topic_subscribe_link_parse_args','hide_before2');
Ok, thanks for taking a look.
Sure, go to this link http://www.manupmyhealth.com/forums/topic/test/
Thanks.So, the same character “|” comes up for the “unsubscribe” button? See link below for an image. What function should I use to remove that? Thx.
It works! Thank you.
The theme is Divi which is from Elegant Themes and the plugin is BBpress Notify. I used the below function to change it from Subscribe to “Click to receive…”. Thanks.
function change_translate_text4( $translated_text ) { if ( $translated_text == 'Subscribe' ) { $translated_text = 'Click to receive an email notification when a member responds below'; } return $translated_text; } add_filter( 'gettext', 'change_translate_text4', 20 );
In reply to: Topic title breaks into a 2nd line below topic imageIt works! Thanks.
Thank you. This worked.
In reply to: How to remove certain breadcrumb separatorsIt works. Thank you.
In reply to: Changing the E-mail Notification AddressCreate a file called functions.php which would be in your Child theme and then place the following text in your file and then place the code mentioned above and then you should be good to go.
<?php //Opening PHP tag
In reply to: Place image before forum title in forum pageThank you
Do you have similar code to change the word “Forum” to something else? Thanks.
It works. Thanks.
Thanks. You did a great job modifying your layout so that images and text were placed in different parts of the forum. Do you know of a good resource or a term I should google to learn how to do that? I understand html, css, and how to build php hooks, but I do not know how to modify a forum layout. For example, I would like to have an image that is right before my forum title after you click on a forum name. Thanks.