Stephen Edgar (@netweb)

Forum Replies Created

Viewing 25 replies - 1,951 through 1,975 (of 3,352 total)
  • @netweb

    Keymaster

    No, this isn’t really what bbPress was designed to do.

    I would take a look at something like https://wordpress.org/plugins/woocommerce/

    @netweb

    Keymaster

    Ok…. Looks like you have a good discussion going here https://wordpress.org/support/topic/anyone-supporting-this-plugin-help-w-discussions

    @netweb

    Keymaster

    You could try the latest version of the plugin, it is hosted on GitHub here
    https://github.com/boonebgorges/Import-from-Ning

    Actually it looks like the WP hosted version is also the same version
    https://wordpress.org/plugins/import-from-ning/

    In reply to: CSS bug?

    @netweb

    Keymaster

    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.

    @netweb

    Keymaster

    Your code works fine for me.

    In reply to: Custom BBCodes?

    @netweb

    Keymaster

    This should work for you, just swap the bbcode_table with tabella 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');

    @netweb

    Keymaster

    I 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

    1. 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
    2. post-18014 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-2 user-id-2
    3. 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
    4. 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
    5. post-18046 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-8 user-id-2
    6. 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
    7. post-18033 reply type-reply status-publish hentry even bbp-parent-forum-4 bbp-parent-topic-18012 bbp-reply-position-6 user-id-2
    8. The order currently being shown using bbp-reply-position- is 1, 2, 5, 7, 8, 3, 6 and it should be 1, 2, 3, 5, 6, 7, 8.

      Every post has a class of even when every second post should be odd 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 all even?

    @netweb

    Keymaster

    Hopefully this will be setup for you soon:

    i want use wordpress and bbpress forum in…

    @netweb

    Keymaster

    Can you give us some more detailed information please.

    Another topic similar I have been looking into is here:

    Edit topic reply, changes post order

    Is this what your seeing or something different?

    @netweb

    Keymaster

    Thanks, 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 subscriptions

    @netweb

    Keymaster

    I 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 Issues

    @netweb

    Keymaster

    A 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.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

    @netweb

    Keymaster

    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.

    @netweb

    Keymaster

    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.php

    With 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)?

    @netweb

    Keymaster

    One 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.

    @netweb

    Keymaster

    Also new replies are inserted before the edits:

    TOPIC A
    – Post 1
    – Post 3
    – Post 4
    – Post 5
    – Post 6
    – Post 2

    In 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?

    @netweb

    Keymaster

    Are you seeing the both subscriptions sections when viewing your user profile?

    eg http://127.0.0.1/forums/users/admin/subscriptions/

    @netweb

    Keymaster

    @brucedongcaigmailcom Thanks for the update though business as usual down under 😉

    @netweb

    Keymaster

    You also go about it this way by adding it to your themes functions.php file or your bbpress-functions.php file in your theme directory.

    To change from Home › Forums › My ForumSubscribe
    To change to Home › Forums › My Forum (Subscribe)

    function ntwb_forum_subscription_link( $args ) {
        $args['before'] = '&nbsp;(';
        $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.

    https://gist.github.com/ntwb/7686980

    @netweb

    Keymaster

    @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 bbPress

    @netweb

    Keymaster

    I 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 🙂

    @netweb

    Keymaster

    The 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 Issues

    @netweb

    Keymaster

    will the coming update overwrite the code i just changed without any issues?

    Yes, it will automaticlly overwrite the changes you made

    @netweb

    Keymaster

    bbPress 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

    @netweb

    Keymaster

    @freewpress What happens when you use the standard Twenty Thirteen and/or Twenty Twelve theme?

Viewing 25 replies - 1,951 through 1,975 (of 3,352 total)