Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'Create an Account'

Viewing 25 results - 201 through 225 (of 1,116 total)
  • Author
    Search Results
  • simon1970
    Participant

    Hi,

    Thanks for this info. I’m not sure what I am doing wrong but when I follow the instructions step-by-step in the article, nothing changes. The default “You have successfully created your account!” message appears after registration. I edited the .po file in DreamWeaver then (I believe) I created a .mo file using PoEdit and uploaded the two files to wp-content/languages/plugins but nothing changes. I say “I believe” because this is the only part I’m not 100% on. All I did was open the .po file in PoEdit and save it again. When I checked the folder there was a .mo file present, so I assumed it had worked, but perhaps it had not worked? I opened the .mo file in DreamWeaver and checked its contents. Here are the contents:

    Þ• $,8É9Project-Id-Version: BuddyPress 2.6.2
    Report-Msgid-Bugs-To: https://buddypress.trac.wordpress.org
    POT-Creation-Date: 2016-08-04 22:00:54+00:00
    MIME-Version: 1.0
    Content-Type: text/plain; charset=utf-8
    Content-Transfer-Encoding: 8bit
    PO-Revision-Date: 2016-09-25 16:51-0700
    Last-Translator: JOHN JAMES JACOBY <jjj@buddypress.org>
    Language-Team: ENGLISH <jjj@buddypress.org>
    X-Generator: Poedit 1.8.8
    Plural-Forms: nplurals=2; plural=(n != 1);
    Language: en_US

    Is this correct or have I done something wrong?

    Thanks,

    Simon

    #258630
    danbp
    Participant

    Hi,

    the logout link is redirected to the same page. If you’re on your profile notifications screen, which is only intended for you, it is normal that when you logout from there, you’re redirected to a page not found message. Notifications is even private and not public.

    The solution is to redirect to an always public part of the site on logout.

    Add this snippet to child-theme’s functions.php

    //* Redirect WordPress Logout to Home Page
    add_action( 'wp_logout', create_function( '', 'wp_redirect( home_url() ); exit();' ) );

    Advice 1: use preferably the login widget, so the user stays on the same page where he attempt to login instead to be redirected to that boring wp-login page.

    Advice 2: on the Home (which is the member directory), you have all BP pages listed at the bottom. Remove them ! You certainly don’t need to give access to account activation or register page to your visitors…

    #258273
    steigw
    Participant

    I’m working through this same issue and followed @danbp coding suggestions and have two problems.

    1) Even though checkbox is required, I can still create accounts without checking it.

    2) clicking the link on it causes a black float box to pop up, with two different lines of text. The first says “click this link” and the second says “Online Privacy Statement”.

    Click this link is linked to my “about us” page. How and why this is happening I have no idea. I certainly didn’t type this in anywhere.

    The “online Privacy Statement” links to my Privacy Statement, but I don’t call it “online privacy statement”, so where do those words come from?

    I’m running WP 4.6 and BP 2.6.2.

    What I typed is this:

    By checking this box you agree with our <a href='https://my-website.com/user-agreement'>terms</a>

    Requirement is “Required” and Visibility is “only me” and it’s enforced.

    When I click “Save”, the text I typed is changed to:

    By checking this box you agree with our terms

    Requirement stays OK, but the Visibility resets to “everyone” and isn’t enforced. See all those backslashes? A new pair (front & back of URL) are added every time I click the save button. You can see I clicked it a lot!

    Am I doing something wrong?

    #258262

    In reply to: Insert Text

    steigw
    Participant

    Agreeable allows people to create the account, even if they leave the box unchecked. I see a number of support issues all reporting this problem on wordpress.org and the developers website is shutdown.

    Any other plug in suggestions? This is exactly what I’m looking for.

    #257888
    danbp
    Participant

    Annoying to work on a site where you’re not allowed to access the child-theme!
    As you can see in index.php, there is no action hook for these buttons.

    The only other way i know is a dirty trick using directly gettext.
    Add this to bp-custom.php

    
    function abcd_gettext( $translated, $original_text, $domain ) {
    
        if ( 'buddypress' !== $domain )  
               return $translated;
    
        switch ( $original_text ) {
            case 'All Members %s':
                return 'All Buddies %s';
    
    		case 'My Friends %s':
                return 'My Amigos %s';
    
            default:
                return $translated;
        }
    }
    add_filter( 'gettext', 'abcd_gettext', 10, 3 );

    More about that trick here:
    https://buddypress.org/support/topic/how-do-i-change-the-title-of-the-create-an-account-page/#post-254772

    lewis1202
    Participant

    I have managed to fix the problem. I created a page called My Account and placed it in the top menu. I was supposed to put the BuddyPress profile page there instead.

    Now im just baffled as to how it was working the other day, considering it’s a different page. Oh well haha. It’s working now anyway.

    Thank you for your prompt replies and help.

    anonymousse2
    Participant

    Actually @danbp I knew that there was a difference between an site admin and an average user. To be certain of it, I have just created an account specially to test the plugin but that does not still work. I can always modify the at will profile fields. What’s to be done?

    #256657

    In reply to: create an account page

    DamnDramaQueen
    Participant

    Ops, I also just created an Activate page manually, now it showing Activate-2 ? hmm, there’s NO other but what I just manually add new..

    The Register and Create An Account page are fine??

    Please advise, Help Help, Thanks

    #255464
    sharmavishal
    Participant

    if there are 2 separate email ids you can create 2 separate accounts thats not an issue at all. WP doesnt allow 2 separate accounts with the same email id.

    #254921
    sharmavishal
    Participant

    what djpaul suggested was can u visit http://drummershirts.net/community/register/ this URL and see if it works or not?

    i jsut went to that URL mentioned above and i was able to create an account

    You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.

    timsilva_
    Participant

    @danbp Thanks for the additional link! Totally my fault, I read everything in the thread, but I didn’t realize the pot files can’t be search on OSX. I was searching my WP installation for “Create ab Account” and since the pot file didn’t show up, I thought it was moved somewhere else.

    I’m curious about that second link you gave though, the “Hide All Members Tag” one. I’m not great at hooks/filters yet, just started trying to experiment with them a few weeks ago. If you wouldn’t mind, how could I modify the mlao_gettext function you created to change the “Create an Account” text to something else? No worries if you don’t have time. Cheers!

    timsilva_
    Participant

    I am curious how to achieve this as well with the current version of BuddyPress (2.5.3).

    I can see that the “Create an Account” title in on line 3070 of bp-core-template.php

    How could I change this to “Register” through a hook/filter in functions.php or bp-custom.php?

    #254535
    mmurguia
    Participant

    @danbp,

    This is not exactly what I need. Accounts are not created with buddypress or wordpress. They are created by Xenforo. This creates an account in wordpress, and also imports the users avatar correctly in wordpress. so it is a valid wp account with user avatar. I’d like Buddypress to use the wordpress avatar. Is this possible?

    Thanks!

    M

    GDU
    Participant

    Hi @danbp

    Firstly, thank you very much for testing this, it’s really appreciated!

    I can validate that if you disallow account creation via the WPJM settings the preview process works fine.

    However please can you also confirm if the same applies with buddypress and bbpress installed and account creation enabled in WPJM? As this is the problem I am having 🙁

    For my set up I require that an account is created as part of the job submission process as my recruiters need the ability to edit the posting, mark the job as filled or review candidate submissions and they can’t do this if they post as guest.

    Without the buddypress and bbpress installations ‘switched on’ this step works fine. However as soon as I activate the two plugins, although an account is still created in the background when posting a job, whatever is happening at the account creation stage when the three plugins are enabled at the same time interrupts the preview of the job posting resulting in a 404 page not found error.

    Many thanks again

    Regards

    Mark

    danbp
    Participant

    @gettingdownunder,

    i’m unable to reproduce your issue. I installed WPJM on my test site(latest BP & bbP, 3rd party theme), activate it and used default settings before saving. Worked like a charm, out of the box !

    The plugin created 3 pages, which i added to my theme. 1 as menu item, the 2 other as sub-menu. If you get a 404 on preview, the page

    For the settings, i disallowed account creation. Visitors must be site members to publish a job. Visitors should also not be able to publish when they’re not logged in.

    Check you have the tree pages, and disallow any thing related to account inside the plugin settings and see what goes on.

    Perhaps you trashed some pages and they are still in trash. Clear it. Pages must be unique.

    GDU
    Participant

    Hi all

    So I’ve been doing some further trouble shooting on this one and it’s just… odd.

    The issue doesn’t seem to be with just buddypress in isolation. It appears to be related to (whatever happens or changes) when buddypress and bbpress are activated at the same time.

    So, I created a brand new install of WordPress and installed WP job manager

    Within WP job manager I have the “allow account creation’ setting enabled when submitting a job listing

    With buddy press installed and enabled by itself I can enter and preview a new job listing without any issues.

    With bbpress installed and enabled (and buddypress disabled) I can enter and preview a new job listing without any issues.

    With buddypress + bbpress enabled at the same time, previewing a job posting takes me to a 404 page not found error message

    The interesting thing is.

    If I leave Buddypress and bbpress enabled but I disable “allow account creation” when submitting a new job listing in WP job manager. The job preview step works just fine.

    So I guess from I’ve been able to ascertain that it is the WP job manager account creation step which is conflicting with ‘something’ that changes on the back end when both buddypress and bbpress are enabled at the same time.

    I have no idea what might change on the backend when bbpress and buddypress are enabled from an account registration perspective so at this point I’m stumped.

    Does anyone have any ideas where I might be able to look next?

    Thanks

    Mark

    #253992

    In reply to: Membership Codes

    danbp
    Participant

    @maganiza,

    it’s possible. I suppose you need a unique code for some later user specific actions. But that code exist nowhere when a user register. What can we do ?

    1) generate a 6 digit code and show it on the register page
    2) asign that code to the user
    3) show the code on his profile

    1 – we use php mt_rand to generate the code and one of the available action hook on the register page for his output. Add this snippet to bp-custom.php

    function bpfr_digit_generator() {
    $num = mt_rand ( 0, 0xffffff ); 
    $output = sprintf ( "%06x" , $num );
     
    	echo '<strong>Your personnal code: '. $output .'</strong>';
    
    }
    add_action( 'bp_after_account_details_fields', 'bpfr_digit_generator' );

    2) create a new xprofile field, call it Personnal Code or whatever. Make it mandatory and asign it the visibility level you want. In field description, ask the user to copy/paste in the code.

    3) as the user entered the code in a xprofile field, you get automagically this field on his profile.

    I’m a bit unsure how to insert this field value in the activation email, or if it’s even possible. Perhaps somebody else can help you. See email on codex.

    A bit raw, but at least you have a start point how to do that.

    Here also another method, you may use if you don’t want the user to copy/paste the code.

    #253882
    Paul Wong-Gibbs
    Keymaster

    If you’re familiar with MySQL, and know how to do this, are you able to look in your site’s wp_users and wp_signups table, and then try to create a new account, and see if you can find it in those tables?

    #253739
    mcpeanut
    Participant

    @insearchofasolution Just thought I would chime in on this.

    You would be able to do this but it depends on the approach you take, You could use buddypress for the social network side of things for the messaging between users etc and profile pages/groups etc whilst building a custom user interface for most of the other options you mentioned and tie them together for each user.

    Its good you are clear about what you are exactly wanting to build and its all down to research, You can most definitely create separate vendor pages and account pages using custom post types and fields and creating templates for these pages etc.

    If you don’t know how to do all of this you may struggle though, unless a specific plugin meets your requirements, I myself have been using an amazing suite of plugins over the past year or so that will help you do a lot of this yourself , they are brilliant for creating complex websites and layouts without having to write everything from scratch. You will have to have knowledge of html and css etc at the very least to use them efficiently though, they do come at a cost and you are looking at $300 for the complete set, these plugins are a little more advanced than other plugins to use as they are developer orientated and can be overwhelming at first if you are new to them, but if you stick with them you will start to realize the doors these plugins can open for you on wordpress and can help make your workflow loads faster and make your project come to life. do a search for TOOLSET PLUGINS by wp-types.

    I hope this helps a little bit, creating a complex website as you mentioned above will take patience and time if you are new to doing it, I am in the middle of a few complex builds myself and to be honest with you I now pre-fare to use these plugins for most of my projects now as I can easily create any type of custom post with custom fields and display them via content templates without having to create the templates from scratch on each project.

    The best thing about the custom fields you can create with these plugins is that you can create user specific fields and control access to everything with the access plugin, giving you full control over everything and you can create quite complex membership sites yourself.

    #252540

    In reply to: Blog for users

    danbp
    Participant

    Hi,

    you don’t need a plugin to do that. You have perhaps omited to activate blog creation. Go to your network admin (wp-admin/network/settings.php)

    and select one of these option:
    – Logged in users may register new sites.
    – Both sites and user accounts can be registered.

    Save and you’re done.
    On the Toolbar user menu (top right) you will see a new button called Sites whith a sub-menu Create a site.

    #250925

    In reply to: Users Login Question

    mtraps
    Participant

    Thanks for the reply. Yeah I found a Front end buddy press plugin that seems to work. Just have to figure our how to display all the blog posts on the activity feed instead of things like “Joe created an account” or small updates like such.

    #250571
    neijisly
    Participant

    I think that version 2.5 buddypress that causes the problem because i just created an account but i still did not get the email. I think back to version 2.4.3

    #250565
    Jot
    Participant

    I again checked and works for me. For example, I created a new user, I have asked friends from my account and sent the mail correctly. I canceled this friendship and I have asked from the new user account and has also sent the mail. I have not verified if message … but I imagine it also has to work.

    #249845

    In reply to: Members disappear

    ericlianda
    Participant

    The members appear in wp-admin/users and also on the front page but only stay there for about three days then disappear from both the wp-admin/users and the front page s well as users are not able to log in after 3 days unless they create a new account.

Viewing 25 results - 201 through 225 (of 1,116 total)
Skip to toolbar