Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 6,451 through 6,475 (of 32,505 total)
  • Author
    Search Results
  • #174535
    Robkk
    Moderator

    You can use something like this.

    Add this php code snippet into your child themes functions.php file or add the function to a plugin like functionality.

    add_action( 'bbp_theme_after_topic_author_details', 'rkk_add_register_date' );
    add_action( 'bbp_theme_after_reply_author_details', 'rkk_add_register_date' );
    function rkk_add_register_date() {{ ?>
      <span class="bbp-user-register-time">
        <?php printf( __( 'Member since: %s',    'bbpress' ),
        date( get_option( 'date_format' ), strtotime( get_the_author_meta( 'user_registered' ) ) )
        ); ?>
      </span>
    <?php }}
    #174512
    Stephen Edgar
    Keymaster

    This seems to be after 24-36 hours of run time, so I am not sure if I am running across some sort of session expiration or what.

    Yes, that is exactly what you are coming up against, on the technical side, its WordPress dropping the MySQL session, the work around is to every few,4,6,8,12 hours even is to open a new browser tab and refresh a WordPress admin page and that should stop those ------

    Is it possible to re-run an import, picking off where it left off?

    It’s supposed to, there’s some improvements here coming in bbPress 2.6, I also strongly suggest using 2.6-alpha available from https://bbpress.org/download, there will be no more import changes before 2.6 ships and there are vast improvements to importing in 2.6.

    Give it a try and let me know it goes πŸ™‚

    #174504
    zimmermann.c
    Participant

    I was not aware that shotcodes even existed for bbp.
    Further to your advice I seached and found the documentation of all the SC’s. This is a great step for me.
    Thank you for your help

    #174497
    Soul
    Participant

    Anyone who has find something? I did not find any info about it.

    Can any one help me on this? I will pay for the code.

    #174495
    giobby
    Participant

    I leave this reply for those who faced the same issue and also for the developers who may find where the problem is.

    From one side we have a wrong author getting associated to the wordpress posts (forum, topic and replies).

    One thing that can be done to fix this after having run the import is to match the date and time of the post, the ip address of the author and potentially the last 8 characters of the content (will not work if it’s a smiley or bb code).

    This would fix the issue even if I can’t guarantee it will work for all the dirty posts.

    The second thing, even more worrying, is the fact that certain authors are associated to the topics/replies with their old PHPBB user_id.
    It’s easy to spot them because those dirty posts won’t join with the wp_user table and therefore they are reported as anonymous users in the website.

    One way to fix that after the import is to update all those old PHPBB ids by replacing them with the corresponding wordpress users ids (just join on email address).

    nateonawalk
    Participant

    Hey all, an update —

    Sooo this project turned into something much larger than anticipated. What seemed like a quick PHP permutation turned into a massive 100 hours+ job that is still ongoing. We’ve effectively created a complete out-of-the-box pretty permalinks solution that even folks with pre-existing bbPress forums will be able to safely turn on and use. We’ve thrown out the previous fork and are re-writing everything with our own code from scratch.

    That said, the opportunity cost I’ve incurred is quite large and we’re still a couple weeks off from completing things. Every time we do a re-write, a bunch of new broken use-cases emerge. We’ve gotten offers from a couple plugin development companies to buy the plugin from us as well — so we’re trying to decide what best to do with the resources that we have.

    Just want everyone to be aware of progress!

    Thanks~

    #174485

    In reply to: Image upload advice

    mica123
    Participant

    @robkk many thanks as always! It took me a while to work out that I had to disable the code for enabling the Tinymce in my own functions.php before the plugin started to work as expected.

    #174476

    In reply to: Comments on Topics

    Robkk
    Moderator

    There is no special optionYou would have to edit the bbPress templates, and I guess replace the reply form with the comment form.

    https://developer.wordpress.org/reference/functions/comments_template/

    And I guess you might need to do more work like remove any other mentions of replies in bbPress entirely like in topic/forum stats, notices/descriptions, user profile data, activate show lead topic, find a plugin to allow mods to move comments to other topics. Then you might need to find different plugins that you need if you want quoting, attachments, bbcode, and more for custom features.

    Then I guess if you want to ever leave bbPress with your custom comments integration, you will need to create a custom import for whatever you are importing to.

    Still do not recommend it, but if you really really want I suggest hiring a developer if you do not have the knowledge or time to do all of this by yourself.

    #174453
    Robkk
    Moderator

    @maketheest

    When you enable the tinymce editor in bbPress, for now you have to edit that snippet you posted and edit it for every buttons html tags that you will end up using. Whenever you may be quoting another user using a different plugin you may need to use the paste as a text php code snippet in the guide.

    https://codex.bbpress.org/enable-visual-editor/

    Read this WordPress guide about the character entities.

    https://codex.wordpress.org/Writing_Code_in_Your_Posts

    #174447
    mica123
    Participant

    Hello,

    I’ve been looking into image uploads. It seems that it is not easy for participants to upload photos etc. I take it that users are supposed to type in the path to the file in the Source field in the WYSIWYG editor – I doubt that users would know how to do that.
    I found this topic here in this forum.
    Could somebody perhaps advise me if the code that is suggested would be the right way to go or would the plugin be better?
    Many thanks.

    #174413
    rothaar
    Participant

    Hi Robkk,

    no, it wasn’t turned into von. It looks like this: http://screencast.com/t/FLR74UlGQaYp

    Are you planning to have a multilingual single site? You might be on to something here if you are trying to run a multilingual single site.

    Yes, that was the idea, but I keep running into so many issues with this that I’m now starting to consider separate installations.

    One of the issues is that a multilingual single site requires a translation for forum posts for them to show up at all. I would like users to be able to access my website in their language (menus, buttons etc) and write forum posts in their language without the need of a translation.

    However, if I post something in English it will not show unless I translate the post into German and vice versa. You can imagine that it would not be feasible to translate every forum post. If I deactivate the translation of replies, then part of the interface won’t be translated either.

    I’m not sure though if I can create one community if I separate the installs for the languages. E.g. I would still like users to be able to contact each other via private and public messages and post in the German and/or the English forum. Member lists should show members of both sites etc.

    I’ve not looked into this yet so I don’t know if this can be done.

    Just so you know, I thought the root issue could be the β€œby” not changing in your forums is because it might have outputted the text using code from a custom phpbb starter pack theme created by @lynq, here is an example of the custom forum freshness column from the starter pack.

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

    I see what you mean. I think I’ll check with the author of my theme (Buddy) and see what he says. Thanks for the tip!

    #174406

    In reply to: forum cover art….

    ixixy
    Participant

    @robkk, thank you very much for your response. you are totally awesome :0

    I looked at the link, and it seems like it is for bloggers to put custom background on different posts. It’s a cool idea, but not what I had in mind.

    So, in bbpress, when you set up a forum, there is a place that allows you to upload a featured image.

    I want to use this feature…..and upload a landscape image to use as a cover image on top of the forum….

    To paint a clearer picture, imagine buddypress’s cover image that is on a user’s profile…. I want a cover image on each forum….and the image would be the pic uploaded to the ‘featured image’ option as the forum is set up.

    I know that this probably a really pretty simple thing to do….insert the featured image photo on the forum index….i just am not sure which templates would need to be edited or the code involved…and that’s why I’m turning the idea to you brilliant folks who are smarter than me for the solution πŸ™‚ πŸ˜‰ πŸ˜€

    nateonawalk
    Participant

    Hello bbPress community,

    I’ve forked @siparker ‘s plugin and have worked with a dev to develop an edited version

    the new version:

    – only includes post IDs at the end of topics
    – moves the topic IDs to the end of the URL for URL prettiness
    – makes it so that every page only has one path (important to prevent negative SEO duplicate content vulnerabilities)
    – works with breadcrumbs and edit post links too

    I’m doing a final debugging right now, but I’ll publish the code on GitHub once it’s polished and then will share a ZIP here.


    @netweb
    , would love to help work toward getting this implemented in core functionality πŸ™‚

    #174400
    arathra
    Participant
    	/**
    	 * Filter whether to trigger an error for _doing_it_wrong() calls.
    	 *
    	 * @since 3.1.0
    	 *
    	 * @param bool $trigger Whether to trigger the error for _doing_it_wrong() calls. Default true.
    	 */
    	if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
    		if ( function_exists( '__' ) ) {
    			$version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
    			/* translators: %s: Codex URL */
    			$message .= ' ' . sprintf( __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
    				__( 'https://codex.wordpress.org/Debugging_in_WordPress' )
    			);
    			trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
    		} else {
    			$version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version );
    			$message .= sprintf( ' Please see <a href="%s">Debugging in WordPress</a> for more information.',
    				'https://codex.wordpress.org/Debugging_in_WordPress'
    			);
    			trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
    		}
    	}

    Is the function, line 3901 is : trigger_error( sprintf( __( ‘%1$s was called incorrectly. %2$s %3$s’ ), $function, $message, $version ) );

    #174393
    designvibe
    Participant

    Hi,

    I’ve added the nickname field to profile so people can add it.

    Now I need it to display on the topic and replies under bbp-reply-author.

    Everything I’ve tried shows username. Is there a way of tweaking to below to nickname?

    <?php $user = get_userdata( bbp_get_reply_author_id() );
    if ( !empty( $user->user_nicename ) ) {
    $user_nicename = $user->user_nicename;
    echo "@".$user_nicename;
    } ?>
    Manuel Fritsch
    Participant

    Thank you, I just cancelled the whole padding. It looks good now. Would you confirm this, hope I did not miss something?

    #wp-link,
    #wp-link p {
      font-size: 15px;
      line-height: normal;
    }
    
    #wp-link h1, .h1, .title h1 {
    color:#000;
    }
    
    #wp-link .screen-reader-text, .screen-reader-text span,
    #wp-link .ui-helper-hidden-accessible {
      position: absolute;
      margin: -1px;
      padding: 0;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      border: 0;
      word-wrap: normal!important;
    }
    Robkk
    Moderator

    adjust the padding for the input

    #wp-link,
    #wp-link p {
      font-size: 13px;
      line-height: 1;
    }
    
    #wp-link input {
      padding: 0 5px;
    }
    
    #wp-link .screen-reader-text, .screen-reader-text span,
    #wp-link .ui-helper-hidden-accessible {
      position: absolute;
      margin: -1px;
      padding: 0;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      border: 0;
      word-wrap: normal!important;
    }
    Manuel Fritsch
    Participant

    Dear Robkk,

    the code is almost perfect. Thank you. Only the button text for the submit button is out of place, would you have another look?

    #174384
    Robkk
    Moderator

    @zimmermannc

    Moderators cannot see the forums menu in the WordPress backend. To see the Forums menu item they need the keep_gate capability which only Keymasters have.

    Moderators can create forums on the frontend of your site if you used the [bbp-forum-form] shortcode in a page

    Editing forums, I am not sure how they are supposed to do that on the frontend, maybe bbPress had some functionality for managing BuddyPress group forums that is broken. Have to look into it.

    Robkk
    Moderator

    Try this custom CSS instead.

    #wp-link,
    #wp-link p {
      font-size: 13px;
      line-height: 1;
    }
    
    #wp-link input {
      padding: 6px;
    }
    
    #wp-link .screen-reader-text, .screen-reader-text span,
    #wp-link .ui-helper-hidden-accessible {
      position: absolute;
      margin: -1px;
      padding: 0;
      height: 1px;
      width: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      border: 0;
      word-wrap: normal!important;
    }
    JaneAkshar
    Participant

    These are my plugins
    bbPress
    Category Posts Widget
    Contact Form 7
    Display Posts Shortcode
    iThemes Security
    jetpack by WordPress.com
    Really Simple CAPTCHA
    Wordfence Security
    WP Google Maps
    WP-Members
    Yoast SEO

    #174379
    investacube
    Participant

    Hi @daveodea did you find a solution? I have exactly the same situation. So far, I have verified that:

    1. there are no errors being logged anywhere server side and
    2. the issue isn’t related to caching, either server side or via a wordpress plugin.

    I have also:

    1. disabled all plugins except buddypress;
    2. enabled my main theme, in case I had some conflicted code in my child theme;
    3. tried with the twenty sixteen theme.

    But I still can’t resolve this issues. Does any one have anymore advice they could give me?

    Robkk
    Moderator

    I used the plugin wp-members

    Is it this plugin??

    https://wordpress.org/plugins/wp-members/

    I cannot seem to figure out how you did the members area thing with this plugin (if it is the correct plugin).

    So I have done loads more searching and it is known problem which BBPress do nothing about

    Well there might be related issues to search redirecting to the home page, some had issues with the search query having a url structure and query different than intended by default, and some had issues with search plugins on their site, and I think some I tried to contact personally to help them since they had a premium theme and it is hard to just figure it out on premium themes that might have some kind of fancy ajax search having conflicts with the default bbPress search for example. Your issue could be somewhat related to the url structure.

    Do you have any steps that maybe I can try to replicate to find the cause of this issue, like explain how you set everything up?

    So you ditch the BBPress function, it does not work. And amend the normal search to include forums.

    Yes this can be a workaround for some, but since you may have private members only content this solution may not be practical.

    Does the default bbPress search work fine on a fresh installation with just your theme and no other plugins like wp-members?

    If you haven’t already known if bbPress search works by default with just your theme and bbPress activated, consider created a localhost setup to test the default bbPress search to see if it works on a default fresh installation, then we can work backwards and try to find the cause of this issue that you are experiencing.

    https://codex.bbpress.org/getting-started/testing-your-bbpress-installation/creating-a-test-site/

    #174367
    Robkk
    Moderator

    I’ve added a new site to my multisite installation, set the language to German and activated bbPress. The β€˜by’ did not show.

    Was the word “by” turned into “von”, or was there an entirely different layout when you activated your theme on new site install? If it was “von” by default in the new site installation then, then maybe it could be a possible cache issue on your original site, so flushing the cache could then update the word to “von”.

    Could it be that the theme only causes the β€˜by’ to show if two (or more) languages are active or that a plugin is causing it?

    Are you planning to have a multilingual single site? You might be on to something here if you are trying to run a multilingual single site.

    Just so you know, I thought the root issue could be the “by” not changing in your forums is because it might have outputted the text using code from a custom phpbb starter pack theme created by @lynq, here is an example of the custom forum freshness column from the starter pack.

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

    itsasiak
    Participant

    Hi all,

    I hope you can help me. I am trying to create and attach a bbp forum automatically after a BuddyPress group is created.

    I have “unset” the BuddyPress group creation steps, and only the “group settings” step remains.

    I have been digging in bbp code to try to reproduce the forum creation process, and this is what I put together (though it is not working):

    <?php $bbpforum = new BBP_Forums_Group_Extension; ?>
    <?php $bbpforum->__construct(); ?>

    <!-- Reproducing parts of public edit_screen() -->

    <!-- Reproducing fieldset return -->

    <?php $_POST['bbp-edit-group-forum'] = true; ?> <!-- this comes from the edit screen; this form field is sent -->

    <!-- end of fieldset return -->

    <!-- start of edit_screen_save -->

    <?php

    if ( empty( $group_id ) ) {
    $group_id = bp_get_new_group_id();
    }

    $create_forum = true; // Changed this to true (there was a switch structure down and I kept the true case only
    $forum_id = 0;
    $forum_ids = bbp_get_group_forum_ids( $group_id );

    if ( !empty( $forum_ids ) )
    $forum_id = (int) is_array( $forum_ids ) ? $forum_ids[0] : $forum_ids;

    // Set the default forum status

    $status = bbp_get_public_status_id();

    // Create the initial forum
    $forum_id = bbp_insert_forum( array(
    'post_parent' => bbp_get_group_forums_root_id(),
    'post_title' => bp_get_new_group_name(),
    'post_content' => bp_get_new_group_description(),
    'post_status' => $status
    ) );

    // Run the BP-specific functions for new groups
    $bbpforum->new_forum( array( 'forum_id' => $forum_id ) );

    // Update forum active
    groups_update_groupmeta( bp_get_new_group_id(), '_bbp_forum_enabled_' . $forum_id, true );

    // Toggle forum on
    $bbpforum->toggle_group_forum( bp_get_new_group_id(), true );

    ?>

    It is placed in create.php, right after the create group form submission entry.

    As you see, I have erased the wp_nonce_field functions and the associated admin_referrer functions to avoid the “Are you sure you want to do this?” screen.

    If it is not clear, please, let me know what else would be needed to try get the automatic forum, and of course, if you know a better and easier way of doing it.

    Thank you very much!

Viewing 25 results - 6,451 through 6,475 (of 32,505 total)
Skip to toolbar