only thing i can think of is changing this
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
<a class="bbp-topic-permalink" href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a>
<?php do_action( 'bbp_theme_after_topic_title' ); ?>
to this
<?php do_action( 'bbp_theme_before_topic_title' ); ?>
<a class="bbp-topic-permalink" title="<?php bbp_topic_excerpt?>" href="<?php bbp_topic_permalink(); ?>"><?php bbp_topic_title(); ?></a>
<?php do_action( 'bbp_theme_after_topic_title' ); ?>
Robkk, can you tell me which file this code is in?
oh i forgot , it should be in loop-single-topic.php
copy that into a child theme and put it in a folder called bbpress
Thanks. I replace the code with what you suggested and I don’t see any changes. Although the file is in the bbpress > templates > defauly > bbpress folder. Is that where it should be?
copy the original file from the plugin and copy it to your child theme.
the file should be like this in your child theme
wp-content > themes > (your child theme name) > bbpress
OK, I made a folder named bbpress in wp-content > my selected theme folder and copied the file there. Still nothing changed. Am I not understanding the child theme concept? Sorry, I’m a beginner. Thanks
you did hover over the topic title right??
@goclones
do you have any cache plugins running?? maybe clear the cache??
Yes, but I’ve emptied all caches and still no go.
hmm i tested this in twentyfourteen and it seemed to work just fine.
what theme are you currently using??
if its a free theme i could probably test it out real quick to see if it works.
I am using the Vantage theme (it is free).
I do have a plugin running called Page Builder for my home page (in case that might be an issue).
alright i will test it out in a minute.
@goclones
i dont know why its not working??
most of the links you hover over with the vantage theme in the bbPress forums the title attributes dont show , like hovering over the title of the topic should show the topic title , but it doesnt.
Dont know what to tell you.
Thank you for checking into it.
I’ll keep trying.
Perhaps it’s because <?php bbp_topic_excerpt?> needs to be closed as a function.
<?php bbp_topic_excerpt(); ?>