Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,101 through 3,125 (of 72,733 total)
  • Author
    Search Results
  • #317273
    apr0424
    Participant

    PLEASE HELP!! I Installed buddypress. Unfortunately registration and activate are not working: The pages where to it directs do not present the registration or activate page: Instead it gives: Not Found.

    I tried: using different themes, deleting and re-installing the theme, stopping all othter plugins. Nothing works.

    #317258
    Pieter
    Participant

    I don’t have that “replies disabled”.
    So here the replies give the impression to work but they don’t.

    I think you should ask your theme developers.
    Mine are working on it, I hope.

    But of course first try to disable all plugins except BuddyPress and test, so you know that no plugin is the culprit.

    #317253

    In reply to: BuddyPress Developer

    Varun Dubey
    Participant

    🙂 lots of profile have BuddyPress in their title at Upwork

    #317251
    apr0424
    Participant

    I use the videopro theme. I cannot make a registration-page using buddypress. I already changed the settings to anyone can register.

    The pages members, Activity and Groups do work.

    Please help.

    Kind Regards
    Anton

    #317243
    bandywow
    Participant

    Where is the best place to find a web developer that specializes in BuddyPress?
    I have looked at upwork.com and guru.com and there are a lot of people that say the know BuddyPress, but when I talk to them, the seem clueless and want me to scrap my website and use something else.

    #317242

    Topic: Buy BuddyPress?

    in group forum Installing BuddyPress
    bandywow
    Participant

    I was told that there were 2 versions of BuddyPress, a free one and one that costs that has more functionality. Is that correct?

    #317233
    kumarketan
    Participant

    Hi Buddypress,

    I have installed latest version of buddypress and when click on sigh up, it show massage that verification link has been sent to your email id but unable to received any link neither inbox nor spam folder.

    Do not not where issue is. Also facing same issue with resend link and forget password.

    Please help to solve the issue or guide.

    #317218
    ppp12345
    Participant

    It is very strange and worrying to see that Buddypress is still controlling my registration form, even if there are no visual signs of it on the form and page.

    I’m awaiting a response.

    #317211
    ppp12345
    Participant

    I’ve decided not to use your registration form. No registrations can (or should) now be made on my site through Buddypress, and I have hardcoded my WordPress password restrictions which seem to work fine in my login/- and lost-password pages/forms. STILL there is something in your code overriding my new registration form, allowing this to happen.

    Please, provide a solution ASAP.

    #317209
    purityboy83
    Participant

    Hi

    I use to wordpress + bbpress + buddypress

    When sending a private message between members, I want to put an image in the body
    Right now the only way is to use the image url link.

    I would like to upload a file using the upload button like a reference image and put it in the body

    Ref img : https://ibb.co/4pvMLDg

    This image is the “Inline Image Upload for BBPress” plugin

    Currently, images are not attached to buddypress’s private messages (inline).

    Is there any possible way?

    Best Regards,
    Hyunho

    #317198
    Venutius
    Moderator

    For the menu options one slight gotcha is that the BuddyPress menu options are not displayed by default; go to the menu page, select screen options (from the top right) and check BuddyPress Members, then ligin is shown in the logged out options

    #317189
    paulw32
    Participant

    No one knows the outgoing SMTP settings for BuddyPress and why they are different from the native WordPress settings?

    Really?

    #317182
    shanebp
    Moderator

    Yes, you can add BuddyPress to an existing site.
    It will add some database tables, but won’t overwrite any files or existing code.
    However, it is a major plugin and the best approach is to try it on your dev site first.

    #317181
    bathgate
    Participant

    Is it possible to add BuddyPress to an existing wordpress website or will it overwrite everything?

    paulw32
    Participant

    I’m trying to send emails from my site via SendGrid.
    Everything except for BuddyPress is sending correctly. No BuddyPress emails are sent through the SendGrid SMTP.
    The emails are being sent, but they art not being sent via SMTP settings I have set up.
    I also use an email logger plugin to keep track of emails sent from WordPress. No BuddyPress emails are logged at all.
    How are BuddyPress emails sent, and how do log them, and how do I get them sent through the correct SMTP server?

    #317146
    ppp12345
    Participant

    P.S. I’ve checked my bp_nouveau_signup_form() as well, code seems to be set to display Password =

    function bp_nouveau_signup_form( $section = ‘account_details’ ) {
    $fields = bp_nouveau_get_signup_fields( $section );
    if ( ! $fields ) {
    return;
    }

    foreach ( $fields as $name => $attributes ) {
    if ( ‘signup_password’ === $name ) {
    ?>
    <label for=”pass1″><?php esc_html_e( ‘Choose a Password (required)’, ‘buddypress’ ); ?></label>
    <div class=”user-pass1-wrap”>
    <div class=”wp-pwd”>
    <div class=”password-input-wrapper”>
    <input type=”password” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry” size=”24″ value=”” <?php bp_form_field_attributes( ‘password’, array( ‘data-pw’ => wp_generate_password( 12 ), ‘aria-describedby’ => ‘pass-strength-result’ ) ); ?> />
    <button type=”button” class=”button wp-hide-pw”>
    <span class=”dashicons dashicons-hidden” aria-hidden=”true”></span>
    </button>
    </div>
    <div id=”pass-strength-result” aria-live=”polite”><?php esc_html_e( ‘Strength indicator’, ‘buddypress’ ); ?></div>
    </div>
    <div class=”pw-weak”>
    <label>
    <input type=”checkbox” name=”pw_weak” class=”pw-checkbox” />
    <?php esc_html_e( ‘Confirm use of weak password’, ‘buddypress’ ); ?>
    </label>
    </div>
    </div>

    … so question remains unanswered.

    #317144
    ppp12345
    Participant

    P.S. Or alternatively changing this default…

    <div class=”user-pass1-wrap”>
    <div class=”wp-pwd”>
    <div class=”password-input-wrapper”>
    <input type=”text” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>
    <button type=”button” class=”button wp-hide-pw” aria-label=”Hide password”>
    <span class=”dashicons dashicons-hidden” aria-hidden=”true”></span>
    </button>
    </div>
    <div id=”pass-strength-result” aria-live=”polite” style=”display: block;” class=”empty”> </div>
    </div>
    <div class=”pw-weak” style=”display: none;”>
    <label>
    <input type=”checkbox” name=”pw_weak” class=”pw-checkbox”>
    Confirm use of weak password </label>
    </div>
    </div>

    to…

    <div class=”user-pass1-wrap”>
    <div class=”wp-pwd”>
    <div class=”password-input-wrapper”>
    <input type=”password” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>
    <button type=”button” class=”button wp-hide-pw” aria-label=”Hide password”>
    <span class=”dashicons dashicons-hidden” aria-hidden=”true”></span>
    </button>
    </div>
    <div id=”pass-strength-result” aria-live=”polite” style=”display: block;” class=”empty”> </div>
    </div>
    <div class=”pw-weak” style=”display: none;”>
    <label>
    <input type=”checkbox” name=”pw_weak” class=”pw-checkbox”>
    Confirm use of weak password </label>
    </div>
    </div>

    Also looked at https://github.com/buddypress/BuddyPress/blob/master/src/bp-templates/bp-nouveau/buddypress/members/single/settings/general.php … and the same goes there, I’m just seeing “password” set as default.

    P.S. I’m using elementor

    #317143
    ppp12345
    Participant

    I need the default setting…

    <input type=”text” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>

    to be….

    <input type=”password” data-reveal=”1″ name=”signup_password” id=”pass1″ class=”password-entry empty” size=”24″ value=”” data-pw=”” aria-describedby=”pass-strength-result” spellcheck=”false” autocomplete=”off”>

    Unfortunately I can’t identify the default “text” input type coded anywere- https://buddypress.trac.wordpress.org/changeset/12397 … looking in /bp-templates/bp-nouveau/buddypress-functions.php at least… everywere I look I see “password” set.

    Am I the only one facing this issue? :/ What am I missing, ANYONE?

    djintelbe
    Participant

    Hello,

    Some mathematical objects written in mathjax/latex use backslash (\). For example, one use \sqrt{} for the square root function, \mathbb{} for the set of numbers. In bbpress forums, these objects work perfectly but when the forums are displayed in buddypress activities streams, the backslash disappears and therefore the mathematical symbols are not rendered and make the texts difficult to read. If the texts are typed directly in buddypress side, things are also alright. So, the problem seems to be in the transition from forum to the buddypress activities.

    I tried some solutions but nothing work. So I am asking for help; how can I do to solve the problem

    Thank you in advance

    Wordpress 5.6.1
    Buddypress 7.1.0

    Regards

    Nestor

    sytou34
    Participant

    Hi,

    I have a website in 2 languages (FR and EN).
    When I set in one language the created pages corresponding to the Members / Activity feeds / Groups pages, I lose the setting in the other language.

    However the FR page has been translated into EN (the 2 pages are linked). So when I consult for example the Members page in FR it’s OK: if I want to change language, it’s KO.

    Is it a bug (I will create a ticket for that) ?

    How to make it work.

    Thanks for your help.

    WP Version : 5.6.1
    BuddyPress : 7.1.0

    #317116

    In reply to: Add payment method

    clickallco
    Participant

    Sure, with the right code. It’s not in the Buddypress core though – so you’d have to code it yourself or rely on any free plugin doing it for you.

    mydayhealth
    Participant

    I was wondering if there was a small snippet of code I could use to disable the friends part of buddypress all together for everyone but admins as I don’t want users to add friends. I would like to do this as I want to allow users to make their profiles private however their accounts are not accessible by admins if the friends feature is not enabled.

    Thanks in advance!

    #317084
    Venutius
    Moderator

    Buddypress just uses wp_mail, so one way would be to use on of it’s filters to exclude emails to specific users with say specific wording in the subject line. Shouldn’t be too hard to do.

    #317082
    wybezeyl
    Participant

    Dear Sir/Madam,

    How can we customize the private messages, send by buddypress-users to each other? What we would like to do: Add a question in the message-content, that gives the sender the option if having the receiver to choose from a multiple choice question. (example: Sender asks: what is your favorite football team: Ajax, Barcelona or Juventus? Receiver responds with the name of his/her favorite team.)
    We already know how to send multiple choice options to a receiver. These options are saved in the MySql-database. The receiver gets al list with radiobuttons.
    The problem is that the receiver can check a radiobutton, but his choice is not sent to the original sender, nor is it saved in the database.
    The only thing that is sent back and saved is what you type in the message-reply-box.
    We already added an input textfield where the reciever types his/her choice in. This textfield is under the reply-box. But the content is not saved or sent when you click the reply-button.
    We use WordPress version 5.6.1.
    We use buddypress 7.1.0.
    Our website is 2tango.org/dating
    -Theme: twentytwenty
    The program-file is: bp-custom.php.
    In this file bp-custom we use add_action( ‘bp_after_messages_compose_content’, function() for adding the multiple-choice things when sending a message. This works fine.
    In this file bp-custom we use add_action( ‘bp_after_message_reply_box’, function() for adding the choice of the receiver to the reply-message.
    He or she can type his/her choice in an input-textfield.
    Unfortunately this does not work.
    So only the content of the classic message-reply textarea is sent and saved and not the content of the additional input-textfield.

    Can anyone help us?
    Thanks in advance.

Viewing 25 results - 3,101 through 3,125 (of 72,733 total)
Skip to toolbar