Forum Replies Created
-
Author
-
Radu
ModeratorHi,
By default in kleo theme sticky menu on mobile option not exists maybe you have used a css that do that, i don’t know exactly if is a quick way to do that, provide website and username and pass to take a look at what you describe
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionRadu
ModeratorHi,
By applying this css
COPY CODEarticle.lesson header >h1 { display: none !important; }The duplicated h1 it should disappear from all lessons with the css above
Cheers
R.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 13, 2016 at 16:09 in reply to: Change login-position in mobile version / Unwanted space in mobile version #121656Radu
ModeratorHi again,
2. PROFILE PIC UPLOAD
—- Regarding to this problem, is very odd, it takes much time to debug this, yes you can try a re-installation of buddypress, but before that try to do a fresh install of theme + wp + plugins on a subdomain of your site to see it works correctly, your OS XP doens’t have nothing to do with the problem.Note : The settings and values of buddypress and for other plugins are saved in database so you can re-install the plugin, but it’s recommended to do a database backup
Regarding to this problem you can try to re-upload the theme files over the existing theme file.
Just want to add that I had no problems uploading profile pics before…..
Before ? What’s different from then ?
—
Yes most probably you will have to get a developer to develop a custom logic for that show him these : https://archived.seventhqueen.com/forums/topic/restrict-looking-for-the-opposite and additional discuttion about these here : https://archived.seventhqueen.com/forums/search?bbp_search=opposite+sex
Use this css to align the checkboxes to the left, will look arranged with this css
COPY CODE.directory.members .seven.mobile-four.columns.kleo-checkbox { text-align: left; }Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 13, 2016 at 15:40 in reply to: Cannot upload “home get connected” demo page to my website frontpage #121653Radu
ModeratorNot marked as solutionRadu
ModeratorHi,
I don’t have available to much time but leave there ftp and admin credentials to the clean install where you have to setup the fields for age etc.
After i solve your problem give me how much do you want for this job.Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 12, 2016 at 19:11 in reply to: Hover Topic Title to Show Preview- Hover Members Show Profile Info #121549Radu
ModeratorNot marked as solutionRadu
ModeratorHi, The top bar can be changed with this css, but on the homepage the structure is different maybe you are working on the site right now.header-color.social-header { background-color: #1c1c1c; }The css can be added to wp-admin -> theme options -> general options -> quick css Also you can turn off the icons from wp-admin -> theme options -> social info -> and remove the link from the field and save , ten the icons will disappear. You can add your custom link there by going to wp-admin -> appearance -> menus -> create a menu and select position -> Top Menu Cheers R.Radu
ModeratorHi again,
Try with this
COPY CODEadd_filter( 'bp_get_the_profile_field_value', 'kleo_get_field_value', 999, 3); function kleo_get_field_value($value, $type, $field_id) { if ($type == 'datebox') { $field = new BP_XProfile_Field($field_id); $birthdate = new DateTime($field); $today = new DateTime('today'); $age = $birthdate->diff($today)->y; return $age; } return $value; }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