This topic has 61 replies, 3 voices, and was last updated 6 years by Radu.

  • Author
  • #180882
     KyndFellow
    Participant

    Separately, I want to enlarge the font of the links in this area, please.

    Attachments:
    You must be logged in to view attached files.
    #180885
     KyndFellow
    Participant

    Separately, I want to enlarge the font of the links in this area on the profiles, please.

    Attachments:
    You must be logged in to view attached files.
    #181198
     Radu
    Moderator

    For the messages

    COPY CODE
    
    .messages .standard-form input[type=text], .messages .standard-form select, .messages .standard-form input[type=password], .messages .dir-search input[type=text] {
        font-size:22px;
    }
    

    For the buddypress submenu navigation

    COPY CODE
    
    
    
    div#item-nav ul li a {
        font-size: 16px !important;
        padding:0 5px !important;
    }
    
    div#subnav ul li a { font-size: 16px !important;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #181287
     KyndFellow
    Participant

    Thsnk you. You are great.
    I noticed I still have the “forum” link in the Settings page of the profiles. Can you give CSS to remove “forums”? Ill send you a screenshot

    Attachments:
    You must be logged in to view attached files.
    #181290
     KyndFellow
    Participant

    What’s the CSS for the boarders of the forms used in the registeration page? “Create an Account” page? I want to make those boarders darker. See my dcreenshot

    Attachments:
    You must be logged in to view attached files.
    #181293
     KyndFellow
    Participant

    Sorry to overload you. But the create new ticket is offline tonight. Can you tell me how to customizes the Search on the home page like this:

    1) Force user registeration by redirecting them to the registeration page first when they click “Search”, if they are not logged in.
    2) How do I customize the words used in the options (for example, “Material Status” and order of the counteries listed)

    I’ll send screenshots

    Attachments:
    You must be logged in to view attached files.
    #181346
     Radu
    Moderator

    Hi,

    Hide forums menu item

    COPY CODE
    
    li#forums-personal-li {
        display: none !important;
    }
    

    For the registration page

    COPY CODE
    
    .register div#register-page form input {
        border: 1px solid #0296c0;
    }
    .register div#register-page form.custom div.custom.dropdown a.current {
            border:1px solid #0296c0 !important;
    
    }
    

    You can change the words like marital status from wp-admin -> users -> profile search -> home form

    For the countries, go to wp-admin -> users -> profile fields -> country

    The restriction for searh to be redrirected on register when guest perform search

    COPY CODE
    
    
    function sqr_prevent_search_guest_user() {
        if ( class_exists( 'BuddyPress' ) ) {
            if (!is_user_logged_in() && bp_is_directory()) {
                wp_redirect(home_url() . '/register/');
                exit;
            }
        }
    }
    add_action('template_redirect', 'sqr_prevent_search_guest_user');
    

    Please keep in mind that those kind of customisations and codes aren’t supported by our support service, i’ve just guided and helped you a little to move further with your project.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #181402
     KyndFellow
    Participant

    Thank you. But I dobt have the “Profile Search” in my Users. See screenshot. What can I do?

    Attachments:
    You must be logged in to view attached files.
    #181449
     Radu
    Moderator

    You will have to install the plugin first!
    https://wordpress.org/plugins/bp-profile-search/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #181525
     KyndFellow
    Participant

    I got the plugin. But I don’t see “home search”. Can you tell me how to get to “home search”?

    I just want to change the search label “Martial Status” to the name “Relationship”.

    Attachments:
    You must be logged in to view attached files.
    #181682
     Radu
    Moderator

    Hi,

    There you haven’t imported the default forms, see the attached video to see how you can import them.

    Also on my video you will see 4 forms i’ve imported over existing imported forms just to show you how, so you will have after import two forms not four.

    The video can be played thru browser just drop it in a new tab

    Chers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    Attachments:
    You must be logged in to view attached files.
    #181706
     KyndFellow
    Participant

    Can you please give me CSS to remove these profile editor areas — both text and visual. I want remove them on “Self Summary” and “What Im Looking For”. See screenshots.

    Attachments:
    You must be logged in to view attached files.
    #181915
     Radu
    Moderator

    Hi just provide an account to can see the fields i should be loogged in.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #181985
     KyndFellow
    Participant
    This reply has been set as private.
    #182048
     Radu
    Moderator

    Hi
    Use this css

    COPY CODE
    
    .edit .mce-toolbar-grp {display: none;}
    .edit .quicktags-toolbar {display: none;}
    .edit .wp-editor-tabs {display:none;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #182753
     KyndFellow
    Participant

    How can I make the “Continue reading” button and its text bigger on http://nfdates.com/category/all/

    Can you give me CSS for this, please?

    Attachments:
    You must be logged in to view attached files.
    #182804
     Radu
    Moderator

    Hi,

    Sure

    COPY CODE
    
    article.post .article-content p a.button.secondary {
        font-size: 17px;
        padding: 10px;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #182866
     KyndFellow
    Participant

    Thank you.. You are wonderful.

    Can you give me the short code or HTML for that “Continue reading” button? I want to divide my BuddyPress posts into separate pages, and post that button right before <!–nextpage–>

    Attachments:
    You must be logged in to view attached files.
    #182916
     Radu
    Moderator

    Hi,

    This is the html code for that button

    COPY CODE
    
    <a class="radius small button secondary readmore" href="http://nfdates.com/a-good-story/">Continue reading</a>
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #182980
     KyndFellow
    Participant

    Please tell me how to enlarge the Continue reading button on the front page too, with CSS for the Home (fronnt) page.

    See how I need to enlarge my new “Tell Me More” button at the bottom of the homepage at NFdates.com

    I want to make that now button the same size as the “Join for Free button on that page.

    Attachments:
    You must be logged in to view attached files.
    #182984
     KyndFellow
    Participant

    Never mind. I solved this. I just had to use the inline class “button large radius”. Thank you. I’ll let you know if I find anything else regarding CSS.

    #183004
     Radu
    Moderator

    Hi,

    Ok then

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 22 posts - 41 through 62 (of 62 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?