Search Results for 'bbpress'
-
AuthorSearch Results
-
June 29, 2024 at 9:51 am #240789
In reply to: bbPress 2.6.10 – All pages return 404 errors
PAbernathy
ParticipantThe only thing I have in addition to bbpress is LearnPress Plugin that integrates with bbpress.
June 29, 2024 at 9:49 am #240788In reply to: bbPress 2.6.10 – All pages return 404 errors
PAbernathy
ParticipantI resolved mine by rolling back to a previous edition of bbpress. Clearly the bbpress update has issues and indeed caused 404 havoc on my website as well.
June 29, 2024 at 9:47 am #240787In reply to: bbPress 2.6.10 – All pages return 404 errors
PAbernathy
ParticipantI had the same issue….I freaking panicked. I had my host restore to yesterday’s backup. The bbpress update did the exact thing to my site…404 on Everything.
June 29, 2024 at 9:43 am #240786In reply to: bbPress 2.6.10 – All pages return 404 errors
devsg9
ParticipantHi,
Blog page, Buddypress and bbpress pages working normal.
404 error coming on Elementor pages for non logged in users of the site.
Logged in users however are able to access all the pages.I see, some issue with the login system with this bbpress update.
Please help.
June 29, 2024 at 9:24 am #240785In reply to: bbPress 2.6.10 – All pages return 404 errors
he110
ParticipantHi Eusebiu,
I downgraded bbPress and all resumed.
Thank you.June 29, 2024 at 8:50 am #240782In reply to: bbPress 2.6.10 – All pages return 404 errors
Eusebiu Oprinoiu
ParticipantYou can get older versions from the Advanced page on WordPress.org.
You can find a dropdown with previous versions at the bottom of this page.https://wordpress.org/plugins/bbpress/advanced/Once you download the version you want, upload the ZIP archive under Plugins > Add New.
You will be asked to overwrite the existing plugin. Click Yes, and you are back to normal.June 29, 2024 at 8:40 am #240779In reply to: bbPress 2.6.10 – All pages return 404 errors
Eusebiu Oprinoiu
ParticipantI just did a test with the LearnDash integration addon disabled, and it made no difference.
The issue is caused by bbPress.June 29, 2024 at 8:31 am #240778In reply to: bbPress 2.6.10 – All pages return 404 errors
Eusebiu Oprinoiu
ParticipantI’m not using any other addon for bbPress, but I do have LearnDash and their bbPress integration addon.
June 29, 2024 at 8:26 am #240777In reply to: bbPress 2.6.10 – All pages return 404 errors
OSCOWP
Participantrobin, do you know whats new in the bbpress 2.6.10 update?
There is no changelog…
June 29, 2024 at 8:25 am #240776In reply to: bbPress 2.6.10 – All pages return 404 errors
Robin W
Moderatorwhat other bbpress related plugins are you running?
June 29, 2024 at 8:05 am #240774In reply to: bbPress 2.6.10 – All pages return 404 errors
Eusebiu Oprinoiu
ParticipantHello, Robin!
I tried all the steps you mentioned before opening this ticket.
I cleared both the page and object caches and resaved the permalink rules in case this was causing the 404 errors. (although permalink issues would cause problems regardless of the logged-in status)In addition to the 404 errors, pages containing queries, like the Blog page or post-type archive pages, load as they should, with 200 OK status, but do not display any content. (the queries return
null)Reverting to bbPress 2.6.9 solves the issue.
And as I mentioned, this only happens for anonymous visitors. For administrators and logged-in users the pages work as expected.June 29, 2024 at 5:57 am #240770Topic: bbPress 2.6.10 – All pages return 404 errors
in forum TroubleshootingEusebiu Oprinoiu
ParticipantAfter updating to bbPress 2.6.10, every single page returns a 404 error.
This only happens for logged-out users. For the users who are logged in, the website works as expected.June 29, 2024 at 5:41 am #240769Topic: BBPRESS 2.6.10!
in forum Requests & FeedbackOSCOWP
Participantthere is a new update availeable but I don’t find any change logs
Does anyone has information about this new update?
June 29, 2024 at 4:07 am #240767In reply to: Registration without email requirement
Robin W
ModeratorOtherwise it is doable but far beyond free help – as I say bbpress just uses wordpress registration so maybe contact a wordpress developer who can do some code for you.
June 28, 2024 at 4:00 pm #240759Topic: Get_Forum_Name from functions.php
in forum Troubleshootingttiefenbach
ParticipantI’m trying to get a default featured image to display using a filter of “post_thumbnail_id” in my child theme’s functions.php file. I’m able to add a default thumbnail for post_type of topic, but I’d like it to be a custom thumbnail based on the id, or name of the forum the topic is in. Here’s what I have so far:
function my_filter_thumbnail_id( $thumbnail_id, $post = null ) { if ( $post->post_type != 'topic' ) return $thumbnail_id; $forumname = get_forum_name( $post->forum_id ); if ( $forumname == "wellness") $thumbnail_id = 7091; return $thumbnail_id; } add_filter( 'post_thumbnail_id', 'my_filter_thumbnail_id', 20, 5 );The issue is, “get_forum_name(),” is an undefined function. I’m not looking to override the default functions of bbPress, just be able to access the forum_id or forum_name from my theme’s functions.php file. Any help would be greatly appreciated! Thanks
June 28, 2024 at 3:22 am #240736In reply to: Registration without email requirement
Robin W
Moderatorbbpress just uses wordpress registration.
Wordpress requires users to have an email address for various reasons, including password changing and resetting.
Whilst this is certainly achievable with code, I do not know of any plugin that allows this.
No-one sees the email address apart from WordPress admins and the user.
June 27, 2024 at 5:34 pm #240731Topic: Registration without email requirement
in forum Installationtgothard
ParticipantHello,
We are new to bbpress and are working on setting up our forums. We have some requirements and are unable to find a plugin to work for us:1. We need to have a registration, but WITHOUT an email. We just want a username and password.
2. Moderator must approve all registrations.Hoping someone can help us with this!
Thanks,
TheresaJune 27, 2024 at 2:00 pm #240725In reply to: edit answer in forum not work
jlemee
ParticipantI found it on a bbpress support discussion because I only wanted you to keep the modify, edit and trash links. But the link to edit never worked, before or after adding this code
June 27, 2024 at 1:58 pm #240724Dean Scott
ParticipantI’m looking directly at wp_posts table. post_parent key has matching values to post_type records (topics, replies) and verified by your code returning zero for any mismatches.
I’ve also added a copy of my theme’s page.php (parent = Kyma, child = Frontech), renamed it bbpress.php, and put it in both parent and child root theme folders (unaltered, because there’s nothing in the theme interfering with the layout and placement of BBP). No change.
June 27, 2024 at 1:40 pm #240722Dean Scott
ParticipantI just discovered more at the end of the PHP error…
LIMIT 0, 15 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), apply_filters(‘template_include’), WP_Hook->apply_filters, bbp_template_include, apply_filters(‘bbp_template_include’), WP_Hook->apply_filters, bbp_template_include_theme_compat, BBP_Shortcodes->display_topic, bbp_get_template_part, bbp_locate_template, load_template, require(‘/plugins/bbpress/templates/default/bbpress/content-single-topic.php’), bbp_has_replies, WP_Query->__construct, WP_Query->query, WP_Query->get_posts
Is this helpful?
Yes, I’ve switched to 2024 theme AND deactivated all plugs, one-by-one. Same error.
June 27, 2024 at 9:40 am #240715Dean Scott
ParticipantI installed and ran Robin’s Fix Import plugin from this thread: https://bbpress.org/forums/topic/topics-and-replies-not-showing-after-import/
The results:
Topics fixed…
Replies fixed…
All done….
Total topics: 106
Topics with no post_parent: 0
Topics with no parent in post meta: 0
Total replies: 663
Replies with no post_parent: 0
Replies with no parent in post meta: 0I do not see how this is possible. I’m looking at the database wp_posts and selecting by post_type = replies (and then topics) in phpMyAdmin. The post_parent key for post_type = replies has values matching the post_parent key value for each post_type = topic, AND the post_parent key value matches the ID key value for post_type = forum. Wherein does this warrant a finding of ZERO posts/replies?
June 26, 2024 at 5:59 am #240691Topic: bbPress is not compatible with BuddyPress version 12.5
in forum PluginsAbhishek Saini
ParticipantbbPress is not compatible with BuddyPress version 12.5.1
active plugin bbPress 2.6.9 , Buddypress 12.5.1 and theme is :2023 or any
issue appears on subscriber role on fourm tab
https://prnt.sc/Q0JtKKzcxvMuJune 25, 2024 at 11:02 am #240683In reply to: bbPress Subscription Feature Not Working
ncarring
ParticipantRe “you might need to change the email address bbPress sends emails from”. How easy is this? I am the admin of my site, but I don’t have any server access, so can’t hack into php files. I know the issue is the from address, because I have fixed other emails from WP using the “WP Mail From” plugin. The issue is that the site is in a subdomain of the main hosted domain, but emails need to go from the main domain.
Hope this makes sense.
Nick
June 25, 2024 at 1:23 am #240682In reply to: Forums Not Showing on WordPress dashboard left menu
davidmiller5274
BlockedDespite reinstalling BBPress and disabling other plugins, the “forum” button is missing from the WordPress dashboard. Seeking advice on resolving this issue.
June 23, 2024 at 3:29 pm #240679In reply to: Remove e-mail field from “form anonymous”
teresaanderson
ParticipantI copied the entire page. Please let me know if there’s something else you need. Thanks!
Site Details
PHP Version 8.1.29
WP Version 6.5.4
Multisite False
Active Members 1
Total Forums 9
Total Topics 3
Total Replies
Theme Twenty Twenty-Three 1.1
Theme Type FSE Block Theme
bbPress Version 2.6.9
Plugin Version 6.0.5
WP Debugging FalseSite Plugins
MU Plugins Name and Version
– mu1 wpcomsh-loader.phpActive Plugins Name and Version
– active1 Akismet Anti-spam: Spam Protection 5.3.2
– active2 bbp style pack 6.0.5
– active3 bbPress 2.6.9
– active4 Enable Classic Editor 2.6
– active5 WordPress.com Editing Toolkit 4.26529
– active6 Gutenberg 18.5.0
– active7 Jetpack 13.6-a.5
– active8 Layout Grid 1.8.4
– active9 Page Optimize 0.5.5
– active10 Remove Footer Credit 1.0.14
– active11 Simple Custom CSS 4.0.6
– active12 What The File 1.6.0Inactive Plugins Name and Version
– inactive1 BuddyPress 12.5.1
– inactive2 Crowdsignal Forms 1.7.2
– inactive3 Crowdsignal Polls & Ratings 3.1.1
– inactive4 Elementor 3.22.1
– inactive5 WP File Manager 7.2.9File Generations
Filename Last Generation
bspstyle.css 2024-06-23 15:12:11
bspstyle-quotes.css 2024-06-10 13:43:35
bsp_delete.js 2024-06-10 13:43:35Plugin Settings
Option Group Values
Theme Support
bsp_style_settings_theme_supporta:4:{s:3:”fse”;s:1:”1″;s:9:”fse_width”;s:0:””;s:17:”fse_template_page”;s:3:”101″;s:20:”fse_template_version”;s:1:”0″;}
BuddyPress
bsp_buddypress_supportNo values set for: bsp_buddypress_support
Forums Index Styling
bsp_style_settings_fNo values set for: bsp_style_settings_f
Forums Templates
bsp_templatesNo values set for: bsp_templates
Forums Display
bsp_forum_displayNo values set for: bsp_forum_display
Forums Order
bsp_forum_orderNo values set for: bsp_forum_order
Freshness Display
bsp_style_settings_freshnessNo values set for: bsp_style_settings_freshness
Breadcrumbs
bsp_breadcrumbNo values set for: bsp_breadcrumb
Forum Buttons
bsp_style_settings_buttonsNo values set for: bsp_style_settings_buttons
Login
bsp_logina:1:{s:9:”update448″;s:1:”1″;}
Login Failures
bsp_login_failNo values set for: bsp_login_fail
Forum Roles
bsp_rolesNo values set for: bsp_roles
Subscription Emails
bsp_style_settings_emailNo values set for: bsp_style_settings_email
Subscription Management
bsp_style_settings_sub_managementNo values set for: bsp_style_settings_sub_management
Topic Order
bsp_topic_ordera:3:{s:18:”Default_OrderOrder”;s:1:”2″;s:18:”Forum_Order1Forums”;s:0:””;s:11:”reply_order”;s:1:”1″;}
Topic Index Styling
bsp_style_settings_tia:52:{s:19:”Pagination FontSize”;s:0:””;s:20:”Pagination FontColor”;s:0:””;s:19:”Pagination FontFont”;s:0:””;s:20:”Pagination FontStyle”;s:0:””;s:25:”Voice/Post Count FontSize”;s:0:””;s:26:”Voice/Post Count FontColor”;s:0:””;s:25:”Voice/Post Count FontFont”;s:0:””;s:26:”Voice/Post Count FontStyle”;s:0:””;s:27:”Topic Title LinksLink Color”;s:0:””;s:30:”Topic Title LinksVisited Color”;s:0:””;s:28:”Topic Title LinksHover Color”;s:0:””;s:20:”Topic Title FontSize”;s:0:””;s:20:”Topic Title FontFont”;s:0:””;s:21:”Topic Title FontStyle”;s:0:””;s:24:”Template Notice FontSize”;s:0:””;s:25:”Template Notice FontColor”;s:0:””;s:24:”Template Notice FontFont”;s:0:””;s:25:”Template Notice FontStyle”;s:0:””;s:31:”Template NoticeBackground color”;s:0:””;s:32:”Template Notice BorderLine width”;s:0:””;s:32:”Template Notice BorderLine style”;s:0:””;s:32:”Template Notice BorderLine color”;s:0:””;s:20:”Topic Started bySize”;s:0:””;s:21:”Topic Started byColor”;s:0:””;s:20:”Topic Started byFont”;s:0:””;s:21:”Topic Started byStyle”;s:0:””;s:49:”Sticky Topic/ReplyBackground color – sticky topic”;s:0:””;s:55:”Sticky Topic/ReplyBackground color – super sticky topic”;s:0:””;s:26:”Forum Information FontSize”;s:0:””;s:27:”Forum Information FontColor”;s:0:””;s:26:”Forum Information FontFont”;s:0:””;s:27:”Forum Information FontStyle”;s:0:””;s:33:”Forum InformationBackground color”;s:0:””;s:34:”Forum Information BorderLine width”;s:0:””;s:34:”Forum Information BorderLine style”;s:0:””;s:34:”Forum Information BorderLine color”;s:0:””;s:29:”Topic Index Headings FontSize”;s:0:””;s:30:”Topic Index Headings FontColor”;s:0:””;s:29:”Topic Index Headings FontFont”;s:0:””;s:30:”Topic Index Headings FontStyle”;s:0:””;s:13:”Lock IconSize”;s:0:””;s:14:”Lock IconColor”;s:0:””;s:18:”Sticky PinFontSize”;s:0:””;s:15:”Sticky PinColor”;s:0:””;s:11:”empty_forum”;s:0:””;s:19:”empty_forumActivate”;s:1:”1″;s:17:”must_be_logged_in”;s:0:””;s:18:”register_page_page”;s:0:””;s:17:”register_page_url”;s:0:””;s:16:”topic_title_link”;s:1:”0″;s:12:”topic_topics”;s:0:””;s:11:”topic_posts”;s:0:””;}
Topic Previews
bsp_style_settings_topic_previewNo values set for: bsp_style_settings_topic_preview
Topic/Reply Display
bsp_style_settings_ta:51:{s:49:”Topic/Reply ContentBackground color – odd numbers”;s:4:”#fff”;s:50:”Topic/Reply ContentBackground color – even numbers”;s:7:”#fbfbfb”;s:34:”Topic/Reply HeaderBackground color”;s:7:”#f4f4f4″;s:48:”Trash/Spam ContentBackground color – odd numbers”;s:4:”#fdd”;s:49:”Trash/Spam ContentBackground color – even numbers”;s:4:”#fee”;s:36:”Closed Topic ContentBackground color”;s:4:”#fdd”;s:25:”Topic/Reply Date FontSize”;s:0:””;s:26:”Topic/Reply Date FontColor”;s:0:””;s:25:”Topic/Reply Date FontFont”;s:0:””;s:26:”Topic/Reply Date FontStyle”;s:0:””;s:25:”Topic/Reply Text FontSize”;s:0:””;s:26:”Topic/Reply Text FontColor”;s:0:””;s:25:”Topic/Reply Text FontFont”;s:0:””;s:26:”Topic/Reply Text FontStyle”;s:0:””;s:20:”Author Name FontSize”;s:0:””;s:20:”Author Name FontFont”;s:0:””;s:21:”Author Name FontStyle”;s:0:””;s:19:”Reply Link FontSize”;s:0:””;s:19:”Reply Link FontFont”;s:0:””;s:20:”Reply Link FontStyle”;s:0:””;s:15:”Author RoleSize”;s:0:””;s:16:”Author RoleColor”;s:0:””;s:15:”Author RoleFont”;s:0:””;s:16:”Author RoleStyle”;s:0:””;s:16:”Topic HeaderSize”;s:0:””;s:17:”Topic HeaderColor”;s:0:””;s:16:”Topic HeaderFont”;s:0:””;s:17:”Topic HeaderStyle”;s:0:””;s:21:”Topic Admin linksSize”;s:0:””;s:22:”Topic Admin linksColor”;s:0:””;s:21:”Topic Admin linksFont”;s:0:””;s:22:”Topic Admin linksStyle”;s:0:””;s:18:”Revisionsrevisions”;s:3:”all”;s:17:”mentions_priority”;s:0:””;s:12:”mentionsSize”;s:0:””;s:13:”mentionsColor”;s:0:””;s:12:”mentionsFont”;s:0:””;s:13:”mentionsStyle”;s:0:””;s:9:”hide_name”;s:1:”1″;s:11:”hide_avatar”;s:1:”1″;s:28:”participant_trash_topic_text”;s:43:”Are you sure you want to delete this topic?”;s:28:”participant_trash_reply_text”;s:43:”Are you sure you want to delete this reply?”;s:17:”must_be_logged_in”;s:0:””;s:12:”window_links”;s:1:”0″;s:16:”more_less_length”;s:3:”200″;s:9:”more_text”;s:7:”More…”;s:9:”less_text”;s:7:”Less…”;s:21:”new_reply_description”;s:16:”Create New Reply”;s:17:”topic_button_type”;s:1:”1″;s:16:”TopicButtonclass”;s:0:””;s:29:”topic_subscribe_button_prefix”;s:0:””;}
Topic Counts
bsp_settings_topic_countNo values set for: bsp_settings_topic_count
Topic/Reply Form
bsp_style_settings_forma:27:{s:10:”LabelsSize”;s:0:””;s:11:”LabelsColor”;s:0:””;s:10:”LabelsFont”;s:0:””;s:11:”LabelsStyle”;s:0:””;s:25:”Text areaBackground Color”;s:0:””;s:13:”Text areaSize”;s:0:””;s:14:”Text areaColor”;s:0:””;s:13:”Text areaFont”;s:0:””;s:14:”Text areaStyle”;s:0:””;s:22:”ButtonBackground Color”;s:0:””;s:16:”ButtonText Color”;s:0:””;s:20:”SubmittingSubmitting”;s:10:”Submitting”;s:20:”Show_editorsactivate”;s:1:”0″;s:16:”topic_rules_text”;s:0:””;s:16:”reply_rules_text”;s:0:””;s:23:”topic_posting_rulesSize”;s:0:””;s:24:”topic_posting_rulesColor”;s:0:””;s:23:”topic_posting_rulesFont”;s:0:””;s:24:”topic_posting_rulesStyle”;s:0:””;s:35:”topic_posting_rulesBackground Color”;s:0:””;s:31:”topic_posting_rulesborder_color”;s:0:””;s:17:”placeholder_topic”;s:0:””;s:17:”placeholder_reply”;s:0:””;s:12:”htmlActivate”;s:1:”1″;s:15:”nologinActivate”;s:1:”1″;s:15:”errormsgMessage”;s:0:””;s:16:”no_anon_namename”;s:0:””;}
Profile
bsp_profileNo values set for: bsp_profile
Search Styling
bsp_style_settings_searchNo values set for: bsp_style_settings_search
Unread Posts
bsp_style_settings_unreadNo values set for: bsp_style_settings_unread
Quotes
bsp_style_settings_quoteNo values set for: bsp_style_settings_quote
Moderation
bsp_style_settings_modtoolsNo values set for: bsp_style_settings_modtools
Latest Activity Widget Styling
bsp_style_settings_laNo values set for: bsp_style_settings_la
Custom CSS
bsp_cssa:1:{s:3:”css”;s:0:””;}
CSS Location
bsp_css_locationNo values set for: bsp_style_settings_translation
Dashboard Admin
bsp_settings_adminNo values set for: bsp_settings_admin
bbPress Bug Fixes
bsp_style_settings_bugsNo values set for: bsp_style_settings_bugs
Block Widgets
bsp_style_settings_block_widgetsNo values set for: bsp_style_settings_block_widgets
Column Display
bsp_style_settings_column_displayNo values set for: bsp_style_settings_column_display
Topic Form Additional Fields
bsp_style_settings_topic_fieldsNo values set for: bsp_style_settings_topic_fields
-
AuthorSearch Results