Forum Replies Created
-
GoodNews (actual), purchased from CodeCanyon.
Which one there are three different types of themes from themeforest with this name.
In reply to: Question about this site…Did THIS SITE using this, tooβ¦ ?
No this site is using something entirely different.
Did you make your forums hidden? Hidden forums are only seen by admins and mods
Did you clear any cache/do you think you set up caching correctly? Caching is a common issue that could cause issues for beginners?
Could there be a plugin/php code snippet you may have activated that may be causing this issue? A plugin/custom php code snippet could conflict with bbPress somehow.
In reply to: smiley emoticonsI have just tried to load the wp-monalisa plugin and it turned everything in my Forums OFF.
What exactly did it turn off?? I have an issue where the smiley code won’t paste and that is it.
Was a bit disconcerting as when I logged into the Forum the forum index did not show and the links to the Forum would not work, nor the pages.
Link to your forum so I could see this. It may just be a bbPress theme compat/theme issue.
There must be a hick up somewhere as I donβt have anything special β just the BBPress Forum plugin and the Ultimate Member plugin.
I could replicate an issue a little with using a default theme and while having TinyMCE activated, and the default toolbar editor tab is the HTML one it doesn’t seem to work unless I switch to TinyMCE and back.
It does work with bbPress and how its default quicktags editor though.
In reply to: bb-smilies doesn’t appears on edit-post pagesFirst don’t bump up 7 year old topics, it is annoying.
Second that bbPress in this topic was a standalone forum software and is entirely different from the plugin version now.
bbPress can use WordPress’s supplied smilies.
https://codex.wordpress.org/Using_Smilies
π π π
And even its emojis
https://codex.wordpress.org/Emoji
π π» π½ πΊ πΈ πΉ π» πΌ π½ π πΏ πΎ π π π π π
In reply to: Hidden Groups not being listedHidden Groups in BuddyPress are only to be seen to the group members. they are not to be visible in the groups list.
Only users who are invited can join the group.
This group will not be listed in the groups directory or search results.
Group content and activity will only be visible to members of the group.Can the members of the hidden group see it fine??
Are the forums not visible, because the groups are really part of BuddyPress.
In reply to: Question about this site…There is a plugin called bbp style pack that has a shortcode that basically outputs the same thing.
In reply to: Inline – Pictures?You can use the img quicktag to embed inline external images.
Then of course you can use oembed for images too.
You can have inline image uploads by installing a plugin called BuddyPress forum editor, it works if you have BuddyPress installed also.
What theme are you using??
A. image upload option to tool bar
You can use the simple external link image button and oembed for images hosted on imgur.
There are two plugins that can add image uploading in bbPress though.
gd bbPress attachments for file attachments upload is not through the toolbar though
BuddyPress Forum editor which adds a TinyMCE upload image button, but requires BuddyPress, and I am not sure how this could work with TinyMCE Advanced.
B. video upload option to tool bar
oembed will you embed youtube videos automatically by placing the url of the video straight into the forum post.
C. more options (font size, family, remove formatting, et etc) to the tool bar
You would need to enable tinymce in bbPress either through a plugin like the bbPress enable visual tab plugin or by adding the code snippet in this guide.
To have the extra buttons, the plugin TinyMCE Advanced would help, as long as you have teeny mode set to false in code snippet or enable the extra buttons through the bbPress visual tab plugin.
In reply to: phpBB to bbPress Version Issue?2.6 has been pushed back multiple times in the past 2 years. The phpbb issue was added in the past year though. Hopefully it releases before the new year.
In reply to: Users profiles redirect on homepageIn reply to: right to left directtionContact your theme author’s support.
I think your theme may be missing the bbpress-rtl.css stylesheet.
In reply to: phpBB to bbPress Version Issue?Support for 3.1x is in the 2.6 version of bbPress, which hasn’t released yet.
In reply to: BBPress – Prevent the use of block in forumI think bbPress already does this for users that are not at least an Admin.
In this gist there is a list of the used tags a participant user can use, well expect for the tables, that was added in the gist as an example of adding more tags.
In reply to: Missing Post Notifications & UsersI canβt find the setting to ensure I get notified whenever a new post is added.
There isn’t a setting by default in bbPress. THere are a ton of plugins for this though.
This plugin that I found might work for you.
https://wordpress.org/plugins/bbp-notify-admins/
I cannot find their emails or names at all in my user tab of my wordpress admin
It should be there if you are using the bbPress plugin.
Is the data blank but the users are there, can you not see the columns or something??
In reply to: Customizer doesn’t save correctlyAfter debugging everything, set WP_Debug to false.
Here is a post explaining the bbp_setup_current_user was called incorrectly error.
In reply to: bbpress & disappearing postI get a 404 when I go to the test topic for some reason. Can you close the embed topic, and also add a test reply so I can see if this issue is present.
@tallsam Its not really an issue since it should show a list of items in the latest version of bbPress and since Stephen’s ticket he linked to has not been committed yet.
IF @pinkishhue’s Custom CSS code does not work after you placed it in your child themes style.css file and have also tried adding !important on the end, you can try my custom php code snippet.
Make sure to place this into your child themes functions.php file in your child theme.
// Only return one entry for revision log otherwise it gets cluttered function bbp_trim_revision_log( $r='' ) { $arr = array( end( $r )); reset( $r ); return( $arr ); } add_filter( 'bbp_get_reply_revisions', 'bbp_trim_revision_log', 20, 1 ); add_filter( 'bbp_get_topic_revisions', 'bbp_trim_revision_log', 20, 1 );
This is how you remove the line.
#main-content .container:before { display: none !important; }
Also I updated this bbpress.php a little more, as I do not think you will be using page builder with bbPress pages.
In reply to: Users profiles redirect on homepageOk I see now. When you click the author link on your production site, you can see it is trying to lead to the bbPress forum profile then it just redirects to the homepage for some reason. What we need to do is try to find what is causing the redirect.
Can you do some troubleshooting to first see if you deactivate ultimate member and the bbPress addon, that the author links go to the regular bbPress forum profiles fine.
Can you also try in a default WordPress theme too to see if the same issue is present.
In reply to: bbpress & disappearing postI cannot see the same issue you are getting with the generatepress theme and also twenty fifteen.
Did you close and sticky a topic from the WordPress backend??
Can you link to your site so I can see if this is a possible CSS issue?
When you switch to a default theme to leave it as default, do not transfer custom code snippets that you may have from one theme to it. Same thing if you have custom code snippets in a seperate plugin to try to pinpoint where the issue is present.
In reply to: No Forums menu options in dashboard.It came down to the fact that I (although I am the site admin) had a role as Participant.
I always forget about that one haha. It should usually be step 1 for sure to troubleshoot this issue for users.
Step 1: Are you a Keymaster?
Glad you are resolved @adri-oosterwijk π
In reply to: bbpress & disappearing postSince you said it turns into a draft, I guess this might be a separate plugin causing the issue.
Try some plugin troubleshooting to try to find what plugin is causing that specifically.
In reply to: Error with bbPress at the top of site and forumYou can also use this CSS to remove the breadcrumbs if the code @casiepa gave you doesn’t remove it.
Place this CSS anywhere you can place custom CSS like in your child themes style.css file or in a seperate plugin.
div.bbp-breadcrumb { display: none !important; }
While browsing your forums though I did come across these common theme style issues that are conflicting with bbPress.
Add both these CSS code snippets into your child themes style.css file or in a separate custom css plugin.
This CSS should fix the gray avatar on your forum profile.
#bbpress-forums #bbp-user-avatar .avatar { float: none; }
This should fix the avatars looking off in your forums.
#bbpress-forums a img.alignnone { display: inline; margin: 0; }