Forum Replies Created
-
In reply to: bbPress uses WP theme?
Hey decas,
I followed this tutorial here..
http://www.adityanaik.com/integratepress-part-i/
And was able to style my theme within wordpress like this..
http://www.designsaga.com/forum
You will need to coding knowledge to get it working though.
In reply to: bbPress uses WP theme?Hey decas,
I followed this tutorial here..
http://www.adityanaik.com/integratepress-part-i/
And was able to style my theme within wordpress like this..
http://www.designsaga.com/forum
You will need to coding knowledge to get it working though.
In reply to: Design SagaThanks
In reply to: Design SagaThanks
In reply to: author link – force link to bbpress profile?I was looking for this also, thanks Gautam!
In reply to: author link – force link to bbpress profile?I was looking for this also, thanks Gautam!
In reply to: topic_tags()Thanks mr_pelle!
Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?
I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar
echo bb_get_avatar( get_post_author_id(), '70');
It seems I need to echo it out.
In reply to: topic_tags()Thanks mr_pelle!
Regarding bb_get_avatar(), it looks like you still need to have the users email to use it. Is there an easy way to grab the email of the current poster?
I find solution to avatar here, https://bbpress.org/forums/topic/how-to-get-the-last-posts-avatar
echo bb_get_avatar( get_post_author_id(), '70');
It seems I need to echo it out.
In reply to: WP Nonce problemSorry, I post this and I immediately find the solution here..
http://phpxref.ftwr.co.uk/bbpress/nav.html?_functions/index.html
I edited my code like this..
<button id = 'postformsub' type = 'submit' name = 'Submit' tabindex = '4'></button>
<?php bb_nonce_field( bb_is_topic() ? 'create-post_' . $topic->topic_id : 'create-topic' ); ?>
<input type="hidden" value="/forum/topic.php?id=<?php echo get_forum_id(); ?>" name="_wp_http_referer">
<input type="hidden" value="<?php echo get_forum_id(); ?>" name="topic_id">And it seems to work now. If anyone is making their own forms then try this solution out for nonce.
In reply to: WP Nonce problemSorry, I post this and I immediately find the solution here..
http://phpxref.ftwr.co.uk/bbpress/nav.html?_functions/index.html
I edited my code like this..
<button id = 'postformsub' type = 'submit' name = 'Submit' tabindex = '4'></button>
<?php bb_nonce_field( bb_is_topic() ? 'create-post_' . $topic->topic_id : 'create-topic' ); ?>
<input type="hidden" value="/forum/topic.php?id=<?php echo get_forum_id(); ?>" name="_wp_http_referer">
<input type="hidden" value="<?php echo get_forum_id(); ?>" name="topic_id">And it seems to work now. If anyone is making their own forms then try this solution out for nonce.