Forum Replies Created
-
In reply to: Guide of BbPress in French
Awesome 🙂
In reply to: participant can't edit their postsI just had a closer look and you are correct, ‘Press Permit’ only supports bbPress dynamic roles with a paid upgrade.
In reply to: participant can't edit their postsJust a note, I haven’t tried either plugin so I can’t recommend either of them, nor was my post meant as a recommendation. I was only helping to troubleshoot your problem and point out that the first plugin doesn’t support bbPress dynamic roles and the second one says they do in the ‘Free Version’.
In reply to: Загрузить фотографии на форумOne of these plugins might do what you need.
https://wordpress.org/plugins/gd-bbpress-attachments/
https://wordpress.org/plugins/gd-bbpress-tools/In reply to: Kunena converter for bbPress 2.4is it possible that the database tweaks can be done independently from upgrading the kunena installation? or can I tweak the importer to work with the jos_fb_ version – I don’t have the skills to do that but I suspect it’s a major job and probably unfeasible.
You should in theory be able to do the import without modifying your database, and this reply probably should have been before the previous reply. 😉
So try opening up phpMyAdmin and running the queries I posted before your previous reply.
If all else fails then you can try upgrading Kunena and converting the database engine.
In reply to: Kunena converter for bbPress 2.4In theory this is all you need to do, but please make sure you have a few backups of your database, after all these years you don’t want to lose everything now 😉
alter table the_table_name_you_want_to_convert engine=innodb;
That’s the theory anyway, to enable you to use the ‘alter’ command you need to uncheck the following setting:
phpMyAdmin -> Settings -> Main Panel -> Table Structure -> Hide table structure actions
Then open a table, and click ‘Operations’ and in the ‘Table options’ section you will now see ‘Storage Engine’ where you can change this from
MyISAM
toInnoDB
once you click ‘Go’ you will a success or error message.In reply to: bbPress Email Digest Hooks – help?It looks like you just paste that entire code into your themes
functions.php
file and change the values to the ones you want 🙂In reply to: Minification breaks bbPress Visual EditorI’m not familiar with exactly what you need but bbPress JavaScript files typically live here:
/wp-content/plugins/bbpress/templates/default/js
for the following 5 files:
editor.js
,forum.js
,topic.js
,reply.js
&user.js
In reply to: How to make a forum Sticky in the main Forum PageI’ll see if I follow you now, you mean how to I make the topic a ‘sticky topic’?
If so click ‘Stick’ to sticky the topic in the current forum or ‘to front’ to stick it to the top of all your forums.
In reply to: Remove default cssThe following should work, a few CSS & JavaScript changes came with bbPress 2.5 😉
add_action( 'wp_print_styles', 'deregister_bbpress_styles', 15 ); function deregister_bbpress_styles() { wp_deregister_style( 'bbp-default' ); }
In reply to: Limit search in scopeThis is a start…
https://gist.github.com/ntwb/8037110
add_filter ( 'bbp_before_has_search_results_parse_args', ntwb_bbpress_custom_search_results); function ntwb_bbpress_custom_search_results() { $default_post_type = array( bbp_get_forum_post_type(), bbp_get_topic_post_type(), bbp_get_reply_post_type() ); $args['post_type'] = $default_post_type; $args['orderby'] = 'date'; $args['ignore_sticky_posts'] = 'false'; $args['order'] = 'DESC'; return $args; }
Just need to work out how to parse the other $args :/
https://bbpress.trac.wordpress.org/browser/trunk/includes/search/functions.php
https://bbpress.trac.wordpress.org/browser/trunk/includes/search/template.phpIn reply to: How do I disable Login?Just enable ‘Anonymous Posting’ in the bbPress forums settings.
WordPress Dashboard -> Settings -> bbPress
I think you will find the docs for that reference
the_content
in a WordPress context.For bbPress things are similar but the following best explains it though in this case it was related to Jetpack, the methodology is still the same though.
https://bbpress.org/forums/topic/social-media-share-button-missing/#post-125857
This won’t work out of the box, and is by design. Jetpack hooks sharing options to the end of the ‘the_content’ filter. bbPress doesn’t use this filter, because blog content doesn’t have the same rules as forum content does; they work differently. To make it work, Jetpack’s sharing options would need to hook into
bbp_get_topic_content
andbbp_get_reply_content
instead.Someone could write a piggyback function to do this, but it may be more difficult than this first step once you’ve gotten this far. Replies don’t use the same “premalink” logic as topics, forums, pages, and posts do, since they are technically children of topics. There could be other quirks, too.
In reply to: Issue with repeating publish date iconThat is indeed a bug and we have it fixed for bbPress 2.6 😉
The issue is to do with the included bbPress ‘Green’ admin theme, my suggestion would be for now to switch to a different color admin theme until bbPress 2.6 is released.
In reply to: Sticky post not appearing in child forumsYou stick can’t stick topics like this in bbPress at this stage
A topic is either ‘sticky’ in a single forum or ‘super sticky’ in every forum.
In reply to: How to Build Plugins for 2.5+The best place to start would be the WordPress Plugin Developer Center
https://wordpress.org/plugins/about/And checkout the bbPress Codex https://codex.bbpress.org/context/developer/
In reply to: Subscribe to Forum, HTML ResponsesI didn’t make it but I expect it was a decision made not an option for the broadest compatibility.
Decisions, not Options https://wordpress.org/about/philosophy/
When making decisions these are the users we consider first. A great example of this consideration is software options. Every time you give a user an option, you are asking them to make a decision. When a user doesn’t care or understand the option this ultimately leads to frustration. As developers we sometimes feel that providing options for everything is a good thing, you can never have too many choices, right? Ultimately these choices end up being technical ones, choices that the average end user has no interest in. It’s our duty as developers to make smart design decisions and avoid putting the weight of technical choices on our end users.Though as you point out if you want HTML emails you can enable this pretty easily.
Yes, that was what I inferred by ‘back end’ & ‘front end’ that I tried it from both places that we can create topics, the front end and the back end.
The one thing I did do, that I have just tested against was I had copied and pasted the the ‘content’ from the back end to create the topic in the front end.
I just manually typed the following into the ‘front end’ for single quote
'
, double quote"
and`
tilde symbols.
I am also using a clean install and the Twenty Thirteen theme so like yourself I am a little perplexed as to why we are seeing something different.
Hey, I most probably could have worded things a little better, it was not meant to be a case of your not telling the truth, rather I see things contrary to what you have said, sorry about that.
I was trying to get across the point that I was seeing other things that are more likely than not the cause of your issues, yet you beg to differ, fine, we’ll just have to agree to disagree on if you received any support in this thread or not.
All the best then,
Stephen
In reply to: Show Sidebar in default bbp pagesIf your theme has a template with sidebar maybe
page.php
then make a copy of that file and rename it tobbpress.php
In reply to: unable to edit profile in [bbp-register] pageI think this is most likely an issue with the extra plugin you are using “CIMY User Extra Fields”
I am not sure what the actual issue is but you should disable that plugin and see if you can update your password in your bbPress profile.
In reply to: participant can't edit their postsYou can try the ‘Remap existing users to default forum roles’ repair tool to see if that fixes the bbPress Roles: https://codex.bbpress.org/repair-forums/
I had a quick look at https://wordpress.org/plugins/role-scoper/ and they make no specific mention of supporting bbPress’ ‘Dynamic Roles’ and that could be where the core of the issue is.
Yes, Role Scooper is the issue and it appears there will be no longer further development or support:
https://wordpress.org/plugins/role-scoper/faq/
With the production release of Press Permit, is Role Scoper still supported?
Basic Role Scoper support (bug fixes but not necessarily plugin conflict resolution) will be provided while WP 3.6.x is the active WordPress version. Compatibility with WP 3.7 and beyond is not assured, as I do not plan any further unfunded development of the Role Scoper code base. Further development and support will be available on a consulting basis as indicated on agapetry.net, but I will encourage migration to Press Permit – a superior platform with a sustainable funding model.The good news is the new plugin ‘Press Permit’ does support bbPress’ Dynamic Roles 🙂
https://wordpress.org/plugins/press-permit-core/
Customize bbPress forum permissionsI just tried this and it works for me from both the front and back end.
Updated 🙂
Subscriptions
Forum participants can elect to subscribe to a forum or topic. They will be notified when a new topic is created in a subscribed forum or a new reply is posted to a subscribed topic. Subscribed forums and topics will appear on their forum user profile.
https://codex.bbpress.org/forum-settings/In reply to: How to make a forum Sticky in the main Forum PageJust set the ‘Forum Order’ of your forums to whatever order you want them displayed in.
https://codex.bbpress.org/getting-started-with-bbpress/#creating-your-first-forum