Forum Replies Created

Viewing 40 posts - 161 through 200 (of 265 total)
  • Author
  • in reply to: Home Search Box Boarder #6204
     adam
    Participant

    🙂

    in reply to: Remove activity from profile. #6203
     adam
    Participant

    try this:

    COPY CODE
    
    function my_remove_activity() {
    global $bp;
    
    $bp->bp_nav['activity'] = false;
    }
    
    add_action( ‘bp_setup_nav’, ‘my_remove_activity’ );
    
    in reply to: Home Search Box Boarder #6194
     adam
    Participant

    Add this also:

    COPY CODE
    
    .form-header {
    border:none;
    }
    
    in reply to: Home Search Box Boarder #6173
     adam
    Participant

    Give this a try in quick css:

    COPY CODE
    
    .form-search {
    border: none;
    }
    
    in reply to: Register page editing #6168
     adam
    Participant

    hey @JohnDoe – i’d like to do the same thing you are. were you able to figure it out? i’m having trouble with it…I can’t remove “Profile Details” and am unsure how to add fields that aren’t in the Base group.

    in reply to: Remove activity from profile. #6167
     adam
    Participant

    hey – make sure you don’t already have a function called my_setup_nav in your functions.php file.
    also, check out this topic if you haven’t already:
    https://archived.seventhqueen.com/forums/topic/hide-profile
    i share my code on there that removes the activity.

    in reply to: "Username already exists" situation at registration #6166
     adam
    Participant

    I agree that the register pop-up modal could really use a username availability checker 🙂 I bypass the modal though and have it set so that when someone clicks the “Sign Up” button it takes them right to the registration page instead. that way I don’t have to deal with this issue. if the username is taken, it keeps all of the user inputted information and just forces you to change the username.

    in reply to: Cards after member search #6152
     adam
    Participant

    @Douweboschma check this out:
    http://wordpress.org/support/topic/show-birthdate-in-registration-page-and-age-in-profile-page

    i assume you’re using that plugin. you can use the code they provide in functions.php. just make sure your field name is Date of Birth on the registration, it will automatically convert it to Age on the profile.

    in reply to: bbPress styling. Contribute if you lilke #6068
     adam
    Participant
    in reply to: Border problem… #5901
     adam
    Participant

    try this:

    .form-search.custom input[type=”text”] {
    border: 0;
    }

    in reply to: login/signup in top-links section #5872
     adam
    Participant

    hm not sure. it works for me with inspect element. see if you have something overriding it in your quick css.

    in reply to: login/signup in top-links section #5869
     adam
    Participant
    COPY CODE
    
    #logo img {
    display: block;
    float: left;
    margin-top: -22px;
    }
    

    play around with margin-top. float the drop down text left, just find the css class.

    in reply to: login/signup in top-links section #5864
     adam
    Participant

    yea i was just going to tell you i looked at your site and i think you changed that css class name. I tried

    COPY CODE
     
    ul#menu-sweetdate.left {
    margin-left: -60px;
    }
    

    and it fit nicely

    in reply to: Age on memberspage + profile #5862
     adam
    Participant

    make sure you’re using this plugin for your date of birth field:
    http://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/

    in wp/admin->t;users->profile fields make sure this is checked in the date of birth field:
    “Check this if you want to show age instead of birthdate”

    in reply to: Age on memberspage + profile #5852
     adam
    Participant
    in reply to: login/signup in top-links section #5851
     adam
    Participant
    COPY CODE
    
    .top-bar ul.left {
    float: left;
    width: 600px;
    margin-bottom: 0;
    margin-left: 50px;
    }
    

    increase margin-left as much as you need. at least that’s what i did. the problem is it looks better in chrome than on other browsers 🙂

    in reply to: Nearby Plugin #5850
     adam
    Participant

    ah excellent!

    in reply to: login/signup in top-links section #5812
     adam
    Participant
    in reply to: Nearby Plugin #5768
     adam
    Participant

    geomywp is the only one i’ve seen. please let me know if you get it working nicely with this theme. i’m going to spend some time on it this week and i’ll let you know if i get anywhere 🙂

    in reply to: Nearby Plugin #5765
     adam
    Participant

    i would LOVE this. it’s one of the most critical components for a dating or similar site and i’m sure it would get you more sales 🙂 i’m trying to use geomywp, but i haven’t figured out a proper integration just yet.

    in reply to: Hide the profile "about field" when logged in #5631
     adam
    Participant

    not a bad point. i’ve been struggling with a way to bring the nav bar (profile, messages, friends, settings, etc.) up higher on the page so it doesn’t get lost and your idea might help accomplish this. the other idea i had was bringing the nav bar up and having the menu ajaxed somehow so that each area opens and closes nicely without shifting everything around too much. something needs to be improved from a UX standpoint. @sqadmin what do you think?

    in reply to: Hide menu #5365
     adam
    Participant

    i solved a similar problem to this by creating a separate header.php file, which I named header2.php. I load header2.php on the homepage and every other page uses the original header.php. you can probably just remove the menu from header2.php so it doesn’t show on your homepage. i think that should work at least 🙂

    in reply to: Adding Icons to Footer #5364
     adam
    Participant

    hi @sieglufer are you talking about the social media icons (e.g. “Find us on”)? i did this really nicely by modifying footer.php and some custom css styling. shoot me an email at emailadamrose@gmail.com if you’d like me to send you my code.

    in reply to: Hide menu #5302
     adam
    Participant

    .top-bar ul.left {
    display: none;
    }

    if you want to just hide it on the homepage and not the other pages, i suppose you can give it it’s own div class and use display: none for that one.

    in reply to: Add friend button in member directory #5236
     adam
    Participant

    Sorry – reopening. I think this fix might only work for individual profiles on the directory page. can you tell me the correct CSS for a universal fix?

    in reply to: Add friend button in member directory #5234
     adam
    Participant

    Fixed it.

    I took a look at the demo CSS and realized I had to add this to my CSS:

    #friendship-button-3 {
    display: inline-block;
    margin-right: 5px;
    }

    #friendship-button-2 {
    display: inline-block;
    margin-right: 5px;
    }

    in reply to: Add friend button in member directory #5232
     adam
    Participant

    The problem I’m having is that my add friend (+) button on the member directory doesn’t look like the demo (and never did). It appears underneath the view profile button and the length spans across the whole box. How do I get it to appear to the right of the view profile button just like the demo and a small button?

    in reply to: Plugins used by other members #5226
     adam
    Participant

    i believe it only works for the regular register page, i’m not using the modal. it checks username availability right after they type it in. otherwise, the regular process is they have to fill in all of their information and then click the sign-up button to see if that username is available. just a matter of preferences i suppose.

    in reply to: Plugins used by other members #5201
     adam
    Participant

    FYI this free username availability plugin works nicely with the theme:
    http://buddydev.com/plugins/bpdev-username-availability-checker/

    in reply to: City Field #5123
     adam
    Participant

    will this update include search by proximity (e.g. 5 miles from member, 10 miles from member, 20 miles from member, etc)? thanks!

    in reply to: How to link the avatar on the member (search) page? #5122
     adam
    Participant

    p.s. how do you get your code to show up nicely on this forum? not sure how to get that code box to appear.

    in reply to: How to link the avatar on the member (search) page? #5121
     adam
    Participant

    ok, i got this working. i had to delete the rel=”nofollow” and just use
    < a href=”<?php bp_member_permalink(); ?>”>

    hope that piece of code isn’t important? 🙂

    thanks @andrew!

    in reply to: Hide Profile tab #5081
     adam
    Participant

    function my_remove_profile_nav() {
    global $bp;
    if (!bp_is_my_profile()) {
    bp_core_remove_nav_item( ‘profile’ );
    }

    }
    add_action( ‘bp_setup_nav’, ‘my_remove_profile_nav’ );

    in reply to: Hide Profile tab #5078
     adam
    Participant

    @agentsrr – this is just a shot in the dark, but make sure the issue is that you’re not using the same function name twice in functions.php. it doesn’t allow for that.

    in reply to: Hide Profile tab #5061
     adam
    Participant

    Hi @seiglufer – This is how I removed the entire bottom navigation in functions.php:

    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' );
        }
    
    }
    add_action( 'bp_setup_nav', 'my_remove_profile_nav' );
    
    function my_setup_nav() {
          global $bp;
    
          $bp->bp_nav['activity'] = false;    
    }
    
    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 );
    

    Just remove ‘forum’ using the function above and erase everything else if that’s the only one you want removed.

    in reply to: How to link the avatar on the member (search) page? #5028
     adam
    Participant

    didn’t work for me either 🙁

    in reply to: Hide Profile tab #5003
     adam
    Participant

    Thanks!

    in reply to: Horizontal Search Field Bacground Color #4997
     adam
    Participant

    Add this to quick CSS and change background to any color you like:

    #search-bar {
    background: #FFFFFF;
    }

    in reply to: Hide Profile tab #4947
     adam
    Participant

    Hi Sqadmin – I am trying to remove all tabs from member’s profiles. The only one I have not been able to remove is Album from BP-Album. My code looks like this:

    function my_remove_profile_nav() {
    global $bp;
    if (!bp_is_my_profile()) {
    bp_core_remove_nav_item( ‘album’ );
    }

    }
    add_action( ‘bp_setup_nav’, ‘my_remove_profile_nav’ );

    But, I don’t think ‘album’ is correct. I tried search through the BP-Admin files and I see ‘Album’, ‘bp-album’ but that doesn’t seem to work together or individually. What should the name be?

    Thanks!

    in reply to: remove #4866
     adam
    Participant

    I think you’re referring to .top-links so try this in quick css:
    .top-links{
    border-bottom: none
    }

Viewing 40 posts - 161 through 200 (of 265 total)

Log in with your credentials

Forgot your details?