I can marked as resolved, as I finished customizing the plugin to do what I need. Thank you again for the lead on it. Would love to see a plugin update that makes my hack obsolete. Happy to leave the thread open for that discussion. I’ll close it unless I hear otherwise.
Here’s what I did, replacing the original line in the plugin /templates file comments-bbpress-link.php:
<!--ORIGINAL LINE <a href="<?php bbp_topic_permalink( $bbp_post_topics->topic_ID ); ?>"><?php echo esc_attr($link_text) ; ?></a>-->
<!--SUGGESTION FROM POST, CREATES A BUTTON BUT NO CUSTOM HTML OPTIONS <a href="<?php bbp_topic_permalink( $bbp_post_topics->topic_ID ); ?>"><?php echo "<button>" . esc_attr($link_text) . "</button>"; ?></a>-->
<!--THIS ONE DOES WHAT I WANT BUT WITHOUT BUTTON EFFECT <a href="<?php bbp_topic_permalink( $bbp_post_topics->topic_ID ); ?>"><?php echo "<b>CLICK HERE</b> to join the discussion of this post in our discussion forums." ; ?></a>-->
<!--THIS ONE DOES BOTH--><a href="<?php bbp_topic_permalink( $bbp_post_topics->topic_ID ); ?>"><?php echo "<button>" . "<b>CLICK HERE</b> to join the discussion of this post in our discussion forums." . "</button>"; ?></a>
-
This reply was modified 2 years, 3 months ago by xbladerunner.