Forum Replies Created

Viewing 40 posts - 481 through 520 (of 1,218 total)
  • Author
  • in reply to: The dreaded login #73270
     sharmstr
    Moderator

    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>&nbsp;&nbsp;&nbsp;&nbsp;<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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Formatting problems on variable products + megamenu #73263
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Banner Logo Issue #73256
     sharmstr
    Moderator

    try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Change Tab line height ? #73108
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Customizing tabs #73107
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: long name broke page layout #73105
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Live Notification in Header #72995
     sharmstr
    Moderator

    Add 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 solution

    This 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.
    in reply to: Geodirectory listing page fullwidth map #72863
     sharmstr
    Moderator

    Remove the map widget from GD Listing Top Section and add this to your child’s functions.php file.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Remove the “remember me” text and checkbox #72851
     sharmstr
    Moderator

    Its 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: sidebar login form #72692
     sharmstr
    Moderator

    Remove the css I gave you and change the code to this

    COPY CODE
    add_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> &nbsp;<?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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: php error – pro membership and rtmedia #72691
     sharmstr
    Moderator

    Change display to false in wp-config: https://codex.wordpress.org/WP_DEBUG

    COPY CODE
    
    define('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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    You can try echoing out the classes within a span tag

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Custom Page for Portfolio Bug (?) #72556
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: User Profile Details #72551
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Try putting this in your child theme’s funtions.php file. Then reload theme options and try saving again.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: breadcrumb separator #72519
     sharmstr
    Moderator

    Try 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Deleting Archive for category" text #72439
     sharmstr
    Moderator

    You need the entire kleo_title function.

    COPY CODE
    
    function 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: sidebar login form #72326
     sharmstr
    Moderator

    Assuming 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 CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Only login and register from facebook #72264
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: embed popup login box on front page #72234
     sharmstr
    Moderator

    Register 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Hey Norman,

    This should work

    COPY CODE
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Facebook Login – Increase Button Size #72149
     sharmstr
    Moderator

    Its 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Adjust image in homepage background #72148
     sharmstr
    Moderator

    See 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: 0

    Save 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Formatting problems on variable products + megamenu #72147
     sharmstr
    Moderator

    Those 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: making Contact form 7 columns #72140
     sharmstr
    Moderator

    Give 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    Revolution slider has been a shortcode since day 1. 🙂

    Anyhow, add this to your functions.php file

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How can I change the icon on grid hover #71926
     sharmstr
    Moderator

    Use this in your child’s functions.php file and change the + to whatever you want.

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Changing group profile icon colour when hovering #71882
     sharmstr
    Moderator

    The 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: background image external url #71842
     sharmstr
    Moderator

    Go 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How to make the logo larger than the navigation height #71696
     sharmstr
    Moderator

    You 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: how to change the size icon "user-xprofile" ? #71611
     sharmstr
    Moderator

    Put 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: wrong colored squares #71609
     sharmstr
    Moderator

    The 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: caret color menu item hover #71605
     sharmstr
    Moderator

    I 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Change Fonts #71589
     sharmstr
    Moderator

    Try putting this in your child theme functions.php file, then save your theme options again

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Dynamic Navbar #71406
     sharmstr
    Moderator

    Ahhh. 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: turning off js animation in activity and gallery? #71328
     sharmstr
    Moderator

    I’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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Link BuddyPress and Membership #71324
     sharmstr
    Moderator

    You can try this in your functions.php file

    COPY CODE
    
    add_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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Incorrect URL Generated #71317
     sharmstr
    Moderator

    Go 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 solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 481 through 520 (of 1,218 total)

Log in with your credentials

Forgot your details?