Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 2,676 through 2,700 (of 7,642 total)
  • Author
    Search Results
  • #184412
    piratescott
    Participant

    I don’t use buddypress for my user account sign up even though I use buddypress, you might want to give this a look http://wordpress.stackexchange.com/questions/15954/separate-registration-and-login-for-different-roles

    #184384
    @mercime
    Participant

    Iโ€™m advised by Buddyboss support to call the sidebar on this page: /buddypress/bp-themes/bp-default/registration/register.php … I am editing the right file?


    @style960
    No idea why their support is advising you to call the sidebar on the bp-default theme instead of using BP theme compatibility as we have no access to the premium theme. Perhaps you just need to clarify what they really meant by asking them to provide you with an example. Surely, you are not the only on who wants a sidebar in that theme.

    #184345
    godavid33
    Participant

    @kaizerking you should probably start your own thread, as that is an entirely different problem ( actually, I would say same for you @dhyana , but your question was already answered haha)

    but if I had to posit a suggestion (in a new thread of course) it would be to use the plugin Theme My Login. It has saved me a good bit of headache as far as getting xprofile fields to show up on registration

    #184293
    kaizerking
    Participant

    Added two fields in profile fields they are not displayed in registration form

    @mercime
    Participant

    @liceocr next time, please create your own topic ๐Ÿ™‚

    If you installed BuddyPress and “Registration” was enabled in your Settings, then you should have automatically generated Registration and Activation Pages which you can change/rename.

    If you installed BP and Registration was not enabled at the time, then you would have to create the Pages yourself. Go to https://codex.buddypress.org/getting-started/register-and-activation-pages/

    liceocr
    Participant

    I’m not having a registration page
    how to create a registration page
    Note: This is a private group, to belong to him, you must register on the site and request membership.

    liceocr
    Participant

    I’m not having a registration page, how to create a registration page buddyPress

    #184242
    Dhyana
    Participant

    hi @godavid33
    I need to make some edits to my registration form, but I can’t find the darn file.

    Can you please let me know where this file is located, and what is called?

    I’ve got to add a field for a code (I have to create over 100 6 digit codes- numbers and letters – and have them only be used 5 times each) that each new registrant needs to use in order to register.

    HELP!

    Thanks!

    #184241
    Dhyana
    Participant

    Hey @henrywright,
    I have to add a few fields as well, and I get it that it’s strict code, but I just need the FILE (location and name) that the registration FORM is located in.

    I cannot seem to find the darn file with the REGISTRATION FORM?

    Thanks for the help!

    #184212
    Anonymous User 13895492
    Inactive

    @mercime thanks, I contacted hosting provider. They changed
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^/.*$ /index.php [L,QSA]

    At permalinks I changed to custom and added: /%postname%/.

    That solved most of the issue, so thanks!

    Though when adding a group, I still get a page not found, when confirming registration a new user still gets a page not found.

    I see it links to: http://thesocialeconomy.nl/members/groups/create/

    When clicking register page, you get page not found. Log in, and then clicking register does register though!

    any thoughts?

    jasonsherwin
    Participant

    Hi Guys,

    I’m also experiencing this issue with a broken registration form.
    Fresh wp + buddypress install.

    WP_DEBUG doesn’t report anything… the registration form just fails silently on submit.
    I don’t have any weird directory naming going on like hope mentioned above^
    I just had a fresh test wp install setup on mamp at http://localhost:8888/wordpress/
    Tried renaming this dir in case it was some reserve word issue with ‘wordpress’… still no luck.

    wp 3.9.1
    bp 2.0.1

    cheers,

    – jason

    #184085
    Henry Wright
    Moderator

    @pietro_sferrino as a general guide to how templates work check out the BP Template Hierarchy

    The template for the registration page would normally live here:

    /your-theme/buddypress/members/index-register.php

    You can edit that file if one has been set up by Mingle but as I say, I’m not sure what Mingle does because it’s code isn’t available.

    #184082
    Pietro
    Participant

    No. I didn’t …
    I thought the registration page is set by BP … As the Extended Profile should be as well … What about the Avatar, for instance?
    I will try to ask them about the page …
    (even if I am not very happy with their support at all)
    Thank You.
    Pietro

    adamt19
    Participant

    I’ve resorted to a javascript solution which checks for the existence of “error” divs within my registration form and modifies the HTML of the headline above the form, if necessary.

    Note: this code is specific for my registration form, which uses .six .columns grid framework and a short vs. extendable registration experience, depending on how much time the user feels like spending on optional fields from extra field groups. Anyway:

    if (jQuery('.row .six div.error').html()) {
        		jQuery('h2.article-title').html('Wait! Something needs fixing, below.');
        		jQuery('p.lead').html('There is at least one error marked below. We\'ve expanded the form to help you find them.');
        		jQuery('.extended').fadeIn(1000);
      		}

    It seems there should be some more practical/server-side method for this.

    Still looking for answers/help on the birthday thing! ๐Ÿ™‚

    #183764
    magdamat
    Participant

    I want buddy press members directory to show all the users that have registered with my website, not only the recently active ones and I want buddy press to remember this setting for all my future users without them needing to log in again after registration in order to become active.
    I use custom community theme, bp. 2.0 and wp. 3.9

    i just found theme functions. php folder but dont know where to paste the code ( i suppose the second one in your previous message but please confirm)

    #183731
    @mercime
    Participant

    closing this old topic guillaumes, as you have resolved this issue at https://buddypress.org/support/topic/change-text-after-user-registration/

    adamt19
    Participant

    cliff notes on these questions:

    • Why does the <select> options for birthdays reset when reg form is submitted with errors
    • Is there a conditional check available on registration load to see if form is being re-rendered due to errors.

    anyone?

    Henry Wright
    Moderator

    Try using Theme My Login – you can have registration, login, lost password and reset password all within your themed pages.

    Disabling access to WP Admin will require some custom code. Put this in your theme’s functions.php file:

    // disable access to wp-admin for non-administrators
    function block_wp_admin_access() {
        if ( is_admin() && ! current_user_can( 'administrator' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
            wp_redirect( home_url() );
            exit;
        }
    }
    add_action( 'init', 'block_wp_admin_access' );
    #183489
    fantasticant
    Participant

    I am getting this same issue, have been through the same checks as above too.

    At a crucial stage in the providing of a free service to teachers in the UK I cannot take registrations.

    I have a back up service with blogvault and went back to the last day when someone was successfully registered – and it still has this error.

    Anyone with any suggestions please?

    Ant

    #183432
    Zane
    Participant

    So my final analysis is that something about buddypress activation emails being sent by spam registration that is causing third party email companies like gmail, hotmail, yahoo to blacklist my domain which in term causes bluehost to block my account from sending email.

    What is different between buddypress activation emails and standard wordpress activation emails? Can I disable this change so that the default wordpress activation emails are used?

    #183431
    Zane
    Participant

    Small update with regards to bluehost. I have been exchanging emails with them regarding this email. For your reading enjoyment.

    First Bluehost tries to accuse me of spamming

    Hi, it appears your emails have been reported by multiple providers
    (such as yahoo or comcast) as containing spam, this in turn has flagged
    our outbound email filter. We have removed your domain from the filter
    for now. To prevent this, I would advise the following:

    If you are sending email via email lists or a third party ad vendor:

    BE sure you are not using any purchased lists

    Be sure 100% sure the emails you are sending to are emails that those
    people want to receive

    Be sure you are using a double opt in when adding to your email lists

    Be sure you are not sending to ANY spam traps- a spam trap is created by
    multiple providers, it is an email that is never given out and found
    only in source code. If a spam trap receives an email from a domain,
    this is a clear indication that domain is using an email list that was
    not created by people opting in, which is against the terms of service
    and is considered spam.

    Further more, be sure you are following our complete terms of service
    concerning Sending email:

    We do not allow the sending of unsolicited mass emails to others. We
    have zero tolerance for accounts which contain material that has been
    promoted through unsolicited email (spam) or mail fraud schemes, or
    which contain pages that promote or condone the sending of unsolicited
    email.

    All emails sent from our servers or sent from another server that
    advertise a site that is hosted on our servers are required to stay
    within these rules:

    (1.) You are required to follow all rules in the Can Spam Act
    (additional information at:
    http://business.ftc.gov/documents/bus61-can-spam-act-compliance-guide-business
    )

    (2.) No purchased lists. Everyone that you send emails to MUST HAVE
    CONTACTED YOU DIRECTLY and asked for the information you are sending.
    Affiliate opt-ins are not a valid method of opt in.

    (3.) The list must be double opt in. This means that the recipient must
    request to be added, and then you must send an email asking them to
    confirm the request.

    (4.) You must have an automated opt out link; Email based opt out
    (mailto: links) are not acceptable.

    Quoting from the above link:

    Please see our Terms of Service at
    https://www.bluehost.com/antispam_policy and
    https://www.bluehost.com/acceptable_use_policy#spam for additional
    information.

    If you are sending email individually:

    Change all email passwords and check all devices/computers for any virus
    or malware

    Confirm with everyone that uses email from your domain that they are
    following the spam rules as stated above

    If you are sending email through a script or a contact
    form/tell-a-friend script:

    Be sure you have or add a captcha feature on all contact forms or
    tell-a-friend scripts

    Check your websites content for any malicious or suspecious files that
    should not be there

    Update all your Websites scripts including themes and plugins

    Once you are have confirmed you are following or now applying all of the
    above information, you will need to wait for your domains reputation to
    become clear. We have no time frame on how long this takes as our
    outbound filter relies on information from other providers to determine
    this.

    In cases of a compromised script/email:

    Change all your passwords to your emails

    Update all your email scripts

    Check for malicious files hidden within your sites

    Secure all devices that access your account.

    We hope this information helps you.”

    ****ENDQUOTE****

    If you have any other questions please reply to this ticket, chat us, or call our technical support line which is open 24/7.

    My response to the bluehost response above

    I send no emails from this account. I don’t have any email accounts
    associated with this domain. I only use one email forwarder to send any
    email sent to admin@site.com so I am not really sure any of
    your analysis below holds any ground. Please provide any information to
    back up your summary? What email account was sending messages?

    There is a bigger issue at hand here. Look at the buddypress FAQ. Why
    do you think that out of every web host they only call out bluehost?

    Your resolution was the same resolution that was put in place a month
    ago. How do I prevent my account from getting flagged again? Please
    find out what it is about buddypress that is causing bluehost to
    incorrectly flag accounts as spam accounts.

    Bluehost continues to stick to the assumption that my account is spamming

    Thank you for contacting Technical Support. We understand that sending out emails is vital to any business. Since you are on a shared server, all email you send out uses shared mail servers. Our filter system is in place to prevent our mail servers IP from becoming blacklisted by third party companies. When this occurs, it will block the ability of all of our customer accounts to send out emails. The process then becomes long and complicated once it has been flagged. In order to prevent this we have put in place several services to prevent this from happening.

    We don’t solely check blacklisting services to see if a domain and or IP address is being blacklisted. One of the spam prevention tools that we have in place relies on reports from other email and internet service providers; such as yahoo, comcast, broadband and others. The reports were generated by those who receive the emails and are marking them as spam or junk. We do not have the ability to view who specifically flags the email. Due to this, we can only rely on the reports from these major providers that report them to us. As we do not have control as to if they flag it or not, we cant control if your domain gets listed or not.

    I would recommend checking through the lists that you send out and remove any email addresses that you get bounces from. You can then remove that email address from your list. Over time people may forget that they had signed up for your list and are simply marking your messages as spam/junk. It might be a good idea to email your list and have them opt-in again to your list. You can then remove those that do not opt-in to ensure that that those on the list are legitimate.

    If you have any other questions please reply to this ticket, chat us, or call our technical support line which is open 24/7.

    My response

    I don’t think you are reading my email responses. I do not send emails
    from any account on this domain. The only emails that are sent are
    registration activation emails. How is my domain getting black listed
    if I am not sending emails?

    Their response. Apparently my email forwarder to my own account is also somehow sending spam email to other people and buddypress is responsible for spam.

    Hello,

    You send e-mail via buddypress, you also send mail via the forwarder. These both contribute to the blacklist you’ve now been added to.

    My response. I request information on what about the activation emails is causing my site to get blacklisted

    I have only received one email via the forwarder and that wouldn’t put me
    on a black list. Therefore the activation emails must be what is putting
    me on the blacklist WordPress installations get registration spam all the
    time but they do not get the sites blacklisted. What is it about
    buddypress that is triggering the blacklist?

    Their response. It is top secret.

    Hello,

    We release no specifics on the exact criteria incorporated to flag the contents of e-mail messages to prevent our filters from being defeated. Generally, quantity of messages sent, specific reports of spam e-mail from third parties, internal links or keywords associated with known mass mailing agencies, or a combination of all of the above can lead to the domain’s reputation being reduced to the extent that it requires intervention.

    My final response tonight

    Very well,

    The net sum is I do not send email from this account. The only email sent is activation emails sent by wordpress/buddypress. I have had the typical spam troubles dealing with fake registrations from spammers and I assume those spam registrations are flagging the spam filter. I have never had this issue with wordpress spam activation emails flagging one of my accounts as spam so it is clear that SOMETHING about the buddypress activation emails is to blame (it is the only variable that has changed). This fact is reinforced by the fact that buddypress calls out bluehost.com’s failure to address this email in their FAQ https://codex.buddypress.org/legacy/faq/

    [quote]BuddyPress isnโ€™t sending out emails (eg. activation emails, email notifications). This appears to be a problem with certain web hosts (Bluehost primarily). Members of the BP community have had success using]/quote]

    I have provided a copy of the activation emails my account is sending on my previous ticket for analysis. I have changed nothing to the default buddypress activation emails.

    Please invest some time in identifying why this very popular wordpress plugin is triggering spam filtering by bluehost email. I am happy to make any modifications to my code to resolve this issue and I am sure the buddypress community would love to remove this section from their FAQ. I appreciate your support addressing this issue. Thank you for your continued support with this issue. I have invested a lot of time and effort into this project and I would hate to see it die because bluehost continues to flag my account incorrectly due to an error in the spam filtering software on bluehost’s end. Thank you.

    #183382
    Antimuffin
    Participant

    Hello,

    i want to use the “Profile field Settings” – if i create a new Profile Field and i write
    <a href='#' target='_blank'>Terms</a> and i save, the system removes the target=’_blank’..
    If i write <a href='#' target='_blank'>Terms</a> in the Database… it dont show the target=’_blank’ in the html code if i am on the registration page…

    How can i remove that ?

    I have the newest versions – Theme: Pinboard

    #183289
    kemmieg
    Participant

    I am using X2 Premium theme and multiple plugins. One of them is S2 Member for registration. I didn’t even think about a plugin issue. I’ll deactivate the plugins and see if I can find the problem that way and if not I’ll get back to you. Will probably take some time since site is live and I’ll need to take it offline while I do this.

    #183136
    ciromanigrasso
    Participant

    Thanks for your response. I am not sure I understand (sorry I am not a BP expert)…the multistep registration is not available yet…is that right?

    #183115
    ciromanigrasso
    Participant

    Hi all, I have the same issue: a multi step registration. How did you solve the problem?

Viewing 25 results - 2,676 through 2,700 (of 7,642 total)
Skip to toolbar