Robkk (@robkk)

Forum Replies Created

Viewing 25 replies - 1,401 through 1,425 (of 3,784 total)
  • In reply to: SMF Import Help Needed

    @robkk

    Moderator

    Oh okay, the genesis extend plugin should be fine as it really only modifies layout styling for bbPress pages with the Genesis theme. You can try deactivating all but bbPress and the genesis extend plugin.

    As for mods on your SMF forum, I am not entirely sure. It might not matter on your SMF forum.

    In reply to: bbPress Shortcode

    @robkk

    Moderator

    What I posted is just some custom CSS.

    Paste custom CSS in any of the following for it to work.

    Child themes stylesheet
    custom css plugin
    bbpress stylesheet in a css folder in child theme

    @robkk

    Moderator

    When I tested it, it doesn’t have the extra added query ?action=bbp-search-request&bbp_search=” like your site does.

    I also tested it with/without the forum root slug and it worked fine for me.

    In reply to: SMF Import Help Needed

    @robkk

    Moderator

    If that is what you meant by mods, then yes.

    @robkk

    Moderator

    What are the bbPress plugins you have on your site?? There has been some similar issues while using some specific plugins.

    Also did the user see the issue message somewhere in the form like the flood control errors in bbPress or was it displayed in place of the whole site?? This issue could also be a connection time out error on your server.

    https://codex.wordpress.org/Common_WordPress_Errors#Connection_Timed_Out

    In reply to: SMF Import Help Needed

    @robkk

    Moderator

    It might be best to deactivate any plugins except bbPress during the import process.

    @robkk

    Moderator

    PLease post an image of what you are talking about exactly. I have an idea but I want to be 100% sure of what you are talking about.

    @robkk

    Moderator

    I cannot reproduce this issue on my site, incognito works fine for me.

    I can definitely reproduce on your site though, incognito or not.

    You first try using the forum root slug in Settings > Forums to see if that fixes anything.

    @robkk

    Moderator

    What happens if you clear your cache??

    @robkk

    Moderator

    The information for adding new fields for topics could be helpful for adding fields to the reply form too. You may need to just change the word topic in any hooks used to reply, or just any word with topic with reply in the code.

    If you are just adding a simple text box for the reply form you can look over this example.

    add_action ( 'bbp_theme_before_reply_form_content', 'bbp_extra_reply_fields');
    function bbp_extra_reply_fields() {
       $waffle = get_post_meta( bbp_get_reply_id(), 'bbp_waffles', true);
       $pancake = get_post_meta( bbp_get_reply_id(), 'bbp_pancakes', true);
       echo '<fieldset class="bbp-form">';
       echo '<p><label for="bbp_waffles">Waffles</label><br>';
       echo "<input type='text' name='bbp_waffles' value='".$waffle."'></p>";
       echo '<p><label for="bbp_pancakes">Pancakes</label><br>';
       echo "<input type='text' name='bbp_pancakes' value='".$pancake."'></p>";
       echo '</fieldset>';
    }
    
    add_action ( 'bbp_new_reply', 'bbp_save_extra_fields', 10, 1 );
    add_action ( 'bbp_edit_reply', 'bbp_save_extra_fields', 10, 1 );
    
    function bbp_save_extra_fields($reply_id) {
      if (isset($_POST) && $_POST['bbp_waffles']!='')
        update_post_meta( $reply_id, 'bbp_waffles', $_POST['bbp_waffles'] );
      if (isset($_POST) && $_POST['bbp_pancakes']!='')
        update_post_meta( $reply_id, 'bbp_pancakes', $_POST['bbp_pancakes'] );
    }
    
    add_action('bbp_theme_after_reply_content', 'bbp_show_extra_fields');
    function bbp_show_extra_fields() {
      $reply_id = bbp_get_reply_id();
      $value1 = get_post_meta( $reply_id, 'bbp_waffles', true);
      $value2 = get_post_meta( $reply_id, 'bbp_pancakes', true);
      echo "Opinion on Waffles: ".$value1."<br>";
      echo "Opinion on Pancakes: ".$value2."<br>";
    }

    @robkk

    Moderator

    or if a new user registered for the forum

    Getting a notification for a new user registering is from the core of WordPress. If you do not seem to get any notification at all on your site, you may need to contact your host for help on this.

    Again if you do not seem to get any or some of these below notifications you may need to contact your host.

    New Comment / Comment Awaiting Moderation
    New Trackback
    New Pingback
    Lost Password
    New User Registration (For Admin)

    If you do get some, then we have to do more troubleshooting(which could possibly be a plugin issue) and some possible bug finding in bbPress.

    In reply to: SMF Import Help Needed

    @robkk

    Moderator

    You get the error from upgrading to 2.0.10??

    Also I can see SMF’s changelog and it mentions this. This might have caused an issue, but it could possibly be a simple fix.

    Fix for unsupported UTF8mb4 characters

    Here is the current SMF.php importer in

    /wp-content/plugins/bbpress/includes/admin/converters/SMF.php

    You can take a look at my gist file/download it and open in an IDE editor.

    https://gist.github.com/robkk/f3a83e6da6bd6bd38f00

    @robkk

    Moderator

    This custom CSS would help with your line-height issue.

    #bbpress-forums div.bbp-forum-author, 
    #bbpress-forums div.bbp-topic-author, 
    #bbpress-forums div.bbp-reply-author {
        line-height: 2em;
    }

    @robkk

    Moderator

    Glad you fixed your issue. 🙂

    @robkk

    Moderator

    You cannot see the topic form when logged in??

    Do you see any notices that show in the topic forms place??

    You can try to see if there is a theme/plugin issue first.

    Troubleshooting

    In reply to: bbPress Shortcode

    @robkk

    Moderator

    @acs-yt

    Try this custom CSS to see if it would help make your forums full width.

    @media and (min-width: 992px) {
     .bbpress .col-md-8 {
        width: 100%;
     }
    }

    Use this to completely remove the sidebar with CSS.

    @media and (min-width: 992px) {
    .bbpress .col-md-4 {
         width: 0;
         display: none;
     }
    }

    @robkk

    Moderator

    I think admins/keymasters should have full control over deleting any kind of topics. If you need some notice to popup or something similar to notify you that the topic you are about to delete has replies, you might need to hire a developer to custom develop this for you.

    @robkk

    Moderator

    a. Stop All Notifications for this Topic

    The user can just unsubscribe from the topic either from their profile or visiting the topic again.

    b. Provide one Daily Notification with all Comments for this Topic
    c. Provide one Weekly Notification with all Comments for this Topic

    For a daily digest I guess you could use this plugin, but it might not be exactly what you are looking for, and users have reported the plugin not functioning properly. You may need to hire a developer for users to get a daily digest of a specific topic.

    https://wordpress.org/plugins/bbpress-digest/

    @robkk

    Moderator

    I think this is somewhat of a server issue. See if flushing your permalinks would help.

    https://wordpress.org/support/topic/an-error-occurred-while-processing-this-directive-version-342

    @robkk

    Moderator

    @goldlux does this work?? you of course need a way to set the featured image of a topic though.

    add_post_type_support('topic', array('thumbnail'));
    
    function ks_topic_icons() {
    	if ( 'topic' == get_post_type() ) {
    		global $post;
    	    if ( has_post_thumbnail($post->ID) )
    	    	echo get_the_post_thumbnail($post->ID,'thumbnail',array('class' => 'alignleft topic-icon'));
    	 }
    }
    add_action('bbp_theme_before_topic_title','ks_topic_icons');

    @robkk

    Moderator

    I can tell that it looks like that site is using this user created theme, and it might be useful to look at using it.

    https://github.com/EpicWebs/bbPress-starter-theme-epicwebs

    @robkk

    Moderator

    BCC could have some issues on some servers, usually installing this plugin will help.

    https://wordpress.org/plugins/asyncronous-bbpress-subscriptions/

    @robkk

    Moderator

    I bet you could find another similar theme, but if you want you could hire a developer to fix any issues for you.

    @robkk

    Moderator

    Its weird that you are getting this, bbPress and BuddyPress should work fine in most permalink structures (not all), but usually pretty permalinks and the default permalinks structure should work fine.

    You did not try to edit any of the core plugins to try to fix it right??
    Also you didn’t try to modify the htaccess file in WordPress unless you knew what you were doing??
    Do you have a multisite installation??

    I am making sure this isn’t a user created issue.

    @robkk

    Moderator

    You can always try a new theme with bbPress. Also you can use Ultimate member with bbPress, although there is a paid addon from them for the integration.

    You can use BuddyPress (instead of Ultimate Member) with bbPress and the BuddyBoss theme, it is always a good combo.

Viewing 25 replies - 1,401 through 1,425 (of 3,784 total)