Forum Replies Created
-
In reply to: bbPress Subscribe CSS Error
Try some of the options listed in this thread
No, this isn’t really what bbPress was designed to do.
I would take a look at something like https://wordpress.org/plugins/woocommerce/
In reply to: Ning Forums export to BBPressOk…. Looks like you have a good discussion going here https://wordpress.org/support/topic/anyone-supporting-this-plugin-help-w-discussions
In reply to: Ning Forums export to BBPressYou could try the latest version of the plugin, it is hosted on GitHub here
https://github.com/boonebgorges/Import-from-NingActually it looks like the WP hosted version is also the same version
https://wordpress.org/plugins/import-from-ning/In reply to: CSS bug?I am not not sure if this is a bug or not, my CSS skills are not that great.
If we removed it I am not sure how this would affect template compat in other themes.
I would suggest adding a custom
bbpress.css
file to your theme with the ‘overflow: hidden’ removed/commented out.#bbpress-forums ul.bbp-lead-topic, #bbpress-forums ul.bbp-topics, #bbpress-forums ul.bbp-forums, #bbpress-forums ul.bbp-replies, #bbpress-forums ul.bbp-search-results { font-size: 12px; /* overflow: hidden; */ border: 1px solid #eee; margin-bottom: 20px; clear: both; }
Also if you want to create a ticket on Trac https://bbpress.trac.wordpress.org/ we can look into it further.
In reply to: tags allowed in bbpressYour code works fine for me.
In reply to: Custom BBCodes?This should work for you, just swap the
bbcode_table
withtabella
in each case, and the same for your custom tr/td etc 🙂https://gist.github.com/ntwb/7764534
function ntwb_custom_bbcode_table_replace( $text ) { $text = preg_replace( '/\[bbcode_table\]/i', htmlspecialchars_decode( '<table>' ), $text); $text = preg_replace( '/\[\/bbcode_table\]/i', htmlspecialchars_decode( '</table>' ), $text); $text = preg_replace( '/\[bbcode_table_tr\]/i', htmlspecialchars_decode( '<tr>' ), $text); $text = preg_replace( '/\[\/bbcode_table_tr\]/i', htmlspecialchars_decode( '</tr>' ), $text); $text = preg_replace( '/\[bbcode_table_td\]/i', htmlspecialchars_decode( '<td>' ), $text); $text = preg_replace( '/\[\/bbcode_table_td\]/i', htmlspecialchars_decode( '</td>' ), $text); return $text; } add_filter('bbp_get_reply_content', 'ntwb_custom_bbcode_table_replace');
In reply to: Edit topic reply, changes post orderI can’t seem to reproduce this issue, I can clearly see it @eduardosilva forum thread linked to above.
Here is the basic layout of the CSS classes of @eduardosilva topic linked above
post-18012 topic type-topic status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-1 user-id-6181 topic-author
post-18014 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-2 user-id-2
post-18031 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-5 user-id-6181 topic-author
post-18037 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-7 user-id-6181 topic-author
post-18046 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-8 user-id-2
post-18029 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-3 user-id-6181 topic-author
post-18033 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-6 user-id-2
The order currently being shown using
bbp-reply-position-
is1, 2, 5, 7, 8, 3, 6
and it should be1, 2, 3, 5, 6, 7, 8
.Every post has a class of
even
when every second post should beodd
based on the source code here, this is also something I cannot reproduce. This is also a sitewide issue on all the topics on @eduardosilva forums.Anyone else with this issue can you confirm it is also ONLY after a reply has been edited?
Also do you have
odd
&even
in the CSS classes or all they alleven
?Hopefully this will be setup for you soon:
In reply to: Posts not appearing in linear orderCan you give us some more detailed information please.
Another topic similar I have been looking into is here:
Is this what your seeing or something different?
In reply to: Edit topic reply, changes post orderThanks, I have grabbed a copy of the source and your right, something isn’t right here.
I have seen one other report of strange ordering or replies so this might help us narrow things down to the cause of the issue.
I’ll take a closer look tomorrow as its ~9pm here local time and I will update this then.
In reply to: Forum subscriptionsI wonder, have I misunderstood this new (2.5) feature.
No 🙂
I expected that once I am subscribed to a forum I would receive email notification of any new post or reply in that forum. But I haven’t received any (and yes, there were posts overnight to forums I have subscribed to)
Indeed you should receive an email containing something like “You are receiving this email because you subscribed to a forum.”
You will only get ‘New Topic’ emails, if you want replies you also have to subscribe to that specific topic.
I had assumed that the subscription feature would mean I could deactivate ‘bbPress Notify’ plugin, but it seems I still need it.
Essentially yes, you should no longer need to use the ‘bbPress Notify’ plugin
In reply to: Stylesheet IssuesA probably quicker and easier way to test the patch is to download the following file:
https://bbpress.trac.wordpress.org/export/5210/branches/2.5/includes/core/template-functions.phpSave that to your PC and then with an FTP program upload it to your web host in this folder
/public_html/wp-content/plugins/bbpress/includes/core
In reply to: No Forum subscriptions (update to 2.5)If you have switched to the Twenty Thirteen you should the same image that I posted above using bbPress 2.5.
I know you have some custom templates in your normal themes child theme and I have a suspicion that you might also have some in your Twenty Thirteen theme folder and they need to be removed (or backed up), you need to find a theme that is ‘clean’ and has no extra additions in its folder structure, either in the root of the theme or a sub-folder bbpress.
Thanks for the reply, MediaTemple DV should not be a problem and I won’t need the other info.
Can you try this for me please 🙂 Download the following file and save it to your PC.
https://bbpress.trac.wordpress.org/export/5210/branches/2.5/includes/core/template-functions.phpWith an FTP program upload it to your web host in this folder
/public_html/wp-content/plugins/bbpress/includes/core
Does this fix the issue for you in either bbPress 2.4 or 2.5 (Preferably 2.5)?
In reply to: Edit topic reply, changes post orderOne more thing, can you try the above with all your other plugins disabled to make sure it is not one of them causing a conflict.
In reply to: Edit topic reply, changes post orderAlso new replies are inserted before the edits:
TOPIC A
– Post 1
– Post 3
– Post 4
– Post 5
– Post 6
– Post 2In this case was/is ‘Topic A’ a newly created topic in bbPress 2.5 or a migrated topic from v1.x?
Also can you run the repair tools following the instructions here:
https://codex.bbpress.org/repair-forums/Does this fix the order?
If the order was fixed and a reply is edited what happens?
In reply to: No Forum subscriptions (update to 2.5)Are you seeing the both subscriptions sections when viewing your user profile?
eg http://127.0.0.1/forums/users/admin/subscriptions/
In reply to: Forums page format is not working@brucedongcaigmailcom Thanks for the update though business as usual down under 😉
In reply to: Subscribe to forum linkYou also go about it this way by adding it to your themes
functions.php
file or yourbbpress-functions.php
file in your theme directory.To change from
Home › Forums › My ForumSubscribe
To change toHome › Forums › My Forum (Subscribe)
function ntwb_forum_subscription_link( $args ) { $args['before'] = ' ('; $args['after'] = ')'; return $args; } add_filter( 'bbp_before_get_forum_subscribe_link_parse_args', 'ntwb_forum_subscription_link' );
If you don’t want to add it manually grab the entire file here and add it as a standalone plugin to your WordPress install.
In reply to: Forums page format is not working@brucedongcaigmailcom Thanks for that info, helps to make sure we have all the bases covered 🙂
Probably an easier way would be to download the entire file using this link
https://bbpress.trac.wordpress.org/export/5210/branches/2.5/includes/core/template-functions.php
Save that to your PC and then with an FTP program upload it to your web host in this folder
/public_html/wp-content/plugins/bbpress/includes/core
p.s. Just let me know if it doesn’t work
In reply to: SMF Import to bbPressI want to try it on localhost / my own pc. But when I think about my 500mb forum database file .. yeah.. you know.. I feeling down.. lol.
I know that feeling, as @manuxel added above, we have been trying to migrate for a long time 😉
I’m glad you are sticking with it and just let me know if I can help or any extra questions 🙂
In reply to: Forum Replies: Text Tab Available But Not VisualThe plot thickens…
I don’t disbelieve you, but I can’t understand why the visual tab has been working since the installation of bbPress a month ago and suddenly failed this week?
I think you may be using another plugin that adds this functionality and the issue may be with that plugin 😉
I followed the link and loaded the updated version on the server then installed it in the plugin directory. There was no change, I still can’t select the visual tab, but I do see the Add Media button and it works.
Neither bbPress or the plugin I linked to have an ‘Add media’ button :/
In reply to: Stylesheet Issueswill the coming update overwrite the code i just changed without any issues?
Yes, it will automaticlly overwrite the changes you made
In reply to: Forum Replies: Text Tab Available But Not VisualbbPress disabled the visual editor in bbPress 2.3 ~8 months ago.
Take a look at this plugin if you want to enable it again
https://wordpress.org/plugins/bbpress-enable-tinymce-visual-tab/
If you think that is what you want to try please use the download link attached to this post in their support forum as it is an updated version https://wordpress.org/support/topic/not-working-in-bbpress-24?replies=9#post-4687693