How to embed CSB to bbpress topic and forum
-
First of all, Thank you very much for nice plugin.
I try to embed CSB to BBpress topic and forum.
For topic, at /htdocs/wp-content/plugins/bbpress/templates/default/extras/single-topic.php... <?php while ( have_posts() ) : the_post(); ?> <div id="bbp-topic-wrapper-<?php bbp_topic_id(); ?>" class="bbp-topic-wrapper"> <h1 class="entry-title"><?php bbp_topic_title(); ?></h1> <div class="entry-content"> <?php bbp_get_template_part( 'content', 'single-topic' ); ?> <?php do_action('crafty-social-share-buttons'); ?> </div> </div><!-- #bbp-topic-wrapper-<?php bbp_topic_id(); ?> --> ...
For forum, at /htdocs/wp-content/plugins/bbpress/templates/default/extras/single-forum.php
... <?php if ( bbp_user_can_view_forum() ) : ?> <div id="forum-<?php bbp_forum_id(); ?>" class="bbp-forum-content"> <h1 class="entry-title"><?php bbp_forum_title(); ?></h1> <div class="entry-content"> <?php bbp_get_template_part( 'content', 'single-forum' ); ?> <?php do_action('crafty-social-share-buttons'); ?> </div> </div><!-- #forum-<?php bbp_forum_id(); ?> --> <?php else : // Forum exists, user no access ?> ...
But no show. Should I define ‘crafty-social-share-buttons’ at function.php etc…?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to embed CSB to bbpress topic and forum’ is closed to new replies.