Search Results for 'bbpress'
-
Search Results
-
Hi
When I create a forum I can link it to my related LearnDash course. I have multiple courses, each with its own private forum. The challenge I am having is that when I click on a topic in a forum, either Learndash or bbPress “forgets” which course that topic is linked to – which means any of the course navigation menus that are part of the course then get ‘lost’ too. My Gamipress rules to show specific badges for specific courses also gets messed up with this loss in connection.
How do I link the topics to their respective Learndash courses in the same way I do the forums? When I create the topics I link them to the forums that are linked to the course, however that is not working to keep me in the correct course, when I click on a topic.
Thanks in advance
TimTopic: Need BBpress Help
this is how my forum looks on my website https://lightforge.web.primedtnt.com/forums/ I would appreciate any help in making this clearer to read and understand. I’m looking into finding ways to remove sidebars on forum page, but not until i can read the forum.
Topic: Importing from phpBB 3.2.5
using the added converter that was found here: https://bbpress.org/forums/topic/fix-for-phpbb3-to-bbpress-conversion-script/
all I get is “Starting Conversion”
Topic: not listing all the topis
hi there,
i have a list of topics in the forum but its not listing all of them.
kindly assist?1) WordPress 5.2
2) bbPress 2.5.14
3) link to my site – http://www.meddirect.co.za/forumsWe have some custom code in the mu-customisations plugin which filters bp_core_fetch_avatar to add a variety of little image overlays to the user’s avatar (e.g. instrument icon, “Team” logo). (mu_add_overlays_to_avatar() in mu-buddypress.php)
This has been working fine throughout the site, but as of today (I suspect with the upgrade of BuddyPress from 2.8.2 to 4.2.0) it no longer works in bbPress discussions.
It does still work correctly in BuddyPress content, e.g. the “login widget” at the top of the sidebar with the user’s own avatar, the activity feed in the sidebar, member profile pages. But in the author info in bbPress discussion posts, the overlays are no longer appearing.
Could you please look into what might have changed here, and why the bbPress template for showing the author avatar seems to no longer be affected by our mu_add_overlays_to_avatar filter? Thanks!
http://prntscr.com/nig5is http://prntscr.com/nig6jwTopic: Registration not working
Hi,
I really like bbpress, but i’ve been having a problem on my website. I’ve downloaded the plugin, activated it. Created forum, register, and lost password pages. Checked “Anyone can register” in settings. Yet, when I try to to register with username and email address in Incognito mode to test it out. after clicking the final “register” button the page just acts as if it refreshed. and no verification is sent to my email address.
Somebody help..
HI
I have added bbpress and started forum http://www.thelogicalnews.com/forum/index.php
Could you please let me know if its a do follow?
Thanks
Hi,
The bbpress search box isnt returning the search results from the forum replies. Im using shuttlethemes as my theme. When i contacted them regarding my issue, this was their response below. Is there another way to go around and get the search box to work?
‘Often plugin developers will have different settings for specific use cases. It is certainly something that the plugin developer should be supporting you with, as the search is a part of WordPress core and our themes donât manipulate the search functions.’
Thank you in advance!
Richard
Topic: My Ugly Website
I’m brand new at this, so forgive me if this is obvious.
If you have a look at my first go at including a forum, you’ll see this very ugly ‘sub title’ area above the forum. Googling around seemed to indicate that the problem is with my theme, which is Customify. It says ‘Archives: Forums’ and ‘bbPress forums’ and it’s totally superfluous. I want to just take that out. What do I need to know to do this? Assume I know nothing.
Topic: Forum Subscribe
By default, when joining a group in BuddyPress, you need to subscribe to associated forums. Is it possible to have it so that when you join a group, you are atomically subscribed to the forums as opposed to having to physically subscribe???
WordPress 5.1.2 . BuddyPress 4.3 . bbPress . 2.5.14
Thanks in advance.bbpress it is the best plugin for forum that i have ever used thanks for sharing the plugins like this
Hi,
I am trying to create a plugin for my own use, I think the problem is a coding one.I have copied some of this code from a plugin and added some myself to try to create my own plugin rather than adding it to my function.php file.
1. I have added a new record in the postmeta table with the topic ID. meta key and meta value for every topic I have in the table.
2. I want a meta box at the backend on both the topic and reply screens, in the metabox for both screens I want to show the meta value of the associated topic.
I have done both these3. I would like to be able to change this value, but only in the topic screen.
With the code below, if I change the value in the reply screen when I update nothing changes which is great, but if I change the value in the topic screen, when I update I get a blank value returned and the original value in the table is also removed.
When I create a new topic I would also like to populate the meta table.*/
class bbPress_add_meta_fields {
/**
* Construct.
*/private $match_m_fields = array();
public function __construct() {
if ( is_admin() ) {
add_action( âload-post.phpâ, array( $this, âinit_metaboxâ ) );
add_action( âload-post-new.phpâ, array( $this, âinit_metaboxâ ) );
$this->match_m_fields = array(âtopicâ, âreplyâ);
}
}/**
* Meta box initialization.
*/
public function init_metabox() {
add_action( âadd_meta_boxesâ, array( $this, âadd_metaboxâ ) );
add_action( âsave_postâ, array( $this, âsave_metaboxâ ), 10, 2 );
}/**
* Adds the meta box.
*/
public function add_metabox() {
add_meta_box(
âbbp_m_field_metaboxâ,
__(âTwitter nameâ, âtextdomainâ ),
array( $this, ârender_metaboxâ ),
âtopicâ, âsideâ, âhighâ
);
add_meta_box(
âbbp_m_field_metaboxâ,
__( âTwitter nameâ, âtextdomainâ ),
array( $this, ârender_metaboxâ ),
âreplyâ, âsideâ, âhighâ
);}
/**
* Renders the meta box.
*/
public function render_metabox( $post ) {
// Add nonce for security and authentication.
wp_nonce_field( âcustom_nonce_actionâ, âcustom_nonceâ );// get the topic id
$post_id = get_the_ID();
$reply_topic_id = bbp_get_reply_topic_id( $post_id );
// get value from table
$twitval = get_post_meta( $reply_topic_id, âbbp_twitnameâ, true );
echo $twitval;
echo â<br><label for=âbbp_twitnameâ>Twitter Name</label><br>â;
echo â<input type=âtextâ name = âbbp_twitnameâ value= ââ . $twitval .’â>â;
//echo â<input type=âsubmitâ value=âSubmitâ />â;add_action ( âbbp_new_topicâ, âbbp_save_extra_fieldsâ, 10, 2 );
add_action ( âbbp_edit_topicâ, âbbp_save_extra_fieldsâ, 10, 2 );function bbp_save_extra_fields($reply_topic_id,$twitval) {
if (isset($_POST) && $_POST[âbbp_twitnameâ]!=â)
update_post_meta( $reply_topic_id, âbbp_twitnameâ, $twitval );
}
}/**
* Handles saving the meta box.
*
* @param int $reply_topic_id Post ID.
* @param WP_Post $post Post object.
* @return null
*/public function save_metabox( $reply_topic_id) {
// Add nonce for security and authentication.
$nonce_name = isset( $_POST[âcustom_nonceâ] ) ? $_POST[âcustom_nonceâ] :â;
$nonce_action = âcustom_nonce_actionâ;// Check if nonce is set.
if ( ! isset( $nonce_name ) ) {
return;
}// Check if nonce is valid.
if ( ! wp_verify_nonce( $nonce_name, $nonce_action ) ) {
return;
}// Check if user has permissions to save data.
if ( ! current_user_can( âedit_postâ, $reply_topic_id ) ) {
return;
}// Check if not an autosave.
if ( wp_is_post_autosave( $reply_topic_id ) ) {
return;
}// Check if not a revision.
if ( wp_is_post_revision( $reply_topic_id ) ) {
return;
}// Check to match the slug
if(!in_array($post->post_type, $this->match_m_fields)){
// return;
}$meta_box_text_value = $twitval;
if(isset($_POST[âbbp_twitnameâ])) {
$meta_box_text_value = $_POST[âbbp_twitnameâ];
}update_post_meta($reply_topic_id, âbbp_twitnameâ, $twitval);
}/**
* is_edit_page
* function to check if the current page is a post edit page
*/public function is_edit_page($new_edit = null){
global $pagenow;
//make sure we are on the backend
if (!is_admin()) return false;
if($new_edit == âeditâ)
return in_array( $pagenow, array( âpost.phpâ, ) );
elseif($new_edit == ânewâ) //check for new post page
return in_array( $pagenow, array( âpost-new.phpâ ) );
else //check for either new or edit
return in_array( $pagenow, array( âpost.phpâ, âpost-new.phpâ ) );
}}
new bbPress_add_meta_fields();
Hi, I’m new to bbPress and BuddyPress. Iâm using WP 5.1.1 and bbPress 2.5.14
I’m getting an error that says: “you cannot create new forums”
I have been using bbpress plugin. I am having problem with plugin. Search option under replies section does not works ( https://www.example.com/wp-admin/edit.php?post_type=reply ). There are total of 3,714 replies and i want to search replies with thanks word. There might be 150-200 replies word contain “Thanks”. So whenever i search thanks word, an error occurs ( This page isnât working http://www.example.com is currently unable to handle this request. HTTP ERROR 500 ).