Forum Replies Created

Viewing 40 posts - 41 through 80 (of 265 total)
  • Author
  • in reply to: Search etc on Members page #8293
     adam
    Participant

    i’m assuming /members is your member directory?
    if so, set it in wp-admin->sweetdate->buddypress instead. make sure you have some horizontal search fields checked.

    in reply to: How do I change the hearts #8286
     adam
    Participant

    hi – strangely the code above no longer works for me:

    COPY CODE
    
    #friends-my-friends:before {content: "";}
    

    i think this may be an issue resulting from the latest theme update?

    in reply to: Removing profilemenu #8273
     adam
    Participant

    this thread will help you:
    https://archived.seventhqueen.com/forums/topic/disable-profile-tab-below-profile-image

    this is my full code in my child theme’s functions.php file, which might help you too:

    COPY CODE
    
    function my_remove_profile_nav() {
        global $bp;
        if (!bp_is_my_profile()) {
            bp_core_remove_nav_item( 'profile' );
            bp_core_remove_nav_item( 'groups' );
            bp_core_remove_nav_item( 'friends' );
            bp_core_remove_nav_item( 'forums' );
            bp_core_remove_nav_item( 'events' );
            bp_core_remove_nav_item( 'location' );
            bp_core_remove_nav_item( 'settings' );
            bp_core_remove_nav_item( 'bp_album_setup_nav' );
        }
    
    }
    add_action( 'bp_setup_nav', 'my_remove_profile_nav' );
    
    function my_setup_nav() {
          global $bp;
    
          $bp->bp_nav['activity'] = false; 
          $bp->bp_nav['profile']['name'] = 'Edit Profile';
    }
    
    add_action( 'bp_setup_nav', 'my_setup_nav' );
    
    function my_remove_album_nav() {
        if (!bp_is_my_profile()) {
            remove_action( 'bp_setup_nav', 'bp_album_setup_nav' );
        }
     
    }
    add_action( 'bp_setup_nav', 'my_remove_album_nav', 9 );
    

    you can customize it to suit your needs.

    in reply to: Cannot login to my Admin WP Panel – Help #8272
     adam
    Participant

    delete the code you added and you should be able to get back into wp-admin without problem. it could be that either the syntax for the code you entered is wrong or you’re using a function name that already exists.

    in reply to: Age Range Search #8250
     adam
    Participant

    hi @hughm – The age range in BP Profile Search works for me when I register on my site (using Gravity Forms).

    Here’s my setup:

    I have a Gravity Forms field for Date of Birth which is just a date field with date format mm/dd/yyyy. It’s then linked to the Date of Birth field I created in Buddypress under Gravity Form’s User Registration. In Buddypress, the Date of Birth field I use is a Birthdate field type from Buddypress Xprofile Custom Fields Type (I also have show age instead of birthdate checked though I doubt this matters).

    in reply to: Slider Trouble & A Bunch of Setup Questions #8210
     adam
    Participant

    ah ok great 🙂

    in reply to: Slider Trouble & A Bunch of Setup Questions #8206
     adam
    Participant

    @mattadams put that css code in the quick css section wp-admin->sweetdate->styling options (bottom of the page)

    in reply to: known problem with wp 3.8? #8183
     adam
    Participant

    seems to work fine for me on WP 3.8. the new wordpress admin panel is BEAUTIFUL.

    in reply to: How to remove membership -level indicator #8128
     adam
    Participant

    you can put this in quick css:

    COPY CODE
    
    .label.radius.pmpro_label {
    display: none;
    }
    
    in reply to: Age Range Search #8123
     adam
    Participant

    hi @hughm – if you figure this out, can you share how you did it? i’d like to do the same. thanks!

    in reply to: version 2.3 problems #8038
     adam
    Participant

    i found the solution. one file caused all of the problems. in my child theme i had custom_buddypress->bp-functions.php and the theme didn’t like that 🙂 thanks!

    in reply to: Customizing top header content #8036
     adam
    Participant

    not sure what you mean. you have the file path right there. you have to go into your host’s file manager or in a FTP program.

    in reply to: Hide members real names #8033
     adam
    Participant
    in reply to: Customizing top header content #8032
     adam
    Participant

    no problem – use google chrome’s inspect element to view your site’s css. you can make changes to it to see what your site would look like, but it won’t be saved.

    in reply to: Customizing top header content #8023
     adam
    Participant

    it goes in quick css which is in wp-admin->sweetdate->styling options (at the bottom of the page). top-links is the css class for your black bar on top.

    in reply to: Customizing top header content #8014
     adam
    Participant

    put this in quick css to remove the blue line:
    .top-links {
    border-bottom: none;
    }

    that email address is what you set in your wp-admin->sweetdate->contact info & social settings.

    in reply to: Emails #7964
     adam
    Participant

    that plugin works for me. you might need to contact your hosting company.

    in reply to: version 2.3 problems #7963
     adam
    Participant

    this is helpful. I will manually try to make the changes and see what happens. thanks.

    in reply to: admin profile #7909
     adam
    Participant

    i believe this is what you’re looking for:
    https://archived.seventhqueen.com/forums/topic/hide-admin

    in reply to: version 2.3 problems #7905
     adam
    Participant

    great, much appreciated. ive used to a child theme and quick css for all my changes so it’s odd.

    in reply to: version 2.3 problems #7873
     adam
    Participant

    Can you share which files were edited/added/removed in this last update and I will try to manually install? Thanks!

    in reply to: Profile Title Email Delete #7821
     adam
    Participant

    that’s their username. you can hide it like this if you want:
    #profile .user-nicename {
    display: none;
    }

     adam
    Participant

    BuddyBlock works perfectly for me. You only need to set it to “Administrator” in wp-admin, selecting anything else will cause the button to disappear for users.

    in reply to: User not getting redirected after login #7781
     adam
    Participant

    show us your code.

    it should look like this:

    COPY CODE
    
    /* Filter the redirect url for login*/
    add_filter("login_redirect","kleo_redirect_to_profile",100,3);
     
    function kleo_redirect_to_profile($redirect_to_calculated,$redirect_url_specified,$user){
    /*if no redirect was specified,let us think ,user wants to be in wp-dashboard*/
        if(!is_super_admin($user->ID))
            return bp_core_get_user_domain($user->ID );
        else
            return $redirect_to_calculated; /*if site admin*/
    }
    
    in reply to: User Profile Section Missing #7780
     adam
    Participant

    under wp-admin->users->profile fields are looking for, lifestyle, and physical set as individual field groups (meaning they each have their own tab)?

    also, the user has to have entered information in those fields in order for it to appear on their profile.

    lastly, you should definitely make a child theme to do any changes to your site so they don’t get lost when you upgrade 🙂

    in reply to: Ajax Profile Tabs #7779
     adam
    Participant

    i agree this would be amazing 🙂 i don’t think any other theme has this so you guys would be very unique 🙂

    in reply to: Register Page is Blank #7764
     adam
    Participant

    did you go to wp-admin->settings->general and check “anyone can register”?

    in reply to: Revolution Slider #7758
     adam
    Participant

    @wisinyyandel7 just a tip, i use a site like this one to compare differences in two files:
    http://www.diffchecker.com/
    it’s a big help.

    in reply to: Will these plugins work with Sweetdate? #7735
     adam
    Participant

    i’ve tried a number of WPMUDev plugins and haven’t been impressed to be honest. they seem low quality, but that’s just my opinion. it’s surprising since they have a nice site, lots of choices, some good blog posts. i don’t know. i prefer plugins from these guys: http://buddydev.com/plugins/. they’ve all worked great for me. BuddyDev’s Brajesh seems to be a solid developer. If you Google anything about Buddypress you’ll usually see his name popup.

    in reply to: Strange white bar #7709
     adam
    Participant

    it looks to me like where you include that yellow background you need to put an inline margin-top -20px like this:
    style=”background: url(‘http://rota299.com/wp-content/uploads/2013/11/backCont.jpg’);margin-top: -20px;”

    I’m guessing this can be found in your home page under WP-Admin->Pages

    in reply to: Support ticket plugin #7661
     adam
    Participant

    Hi – I am playing around with http://osticket.com/. It’s FREE, open source, works great, and can be easily customized with this theme. I’ve tried a bunch of others, but this one seems to be the best for my needs. It’s not a plug-in, but you just upload the files to a specific directory like mysite.com/support and there it is.

    in reply to: improvements of the messaging feature #7590
     adam
    Participant

    yes

    in reply to: Remove \"Match\" #7579
     adam
    Participant
    in reply to: Remove \"Match\" #7578
     adam
    Participant

    @wiggerl3000 lots of people (myself included) use this theme for sites unrelated to dating so it’s necessary to remove the matching feature.


    @rota299
    put this in your functions.php file:

    COPY CODE
    
    /* Remove compatibility from profile */
    add_action('after_setup_theme','kleo_remove_compat');
    function kleo_remove_compat() 
    {
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');
    }
    
    in reply to: Remove Button (Send Public Message) From Profile Header #7542
     adam
    Participant

    Put this code in your functions.php file to remove the Send Public Message button:

    COPY CODE
    
    function remove_public_message_button() {
    remove_filter( 'bp_member_header_actions','bp_send_public_message_button', 20);
     
    }
    add_action( 'bp_member_header_actions', 'remove_public_message_button' );
    
    in reply to: Registration Activation Page Conflict #7540
     adam
    Participant

    Ok I think I know why it works for me. I have two header files. One with image and one without. Can you create one without and direct it to use that header?

    in reply to: Registration Activation Page Conflict #7533
     adam
    Participant

    I just realized you’re talking about the page AFTER they click the link in the email to activate. This might be of some help:
    http://gravitywiz.com/customizing-gravity-forms-user-registration-activation-page/

    in reply to: Registration Activation Page Conflict #7532
     adam
    Participant

    i use gravity forms as well. what if you create a new page in wp-admin under pages->add new and put in whatever you want for the “account activated message” and then go to wp-admin->forms->settings->confirmations and then set it to redirect to your newly created page after the user submits the registration form?

    my workflow using gravity forms is a bit different though:
    gravity forms registration page->automatically activate account (without sending activation email)->redirect right to membership levels page so they can choose their account type. it’s a pretty simple process that way.

    in reply to: Mailchimp – how to change double opt-in to single opt-in? #7513
     adam
    Participant

    Ah ok. Doesn’t look like that can be done for the newsletter. See here:
    http://kb.mailchimp.com/article/can-i-shut-off-the-e-mail-that-asks-people-for-confirmation-that-they-want-/

    in reply to: Mailchimp – how to change double opt-in to single opt-in? #7510
     adam
    Participant

    If you’re using the AutoChimp plugin you can go to WP-Admin->Settings->AutoChimp and make sure “Bypass the MailChimp double opt-in.” is checked.

Viewing 40 posts - 41 through 80 (of 265 total)

Log in with your credentials

Forgot your details?