Search Results for 'bbpress'
-
Search Results
-
In a WordPress 4.2.2 installation, using bbPress 2.5.7, I am importing data from a PHPBB3 3.1.4 installation. Both PHPBB and WP4.2.2/BBPress 2.5.7 are on the same server.
The import of data (a MySQL database of about 95MB) includes ONLY “replies.” And those imported replies are added to the DB as posts, but those posts are not visible in the WP Admin (they can be seen using a DB tool like PHPMyAdmin). NO forums are imported.
Running Repair Forums tools all work successfully, except the following:
Recalculating reply menu order … No reply positions to recalculate!
Counting the number of topics in each forum… Failed!
Repairing BuddyPress group-forum relationships… Failed!
Counting the number of topics each user has created… Failed!
Counting the number of topics to which each user has replied… Failed!
Counting the number of replies in each forum… Failed!Basically, so far, I cannot import any data from a PHPBB3 installation, except “replies”.
The PHPBB3 installation is fully functional. It works properly.
Based on the information above, who can give me guidance toward a solution?
Many thanks for your time.
BillHey bbpress people. I am having a trouble with my forum. The replies look like they are getting cut off. The original is fine. Take a look for yourself. Here is the URL of an example thread. http://www.calledoutracing.com/forums/Topic/cadillac-ats-choices/ . Please help me fix this. I cannot change my theme as it would hav a huge impact on my site. Thanks.
I’ve searched but not found a solution. I’m running the current version of WordPress on a multisite network with a new install of bbPress.
I’m the superadmin of the network and everything works great. However, when I try to give access to another user and give that user a keymaster role the links in the admin bar for Forums, Topics, and Replies is missing.
So far I’ve tried running the repair tool with no change. I can even access the tools with the login that doesn’t show the admin bar links. The forum is located here: q4intel.softwiredweb.net.
Hello to all
Could anyone say me why is not working “Submit button” of BBpress in my theme and why I can’t see manually created topics from the admin control panel?
The web is: http://probando555 DOT esy.es/forums/
Thanks a lot
I’ve been using bbpress plugin to set up forums for my website’s users. Originally there is no function when it comes to ‘counting views’ of each post. So I added some codes according to this website’s advice.
It works fine with general(sitewide) forums but when I made a group(buddypress function) and tried to integrate it with bbpress forum, the view count php code does not work in group forums. (Still, it works perfectly fine at sitewide forums)
this is my code right now (wp-content/plugins/bbpress/templates/default/bbpress/loop-single-topic.php)
<li class="bbp-topic-voice-count"> <?php if( !function_exists('get_wpbbp_post_view') ) : // get bbpress topic view counter function get_wpbbp_post_view($postID){ $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ delete_post_meta($postID, $count_key); add_post_meta($postID, $count_key, '0'); return "0"; } return $count; } function set_wpbbp_post_view($postID) { $count_key = 'post_views_count'; $count = get_post_meta($postID, $count_key, true); if( $count == '' ){ add_post_meta($postID, $count_key, '1'); } else { $new_count = $count + 1; update_post_meta($postID, $count_key, $new_count); } } endif; if( !function_exists('add_wpbbp_topic_counter') ) : // init the view counter in bbpress single topic function add_wpbbp_topic_counter() { global $wp_query; $bbp = bbpress(); $active_topic = $bbp->current_topic_id; set_wpbbp_post_view( $active_topic ); } add_action('bbp_template_after_single_topic', 'add_wpbbp_topic_counter'); endif; echo get_wpbbp_post_view( bbp_get_topic_id() ); ?> </li>Topic: Youtube Embed is Not working
Hi,
I am using BBPRESS for my website, I checked this option from backend:
“Embed media (YouTube, Twitter, Flickr, etc…) directly into topics and replies”
but only administrator can embed youtube and other embed just reflect the IFRAME code.
can you help what I am missing, I need it to be allowed for CONTRIBUTORS to embed the youtube embed code.
Thanks Sanny
Topic: bbPress url to subdomain
Hi all!
After some search here on support forum and in bbpress itself (v2.5.7, wordpress 4.2.1), i dont find anything about this (only Multsite-related, which isn’t my case).
My question is: Is possible to bbpress use forums.example.org instead of example.org/forums ? I want to setup a small website consisting of a forum and a portal (blog), and i want to know if this is possible.
Thank you in advance