Search Results for 'code'
-
Search Results
-
The page on my forum is full of list bullets. (https://www.turtleholic.com/forums/forum/turtle-questions/)
Does anyone know how to fix this? I was able to add the following CSS code to the main Forum page (https://www.turtleholic.com/turtleholic-forum/), which removed the bullets from that page. But on the specific forum pages I don’t know how to add custom CSS.
ul ul li:before {
display: none;
}ul li:before {
display: none;
}Topic: @mention doesn’t work
I only use bbpress and no buddypress, is there a code or plugin for bbpress? TY❤️🔥
In the BuddyPress profile bbPress subscriptions are listed. With each subscription there a little icon that looks something like [x]. It *appears* that this is intended to be used to cancel a subscription, but when you click on it nothing happens.
I’m a bit confused about where these bbP subscriptions in the BP profile come from. In otherwords I don’t know if they come from BP or bbP. I assumed it was BP but the BuddyPress people don’t seem to know what I’m talking about.
The [x] icon appears to take you to a path that looks like this:
https://mikeandtina.org/members/mike/forums/subscriptions/?action=bbp_unsubscribe&object_id=357&object_type=post&redirect_to=https%3A%2F%2Fmikeandtina.org%2Fmembers%2Fmike%2Fforums%2Fsubscriptions%2F&_wpnonce=37ad0686dcSo now I’m wondering of bbPress puts info about subscription on the BuddyPress profile, or if something else entirely is going on. If anyone can shed any light on this I’d appreciate it.
Mike
Hi,
I would like to show in a page forum, my forums, members, subjects, answers… I can not arrive to see a shortcode
I have the last version of bbPress and WP members
Thanks for your help,
Best regardsHi
wordpress 6..0.2
bbpress 2.6.9i want to let users edit their avatar with the Basic User Avatars plugin
i want to be edited in the profile edit page
forums/user/name/edit/
i tried to write this:
<?php echo do_shortcode(“[basic-user-avatars]”); ?>
in TEMPLATES/DEFAULT/EXTRAS/SINGLE-USER-EDIT.PHP
dont work
how can i do then
thanks
regardsTopic: bbcodes / format toolbar
wordpress 6..0.2
bbpress 2.6.9
Theme Avada
Hi
In replies, does not show any bbcodes toolbar as i thought it did.
Installed gdtools and gd attackment
How can i offer a toolbar for users?
for bbcodes or format and embeds
thanks
RegardsHello,
I have just installed the latest version of bbPress, but on the forums page, I am seeing the following errors. The ‘Registered Users’ and ‘Forums’ part seems fine but the rest are not.
Here is the code from that section of the file:
<dt><?php esc_html_e( 'Forums', 'bbpress' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['forum_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topics', 'bbpress' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Replies', 'bbpress' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['reply_count'] ); ?></strong> </dd> <dt><?php esc_html_e( 'Topic Tags', 'bbpress' ); ?></dt> <dd> <strong><?php echo esc_html( $stats['topic_tag_count'] ); ?></strong> </dd>Topic: blank topic page
Hi there,
i’ve got a Problem with my bbpress forum.
When I want to view a topic in the Frontend, then i stare at a blank page
After creating a new WordPress site and using the shortcode “[bbp-single-topic id=$topic_id]” it works.
So I can only view the Topic after creating a WordPress page for it.Is there a Way WordPress creates automatic a Page for a new Topic, with the necessary Shortcode?
Maybe there is another solution for my problem.I look forward to your replies and thank you in advance 🙂
Topic: Can’t remove bbpress data
Aloha. Somehow my installation of bbpress is mucked up big time. There are two of us who are WP administrators, but neither one is a ‘keymaster’, so we can’t do much. Right now we have no data / forums we wish to preserve, so a complete delete and reinstall would hopefully be the quickest and easiest way to move forward.
I’ve found this article on how to delete bbpress, but step two is: Go to Tools > Forums > Reset Forums. When I go to ‘Tools’ there is no link to Forums, so I can’t do this step. I’m guessing this is related to the fact that neither one of us is a keymaster and I have no idea how to restore keymaster permissions
Any help would be greatly appreciated.
Mahalo,
Harry Z
Hi, I’m having an issue where my forum notifications are not being formatted correctly. None of the spacing that exists in the default notification message exists in the resulting email, and I have confirmed that the message is being sent using the ‘text/html’ content type header. I added a
<br>tag to the notification email as a test as well, but it was sent in plain text and not rendered as a line break. Anything I should try?Topic: Custom content after topic
Hi, for some reason the login does not work on bbpress topic page.
I have this code in my functions.php file.
add_action ('bbp_theme_after_reply_form_content' , 'bbp_goto_login_page' ) ; function bbp_goto_login_page() { echo '<p><a href="/login"><div class="gotologin">You must be logged in</div></a></p>' ; }This is working, but not the way I want. I would like it to only show if user is logged out and it should be visible on the topic page where there is normally the login form.
Is there something like bbp_theme_after_topic_content?
Tried googling, but could not find anything similar.