-
Author
-
November 24, 2017 at 10:11 #180882
KyndFellow
ParticipantSeparately, I want to enlarge the font of the links in this area, please.
Attachments:
You must be logged in to view attached files.November 24, 2017 at 10:18 #180885KyndFellow
ParticipantSeparately, 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.November 27, 2017 at 15:32 #181198Radu
ModeratorFor 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 CODEdiv#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 solutionNovember 28, 2017 at 08:24 #181287KyndFellow
ParticipantThsnk 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 screenshotAttachments:
You must be logged in to view attached files.November 28, 2017 at 08:34 #181290KyndFellow
ParticipantWhat’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.November 28, 2017 at 08:49 #181293KyndFellow
ParticipantSorry 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.November 28, 2017 at 18:20 #181346Radu
ModeratorHi,
Hide forums menu item
COPY CODEli#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 CODEfunction 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
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionNovember 29, 2017 at 06:52 #181402KyndFellow
ParticipantThank 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.November 29, 2017 at 16:52 #181449Radu
ModeratorYou 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 solutionNovember 30, 2017 at 01:59 #181525KyndFellow
ParticipantI 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.December 1, 2017 at 21:40 #181682Radu
ModeratorHi,
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 solutionAttachments:
You must be logged in to view attached files.December 2, 2017 at 09:12 #181706KyndFellow
ParticipantCan 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.December 4, 2017 at 16:47 #181915Radu
ModeratorHi 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 solutionDecember 5, 2017 at 19:52 #182048Radu
ModeratorHi
Use this cssCOPY 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 solutionDecember 12, 2017 at 08:53 #182753KyndFellow
ParticipantHow 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.December 12, 2017 at 17:02 #182804Radu
ModeratorHi,
Sure
COPY CODEarticle.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 solutionDecember 13, 2017 at 01:44 #182866KyndFellow
ParticipantThank 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.December 13, 2017 at 17:11 #182916Radu
ModeratorHi,
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
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionDecember 14, 2017 at 09:20 #182980KyndFellow
ParticipantPlease 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.December 14, 2017 at 11:24 #182984KyndFellow
ParticipantNever 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.
December 14, 2017 at 15:39 #183004Radu
ModeratorHi,
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 -
AuthorPosts
You must be logged in to reply to this topic.