Forum Replies Created
-
Author
-
sharmstrModerator
Copy /kleo/page-parts/general-popups.php to your child theme and edit the create account link. Change it to this
COPY CODE<em><?php _e( "or", 'kleo_framework' );?></em> <a href="http://www.yoursite.com/membership-account/membership-levels/" class="new-account"><?php _e( "Create an account", "kleo_framework" ); ?></a>
Keep in mind that you need to check for any changes to that page after every Kleo update to ensure you are running the latest code.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this
COPY CODE.price del { display: none; } .single_variation { margin-bottom: 30px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratortry this css
COPY CODE#logo_img { max-height: 176px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this instead
COPY CODE.nav-tabs li a { line-height: 1px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this in quick css. Adjust as necessary.
COPY CODE.nav-tabs li { width: 200px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this css
COPY CODE.buddypress div#item-header div#item-meta p { overflow: visible; word-wrap: break-word; } #main .alternate-color h1 { max-width: 80% !important; word-wrap: break-word; } .widget.buddypress div.item-title { word-wrap: break-word; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 15, 2015 at 15:20 in reply to: PMPro Checkout Page's terms of service box overlaps it space in Chrome #73101sharmstrModeratorTry this
COPY CODE#pmpro_license { width: 90%; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorAdd an icon to the live notification menu item. See attached.
Wrap the Navigation Label in em
COPY CODE<em>I'm highlighted</em>
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
Attachments:
You must be logged in to view attached files.sharmstrModeratorRemove the map widget from GD Listing Top Section and add this to your child’s functions.php file.
COPY CODEadd_action('kleo_before_content','add_map'); function add_map() { if (is_post_type_archive() && in_array(get_post_type(), geodir_get_posttypes())) { echo do_shortcode('[gd_homepage_map width=100% height=600px maptype=roadmap zoom=1 autozoom=true child_collapse=true scrollwheel=false marker_cluster=1]'); } }
Be sure to test all pages. It was a bear trying to figure out how to only add it to the listing page. I dont see that they have a basic function like “if_page(‘listing’)”.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorIts in /page-parts/general-popups.php. But I suggest hiding it with css
COPY CODE#login_form .checkbox { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 13, 2015 at 14:51 in reply to: Changing the width size and number of members per page on Members List #72847sharmstrModeratorTry this in quick css
COPY CODE#members-dir-list .kleo-isotope>.kleo-masonry-item, #members-dir-list .kleo-isotope>li { width: 50% !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorRemove the css I gave you and change the code to this
COPY CODEadd_action('init','move_fb_button'); function move_fb_button() { remove_action('bp_before_login_widget_loggedout', 'kleo_fb_button' ); add_action('bp_after_login_widget_loggedout', 'kleo_fb_button' ); } function kleo_get_fb_button() { ob_start(); ?> <div class="kleo-fb-wrapper text-center"> <div class="hr-title hr-full"><abbr> <?php echo __("or", "kleo_framework");?> </abbr></div> <div class="gap-20"></div> <a href="#" class="kleo-facebook-connect btn btn-default "><i class="icon-facebook"></i> <?php _e("Log in with Facebook", 'kleo_framework');?></a> </div> <?php $output = ob_get_clean(); return $output; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorChange display to false in wp-config: https://codex.wordpress.org/WP_DEBUG
COPY CODEdefine('WP_DEBUG_DISPLAY', false);
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 12, 2015 at 14:49 in reply to: How to add Revolution Slider on the Member-activity page #72688sharmstrModeratorYou can try echoing out the classes within a span tag
COPY CODEadd_action('kleo_before_content','slider_on_activity'); function slider_on_activity() { if ( bp_current_component() == 'activity' && !bp_is_user()) { echo '<span class="hidden-sm hidden-md hidden-lg visible-xs">'; putRevSlider("HomeFullwidth"); echo '</span>'; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this css
COPY CODE.page-id-7425 .col-sm-12 { padding: 0 !important; } .page-id-7425 .row { margin-right: 0 !important; margin-left: 0 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this css
COPY CODE#buddypress #members-list .update { display: none !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 11, 2015 at 14:37 in reply to: There was a problem with your action. Please try again or reload the page. #72550sharmstrModeratorTry putting this in your child theme’s funtions.php file. Then reload theme options and try saving again.
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry this instead
COPY CODE.breadcrumb .sep:before { content: "\e899" !important; font-family: fontello; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou need the entire kleo_title function.
COPY CODEfunction kleo_title() { $output = ""; if (is_tag()) { $output = single_tag_title('',false); } elseif(is_tax()) { $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy')); $output = $term->name; } elseif ( is_category() ) { $output = single_cat_title('', false); } elseif (is_day()) { $output = __('Archive for date:','kleo_framework')." ".get_the_time('F jS, Y'); } elseif (is_month()) { $output = __('Archive for month:','kleo_framework')." ".get_the_time('F, Y'); } elseif (is_year()) { $output = __('Archive for year:','kleo_framework')." ".get_the_time('Y'); } elseif (is_author()) { $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author')); $output = __('Author Archive','kleo_framework')." "; if( isset( $curauth->nickname ) ) { $output .= __('for:','kleo_framework')." ".$curauth->nickname; } } elseif ( is_archive() ) { $output = post_type_archive_title( '', false ); } elseif (is_search()) { global $wp_query; if(!empty($wp_query->found_posts)) { if($wp_query->found_posts > 1) { $output = $wp_query->found_posts ." ". __('search results for:','kleo_framework')." ".esc_attr( get_search_query() ); } else { $output = $wp_query->found_posts ." ". __('search result for:','kleo_framework')." ".esc_attr( get_search_query() ); } } else { if(!empty($_GET['s'])) { $output = __('Search results for:','kleo_framework')." ".esc_attr( get_search_query() ); } else { $output = __('To search the site please enter a valid term','kleo_framework'); } } } elseif ( is_front_page() && !is_home() ) { $output = get_the_title(get_option('page_on_front')); } elseif ( is_home() ) { if (get_option('page_for_posts')) { $output = get_the_title(get_option('page_for_posts')); } else { $output = __( 'Blog', 'kleo_framework' ); } } elseif ( is_404() ) { $output = __('Error 404 - Page not found','kleo_framework'); } else { $output = get_the_title(); } if (isset($_GET['paged']) && !empty($_GET['paged'])) { $output .= " (".__('Page','kleo_framework')." ".$_GET['paged'].")"; } return $output; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorAssuming you’re asking how to move the fb login button from the top of the widget to the bottom, try this in your child’s function.php file.
COPY CODEadd_action('init','move_fb_button'); function move_fb_button() { remove_action('bp_before_login_widget_loggedout', 'kleo_fb_button' ); add_action('bp_after_login_widget_loggedout', 'kleo_fb_button' ); }
And this in your quick css
COPY CODE.widgets-container .kleo-fb-wrapper { margin-top: 10px !important; } .widget_bp_core_login_widget .gap-20, .widget_bp_core_login_widget .hr-title { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI suppose you can hide the credential forms and the registration form using css
COPY CODE.kleo-pop-title-wrap, #login_form, .widget_bp_core_login_widget .gap-20, .widget_bp_core_login_widget .hr-title, #bp-login-widget-form, #register-page, .registration .hr-full { display: none; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorRegister isn’t a button. Here’s the css for Login
COPY CODE.main-color #bp-login-widget-submit { background-color: red !important; }
You can also just change the row style in vc.
Not sure what you mean by blend. Let me know and I’ll try to help.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 7, 2015 at 15:46 in reply to: How to add Revolution Slider on the Member-activity page #72169sharmstrModeratorHey Norman,
This should work
COPY CODEadd_action('kleo_before_content','slider_on_activity'); function slider_on_activity() { if ( bp_current_component() == 'activity' && !bp_is_user()) { putRevSlider("HomeFullwidth"); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorIts not possible to show a message.
The button size is dependent on the font size. Put this in your quick css and adjust as necessary.
COPY CODE.kleo-facebook-connect.btn.btn-default { font-size: 40px; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorSee if this is what you want.
Go into row settings, and set the following
Full height row
content position middle
background style: image
full-width background: enabled
fixed bg: disabled
top/bottom padding: 0Save the row, then click on the gear icon at the top of the vc editor and add this css
COPY CODE.vc_row-o-full-height { min-height: 100vh !important; }
If that’s not what you want, please provide a link.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorThose are original prices. Its letting your shoppers know that your item is on sale. You can hide them with some css
COPY CODE.price del { display: none; }
You can make your mega menu width wider to accomodate your larger font with this css. Adjust as neccessary
COPY CODE.kleo-main-header .nav li.kleo-megamenu.mega-2-cols>.dropdown-menu { width: 600px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorGive your divs IDs and add some css to your quick css to float the divs
COPY CODE<div id="col1"> <p>Your Name (required)<br /> [text* your-name] </p> <p>Your Email (required)<br /> [email* your-email] </p> </div> <div id="col2"> <p>Subject<br /> [text your-subject] </p> <p>Your Message<br /> [textarea your-message] </p> <p>[submit "Send"]</p> </div>
COPY CODE#col1, #col2 { float: left; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
August 6, 2015 at 21:32 in reply to: How to add Revolution Slider on the Member-activity page #72071sharmstrModeratorRevolution slider has been a shortcode since day 1. 🙂
Anyhow, add this to your functions.php file
COPY CODEadd_action('kleo_before_content','slider_on_activity'); function slider_on_activity() { if ( bp_current_component() == 'activity') { putRevSlider("HomeFullwidth"); } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorUse this in your child’s functions.php file and change the + to whatever you want.
COPY CODEadd_action( 'after_setup_theme', 'change_hover_element', 10 ); function change_hover_element() { global $kleo_config; $kleo_config['image_overlay'] = '<span class="hover-element"><i>+</i></span>'; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorThe group icons change color on hover just like the profile icons do. Its dependent on your hover colors that you’ve set in theme options.
http://seventhqueen.com/themes/kleo/groups/gladiator/
Or you can do with with css
COPY CODE#buddypress #item-nav ul li a:hover:before { color: red !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorGo into row settings and add an Extra class name. Save the row. Click on the gear icon at the top of the VC editor and add the following css
COPY CODE.my-extra-class-name { background-image: url(http://www.external-site.com/image.jpg); background-attachment: scroll; background-size: cover; }
Change .my-extra-class-name to whatever you named your class and change the url to your image.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou can try this css. Change the px sizes accordingly.
COPY CODE#logo_img { max-height: 120px !important; height: 120px !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorPut this in your quick css. Change 5 whatever you want.
COPY CODE#buddypress div#item-nav ul li a:before{font-size:5em;}
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorThe class for the forum
COPY CODE#bbpress-forums .hentry div.bbp-reply-content:before, #bbpress-forums .hentry div.bbp-topic-content:before { background: #333 !important; border-color: #B39F83 !important; }
I dont know what dropdown menu that is. Can you translate?
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI lied !
COPY CODE.open .caret:after { color: red !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorTry putting this in your child theme functions.php file, then save your theme options again
COPY CODEadd_filter( 'kleo_theme_options_ajax', '__return_false' );
If that doesnt work, clear your cache and/or purge your cdn if you have one in place.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorAhhh. Kleo can tell difference when you use light text or dark text. Its a new thing that I forgot about. Since changing it to white text it changes the css class from .on-dark-bg to .on-light.bg. So, try this instead for the second bit of code I gave you.
COPY CODE.navbar-transparent.on-light-bg .navbar .kleo-main-header.header-scrolled .navbar-nav>li>a, .navbar-transparent.on-light-bg .navbar .kleo-main-header.header-scrolled .navbar-nav .caret:after { color: #000 !important; }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorI’m not getting the gaps that you are, so it hard to help. Maybe try this
COPY CODE#buddypress .rtmedia-container .rtmedia-list .rtmedia-list-item { margin-bottom: 0px !important; margin-right: 0px !important; }
To remove the one by one animation, you’ll have to edit two files
/kleo/rtmedia/media/media-gallery-item.php. Remove ‘el-zero-fade’ from the li class (around line 16).
/kleo/rtmedia/media/media-gallery.php. Remove the ‘one-by-one-general’ class from the ul (around line 41)
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorYou can try this in your functions.php file
COPY CODEadd_action('user_register', 'kleo_pmpro_default_level'); function kleo_pmpro_default_level($user_id) { pmpro_changeMembershipLevel(1,$user_id); }
Change 1 to the id of the level you want to assign
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
sharmstrModeratorGo to /kleo/woocommerce/myaccount/my-address.php and change this line (around line 46) from
COPY CODE<a>" class="edit"><?php _e( 'Edit', 'woocommerce' ); ?></a>
to this
COPY CODE<a>" class="edit"><?php _e( 'Edit', 'woocommerce' ); ?></a>
Verify that it works and I’ll submit a permanent change.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionThis support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com
-
AuthorPosts