Forum Replies Created
-
In reply to: Replies cutting off
Do not mess with any of the bbPress plugin files in the plugins folder. Remember that if you do modify anything in the core plugin files of bbPress, it will be lost next update.
Any custom CSS like the snippet I gave you, you place into your child themes CSS stylesheet or into a custom css plugin.
In reply to: bbpress forum menu left sideDid you do what the Kleo theme support tell you?? Did you also try a default theme temporarily?
In reply to: Sort topics alphabeticallyIn reply to: Add/Change User rolesit would work like this though
#bbpress-forums .community .bbp-author-role { background-color: blue; }
or
#bbpress-forums .team .bbp-author-role { background-color: yellow; }
In reply to: Deactive the Open Graph option in Yoast SEOI just tested on my test site, and I do not really see an issue with the OG tags. Maybe there is something else. You may need to try some troubleshooting.
In reply to: Forum won’t load in SafariTry some troubleshooting first if you haven’t already, check your cache(this includes browser cache if the main browser you use is safari).
In reply to: Replies cutting off#bbpress-forums .reply { margin-left: 0 !important; width: auto !important; }
In reply to: Freshness incorrect on edited postI don’t think Freshness counts from modified time but instead from published time.
In reply to: Problem with bbpress and wp securityOh I know what you are talking about know. The having to login again threw me off a bit. I think you were logged in, but just didnt redirect to wp-admin. You could of easily from the WordPress Toolbar went to the admin area from there.
When you log into your site you are redirected to the homepage, but you want to be redirected to the dashboard.
There is something in bbPress that might be causing redirecting users to the homepage, like for the bbPress login form.
This can be very easily fixed by installing Peters Login Redirect plugin. Install it, configure who/what roles you want to be redirected to wp-admin.
If you do not need a plugin I think a small function could easily fix the issue also.
In reply to: Add/Change User rolesat the very end of this function
function custom_capabilities( $role )
You see this
); break; default : return $role; }
Well your missing a
}
at the very end.the end of the function should look like this.
); break; default : return $role; } }
In reply to: Deactive the Open Graph option in Yoast SEOWell thing is having meta tags shouldn’t really affect bbPress at all. And I was figuring it may be how something is configured in their plugin that is causing issues.
<meta property="og:title" content="The Rock" /> <meta property="og:type" content="video.movie" /> <meta property="og:url" content="http://www.imdb.com/title/tt0117500/" /> <meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" />
Or are you saying that the meta tags do not work on bbPress forums, but the bbPress forums work fine??
In reply to: Confused… is bbPress a WP plug-in?You might want to test the importer on WAMP first to get the feel of how it works and is set up.
You should be able to style your forums before or after. You are just moving data over while importing.
In reply to: Contact form – native or plugin?You want to use a contact form plugin for your forum?? Do you need any specific placement of the forum, like in a forum post or something??
If you have a WordPress site running the bbPress plugin, you should be able to use a contact form plugin like CF7 with no problems.
In reply to: Deactive the Open Graph option in Yoast SEOContact the plugin’s Support team about this first to see if their plugin caused an issue, and see what troubleshooting they give you.
In reply to: Confused… is bbPress a WP plug-in?bbPress was a standalone software for forums in the 0.1 to 1.0 era, now with version 2.0 and on it is a WordPress plugin.
The plugin version also includes an importer for the v1 standalone version that might be helpful.
In reply to: SECURITY ISSUE: participant e-mails visible in BCCThis could be a server configuration issue. Or maybe it could be an issue using some plugins that modify sending the emails?
Also that I plugin I recommended you to use, its functionality will probably be in core soon, we will drop BCC entirely.
If you want, email me some images of the full email headers that show the other recipients emails in it that you are seeing. You can contact me through email by going to my profile on this site and clicking the contact link, and sending the images to my email.
I also subscribed to this topic so when you reply back I will get an email and I could show you the email headers of this site from gmail. If you are also subscribed then you can just see the difference between the emails being sent from your site and this site.
You may need to hire a developer to do the import for you. Devs seem busy working on other aspects of bbPress and importing in general. And for me importing is a huge learning curve.
I guess you can also wait it out with phpBB still until we fix the importer in 2.6.
In reply to: Limit tags to a pre-defined list?Thanks for sharing again!
In reply to: SMF Import Help NeededSorry, I forgot all about your topic. Whenever I contacted the devs awhile ago, they were very busy with other bugs, tasks, tests. It might be best to hire a developer for the import as we are being backed up with other things in the bbPress plugin. Stephen might come and reply to your posts in sometime, but maybe not soon as I explained they seem busy.
You may also need to wait it out with SMF until we get the issues with the importer resolved.
🙂 I might have to start recommending users to use that instead since it configures the redirect url.
In reply to: How can I make my own translation files?Alright, glad you resolved your own issue. 🙂
In reply to: SECURITY ISSUE: participant e-mails visible in BCCMaybe not using BCC at all would help, plus this delivers emails through the wp-cron to make sending emails more efficient and make the emails most likely not end up in the spam folder.
https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/
In reply to: Can bbPress do this?Okay, well it depends on what you need specifically on the site you are building. There are features that can get you some peices that are in all of what you mentioned, and maybe more through some plugins.
Its some pagination code inherited from the template bbPress is using for its pages.
You might need to create a bbpress.php file from the file bbPress is inheriting from and place it in your child theme and also remove any post meta like the by that is usually for displaying the author of a blog post.
If you are using Genesis, I think installing the bbPress Genesis Extend plugin will solved most bbPress layout issues.
In reply to: Define new custom topic statusIf you have a support forum this plugin will help you add additional topic statuses like resolved.
https://wordpress.org/plugins/buddy-bbpress-support-topic/
This one too.