Search Results for 'code'
-
Search Results
-
Is there a way to link post and topic tags and show post and topics associated with the tag on a single page in front end?
I tried doing it using [bbp-single-tag id=$tag_id] short code on post tag page but I couldnt fetch the topic tag id in runtime. Is there a shortcode like [bbp-single-tag slud=$slug], I can fetch the slug from the post tag URL in runtime.
Hello,
I am trying to follow the step-by-step instructions, and I am still having trouble displaying the main forum page. I am trying to use method 1. I checked and verified the settings.
I added some test forums and topics, and I can see them in the backend.
Forum Root = Forums
Permalink structure is set to POSTNAME
Category | Tag base left blank (default)I created a page called Forums and nothing displayed.
I tried adding the shortcode and still nothing appears.I am referring to: https://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum/#3-%c2%a0creating-a-forum-page
Page Links: https://bkswathq.com/forums
Wordpress : 6.3.2
bbp Version 2.6.9Thanks in advance.
Fills silly to be stuck so early on in the process.In a bbPress forum I want to prevent participants from creating topics but allow replies. In searching the Internet I found code examples from which I selected some to build a plugin. I know a little PHP but WordPress is like a “black box.”
add_action(‘wp_loaded’,’modify_participant’);
function ‘modify_participant'()
{
add_filter(‘mod_participant’, ‘upd_participant’);
}function upd_participant($role,$caps)
{
$role = bbp_get_participant_role();
$caps = modify_capabilities($role);
}function modify_capabilities($role)
{
return array(// Topic caps
‘publish_topics’ => false,
‘edit_topics’ => false,
‘edit_others_topics’ => false,
‘delete_topics’ => false,
‘delete_others_topics’ => false,
‘read_private_topics’ => false,// Topic tag caps
‘manage_topic_tags’ => false,
‘edit_topic_tags’ => false,
‘delete_topic_tags’ => false,
‘assign_topic_tags’ => false
)
}For instance the WP loaded hook causes it to run once at the start which should call those functions to initialize things. Is an add_filter also executed at that time to complete initialization? Then the black box proceeds with the bbp_get_parcipant_role routine so that the capabilities array elements can be updated. I read that WP filters always expect an object to be returned. It seems that these wouldn’t be permanent but just temporary in memory for executing that page. However my suspicion is that more coding would be necessary because that would be too much to depend on the black box for.
I used shortcode to only display one forum in a Learndash course I created. I have older forums that are only assigned to other courses. But now the forum displayed in my new course is showing topics/ threads from older forums. I cannot for the life of me figure out why they would be appearing here! I don’t want customers in this course to see older threads from other courses.
I added blog to site but it keeps taking me to homepage with clicking on topics and categories. Also why is it so difficult to use the forum it suppose to be made for wordpress. Also, why is it that noone can walk me through each step instead of sending information that is not useful for someone who is not good at code?
Folks, this is reference bbPress 2.6.9, WP 6.2.2 and the link to our site forums page is https://www.wb5rdd.org/forums/. My issue is this – Forum users cannot change the font color on their posts. Even with the highest level of access I cannot change the font on the sentence “Please call, text or email me if you can help.” on this page https://www.wb5rdd.org/forums/topic/autumn-in-bonham-bike-rally-radio-operator-assistance-requested/ red. Where are the color choice buttons? Why won’t using HTML code (<FONT COLOR=”#ff0000″> </FONT>) doesn’t even do it. THANKS! – Phillip Beall
Topic: bbpress css
Hello,
I also would like to hide Forums from Member Profile Page.
I have set up Groups Forums only as per instructions here so the Forums on Profle Page is obsolette as I want the forums to be accessible only from Group Page.
Could anyone kindly advice how to do it please?
New to BBPress. WordPress version 6.3.1. Avada theme 7.11.2, BBPress 2.6.9. The default installation of BBpress is picking up colors from my theme which I don’t want. I have followed the instructions in the article https://codex.bbpress.org/themes/theme-compatibility/ like this “The “css” directory contains style sheets that work with the default markup. Copy any you want to modify into a directory named “css” in your theme’s root. eg. /wp-content/themes/%your-theme%/css/” I have created the css directory in the theme root directory and copied the bbpress-rtl.css file to that css directory. I have not yet modified the file. There is no change to the look of BBPress. I even rebooted the server. What am I missing?
I run a Fishing Club Paid Membership web site. One of the features is we offer a Fishing Report Forum. All our club members are Fishing Report Forum users. I would like to be able to add a subscribe link to my Fishing Report Forum on various pages of my website. Is that feasible by some kind of code?
Take note: We do not allow comments on topics so no need for a subscribe link for topics. But I would like to have a Forum Subscribe Link on the topic page. What code would I use?
Hi all
twenty twenty two and bbpres ….
I have try the guide from here … nothing works.
I can only make visible with shortcode, but than only this site, not the topics or other.its possible bbpress use with twenty twenty two?
Thomas