Forum Replies Created
-
Author
-
December 28, 2015 at 22:19 in reply to: A few issues: menu, side menu, footer, lost layout etc #95493
Laura
ModeratorHello, please add this to style.css
– Right PaddingCOPY CODEul#menu-hoofdmenu { padding-right: 50px; }
– Top Padding
COPY CODE.wrap-canvas-menu { padding-top: 50px; }
– Height of footer
COPY CODEdiv#footer { height: 350px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please add this to style.css of child theme
COPY CODE#profile #bp-verified-header img { position: absolute; margin-left: -8%; margin-top: 78%; width: 30px; } .widgets-container #bp-verified img { margin-left: 13%; margin-top: -4%; position: absolute; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
December 28, 2015 at 21:54 in reply to: Membership Levels Page Disapeared from Parent Directory #95488Laura
ModeratorHello, please add this to wp-config.php
COPY CODEdefine('WP_MEMORY_LIMIT', '192M');
For the first issue, have you tried deactivating some plugins and testing again?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, the registration works like this: The user register and logs in, then the membership levels page appears so he can choose one. If he access a restricted page he will be redirected to go to the levels page.
To remove the hearts just add this to functions.php of child theme ( you should have child theme activated )COPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); /* Replace the heart from register modal */ add_filter('kleo_register_button_icon', 'my_custom_icon_register'); /* Replace the heart from About us widget */ add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; } /* Replace the heart from register modal with a user icon function */ function my_custom_icon_register () { return 'user'; } /* Replace the heart from about us widget with a user icon function */ function my_custom_icon_about_widget () { return 'user'; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see you are using the main theme, you should use the child theme before doing any change or you will lose them when the theme updates
This is the codeCOPY CODE<?php echo do_shortcode( '[aas_zone zone_id="8151"]' );?>
It will show the ad zone i created with the plugin, found at Advertising > Campaing / Zone / Banner
Add that code to bbpress/loop-forums.php at the end if you want it after the forum loop
But remember, you need to do this at child theme and have it activatedHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try to add this css to style.cs
COPY CODE.single_variation .price { display: none; }
That price is the price of each variation
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, i see yo want the travel style right? Well first import the travel settings found at SweetDate\Main Files\Demo content\site styles
Car Sharing
Then import it at Sweetdate > Import
( Copy the text and paste it, then click import )
Then to delete all hearts from the theme just add this to functions.php of child themeCOPY CODEadd_action('after_setup_theme','kleo_my_hearts_actions'); function kleo_my_hearts_actions() { /* disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); /* Replace the heart over images */ add_filter('kleo_img_rounded_icon', 'my_custom_icon'); /* Replace the heart from register modal */ add_filter('kleo_register_button_icon', 'my_custom_icon_register'); /* Replace the heart from About us widget */ add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget'); } /* Replace the heart with a camera icon function */ function my_custom_icon () { return 'camera'; } /* Replace the heart from register modal with a user icon function */ function my_custom_icon_register () { return 'user'; } /* Replace the heart from about us widget with a user icon function */ function my_custom_icon_about_widget () { return 'user'; } add_action('after_setup_theme','kleo_remove_actions'); /** * Override existing actions * Use these functions to replace/remove existing actions * @since Sweetdate 1.3 */ function kleo_remove_actions() { /* For example uncomment the line bellow to disable matching on member profile */ remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match'); }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css and change 5% as you want
COPY CODEnav.top-bar { margin-top: 5% !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, lets try this one:
Add to functions.php of child themeCOPY CODEadd_action('bp_ajax_querystring','bpdev_exclude_users',20,2); function bpdev_exclude_users($qs=false,$object=false){ //list of users to exclude $excluded_user='1';//comma separated ids of users whom you want to exclude if($object!='members')//hide for members only return $qs; $args=wp_parse_args($qs); //check if we are searching for friends list etc?, do not exclude in this case if(!empty($args['user_id'])||!empty($args['search_terms'])) return $qs; if(!empty($args['exclude'])) $args['exclude']=$args['exclude'].','.$excluded_user; else $args['exclude']=$excluded_user; $qs=build_query($args); return $qs; }
Change the 1 for the admin id
How to get user id http://rudrastyh.com/wordpress/get-user-id.htmlHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, done, just added this code to your header.php at child theme just below “<!– End Nav Section –>”
COPY CODE<div class="nameleft"><li class="header-login-button"><div class="tiny secondary button radius"><?php echo bp_core_get_user_displayname( bp_loggedin_user_id() ); ?></div></li></div> <style> .nameleft li.header-login-button { margin-left: 85%; position: absolute; list-style: none !important; margin-top: 1%; } </style>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, to remove the header of the theme, just add this to style.css of child theme
COPY CODEdiv#header { display: none; }
But maybe you would prefer to hide the menu, not the header?
If so, use this instead:COPY CODEul#menu-top { display: none; }
Or all navbar but not header:
COPY CODE.navbar { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to functions.php of child theme
COPY CODEremove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 2 );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, well you could use the following:
https://developer.wordpress.org/reference/functions/do_shortcode/ ( User Contributed Notes )Basically, you need to wrap the code with <script> </script> tags, so you can use it at header.php
Would be something like:COPY CODE<script> echo do_shortcode( '[vc_row][vc_column][kleo_bp_groups_carousel type="random" number="20" min_items="1" max_items="5" image_size="thumb" autoplay="yes" item_width="150"][/vc_column][/vc_row]' ); </script>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css
COPY CODE.caroufredsel_wrapper { height: 115px !important; } .caroufredsel_wrapper img { height: 85px !important; width: 95px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this will hide the text
Add to style.cssCOPY CODE.change-avatar p { display: none; }
To change the position you will need to edit it using css, i suggest to hire a developer to do it for you 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this will change the font size
COPY CODEul.pricing-table.kleo-level-4 li { font-size: 18px !important; }
To change checkmark icon:
COPY CODE.membership .bullet-item:before { font: 13px 'FontAwesome'; content: "\f041" !important; }
Checkmark color
COPY CODE.membership .bullet-item:before { color: red !important; }
Hide checkmark
COPY CODE.membership .bullet-item:before { display:none !important; }
Box colors
COPY CODE.membership .pricing-table .title, .membership .pricing-table .price { border-color: #000000; background: #000; color: white; } .membership .pricing-table .description { background-color: #FFFFFF; } .pricing-table .bullet-item { background-color: #1B1B1B; padding: 15px; text-align: center; color: #FFF; font-size: 14px; font-weight: normal; border-bottom: dotted 1px #272727; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css
COPY CODEul#menu-sweetdate a { font-weight: 100 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try
COPY CODEspan.amount { font-size: 24px; }
🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorThis for mobile
COPY CODE@media only screen and (max-width: 940px) { div#item-nav { margin-top: -10%; width: 100%; padding-bottom: 60px; } .tabs.info, #object-nav ul { list-style: none; border-bottom: solid 1px #e6e6e6; display: block; height: 100px; padding: 0; margin-bottom: 40px; border: none; width: 300px !important; margin-left: -50px; } #object-nav ul li { display: block; float: left; padding: 0; margin: 0; position: relative; border-top: none; border-bottom: 2px solid #fff; margin-bottom: 40px; } }
Add to style.css
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css
COPY CODE@media (max-width: 991px) { li.dropdown.pull-right.tabdrop.open li a:before { height: 50px !important; width: 50px; margin-bottom: 10px; } a#user-members-compliments:before { margin-left: 0% !important; } #buddypress div#item-nav ul #settings-personal-li a:before, #buddypress div#item-nav ul #admin-groups-li a:before { width: 50px !important; } } a#user-album { width: 70px; } a#user-media:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; height: 57px; margin-bottom: -4px !important; } a#user-album:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-forums:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-activity:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-xprofile:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-media:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-messages:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-friends:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-notifications:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-members-compliments:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-settings:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a.dropdown-toggle:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; } a#user-notifications:before { background-image: url('http://seventhqueen.com/wp-content/themes/kleo/assets/ico/favicon.png'); background-size: cover; display: block; margin-left: 15%; } ul.responsive-tabs li a:before { color: transparent !important; width: 50px; } .tabs.info dd a, .tabs.info li a, #main #object-nav ul li a { color: #6f6f6f; display: block; height: 40px; line-height: 40px; padding: 15px 20px; font-size: 12px; text-transform: uppercase; font-family: inherit; font-weight: normal; } .tabs.info dd a, .tabs.info li a, #main #object-nav ul li a { color: #C3C3C3 !important; display: block; font-size: 13px; height: 40px; line-height: 40px; padding: 0px 10px; } a#user-notifications:before { content: "\f0a2" !important; } a#user-activity:before { content: "\f039" !important; } a#user-xprofile:before { content: "\f007" !important; } .tabs.info dd.active a, .tabs.info li.active a, #object-nav ul li.current a, #object-nav ul li.selected a, .tabs.info dd.active, .tabs.info li.active, #object-nav ul li.selected, #object-nav ul li.current { border: none !important; } div#item-nav { margin-top: -10%; width: 160%; } a#user-messages:before { content: "\f003" !important; } a#user-friends:before { content: "\f0c0" !important; } a#user-friends:before { content: "\f118" !important; } a#user-forums:before { content: "\f0e6" !important; } .item-list-tabs.no-ajax#object-nav a:before { font: 400% "FontAwesome"; content: "\f144"; display: block; text-align: center; transition: all 0.4s ease-in-out 0s; color: transparent; width: 60px; height: 56px; margin-bottom: -4px; } a#user-settings:before { content: "\f013" !important; } div.item-list-tabs#object-nav { margin-top: 0; color: #6f6f6f; display: block; height: 40px; line-height: 40px; padding: 15px 50px 50px; font-size: 12px; text-transform: uppercase; font-family: inherit; font-weight: normal; } .tabs.info dd.active a:after, #object-nav ul li.current a:after, #object-nav ul li.selected a:after { display: none; } div#item-nav { margin-top: -10%; width: 160%; padding-bottom: 60px; } .tabs.info, #object-nav ul { list-style: none; border-bottom: solid 1px #e6e6e6; display: block; height: 100px; padding: 0; margin-bottom: 40px; } div#bp_core_members_widget-7 { color: #777777; margin-top: 25%; } .buddypress .widgets-container.sidebar_location { margin-top: 25%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, yes, here its the code, just change it for another FontAwesome icon coe 🙂
COPY CODE.membership .bullet-item:before { font: 13px 'FontAwesome'; content: "\f058" !important; color: #0095c2; margin-right: 6px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try adding this to style.css
COPY CODE.generic-button.not_friends a:before { content: '\e8f6' !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css
COPY CODE.product_meta { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css
COPY CODE.dl-horizontal dt { text-align: left !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try maybe
COPY CODE.ppt { display: none !important; }
If not please share admin credentials so i can check it out 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please try by adding this to style.css
COPY CODE.eight.columns.login-buttons { margin-left: -40%; }
Let me know if it helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this would change it
COPY CODEp.price .amount { font-size: 24px; }
Please add to style.css
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, try adding this to style.css of child theme
COPY CODE.kleo-main-header .nav li.kleo-megamenu.mega-2-cols>.dropdown-menu { margin-left: -10px !important; }
Let me know if it helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, here it is 🙂
COPY CODE.rtmedia-comment-content a { color: white !important; }
Add to style.css
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, question 3 was included in the css but seems like it didnt take effect, try this:
COPY CODEa#recently-active-members { display: none !important; } a#popular-members { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, maybe try
COPY CODEdiv#item-body { margin-top: -730px !important; position: absolute !important; margin-left: 665px !important; } div#object-nav { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, this will delete both
COPY CODEul.button-group.radius.right { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, by default the menu at mobile its not sticky, so i think it was custom code you added
Maybe this css helpsCOPY CODE.is-sticky { position: fixed; margin: 0px !important; z-index: 1; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, didnt know you wanted to change the name, please use this and change as you prefer 🙂
COPY CODE.username a { color: white; }
Also thought you might want to change the button attached so here it is
COPY CODEa.btn.btn-highlight.form-submit { color: white; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.Laura
ModeratorHello, please try adding this to style.css of child theme 🙂
COPY CODEdt.bp-field-name { text-align: left; } a#recently-active-members { display: none; } a#popular-members { display: none; }
About 2 this is not available right now
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, it does change, if you mean that is not changing when you save it, try:
COPY CODE#profile .generic-button a, .tabs.pill.custom dd:not(.active) a, #profile .callout, .regulartab dt, .regulartab dd { background: rgba(0, 0, 0, 0.46) !important; color: #ffffff !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, you can use this css
COPY CODEdiv#item-header-avatar img { background-color: black; }
🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, here:
You can change the info that displays under the name and the details field by adding this to your sweetdate-child/functions.php file:COPY CODE//members page fields add_action('after_setup_theme','kleo_my_member_data'); function kleo_my_member_data() { global $kleo_config; //this is the details field, right now it take the "About me" field content $kleo_config['bp_members_details_field'] = 'About me'; //this display the fields under the name, eq: 36 / Woman / Divorced / Berlin. Modify with the names of the fields you want to appear there $kleo_config['bp_members_loop_meta'] = array( 'I am a', 'Marital status', 'City' ); }
Also if the fields don’t appear add this line, reload the members page and you can remove the line after that(we have added a caching on those fields for better performance):
COPY CODEdelete_transient( 'kleo_bp_meta_fields' );
Just replace those profile field names in the code with our one custom ones.
Let me know if it helps 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Laura
ModeratorHello, please add this to style.css, will change the grey background, let me know if you also want it with tabs
COPY CODE.lesson .section-container.container { background-color: white !important; }
For the background, find it at the section background in visual composer, click the pen icons 🙂
Please check the attachment, that’s how you change tab title 🙂Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
Attachments:
You must be logged in to view attached files.Laura
ModeratorHello, done, moneypack users will see the create group button, done by adding this to header.php
COPY CODE<?php if ( pmpro_hasMembershipLevel(array(3))) { ?> <style> form#groups-directory-form .button:nth-child(2n) { display: initial !important; } </style> <?php } ?>
And this to style.css
COPY CODEform#groups-directory-form .button:nth-child(2n) { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts