not compatible with plugin "bbPress Threaded Replies"
-
“Topics for Posts” work fine when the plugin “bbPress Threaded Replies” is disabled, but when is enable it show only the topic repeated egual for a number of times egual to the total number of replies.
Looking to the code of “Topics for Posts” I see this call
echo bbpress()->shortcodes->display_topic(array('id'=>$bbp_post_topics->topic_ID));
to show the topic replies that work correctly if the plugin “bbPress Threaded Replies” is disabled.I have fixed the problem with with this patch to your plugin
if you modify the file
bbpress-post-topics/templates/comments-bbpress.php
under the line
/** bbPress 2.1.x */
change the code inside the else with:
$bbp = bbpress(); echo $bbp->shortcodes->display_topic( array( 'id' => $bbp_post_topics->topic_ID ) ); wp_reset_postdata(); #echo bbpress()->shortcodes->display_topic(array('id'=>$bbp_post_topics->topic_ID));
https://www.ads-software.com/extend/plugins/bbpress-post-topics/
- The topic ‘not compatible with plugin "bbPress Threaded Replies"’ is closed to new replies.