Forum Replies Created

Viewing 40 posts - 921 through 960 (of 2,990 total)
  • Author
  • in reply to: Header issue #164063
     Radu
    Moderator

    Hi,

    There seems to be a color issue,

    Add this CSS

    COPY CODE
    
    .header-color.social-header {
        background: #f3f3f3;
    }
    
    .header-color.social-header a {
        color: black !important;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Inability to browse for photos on mobile devices #164062
     Radu
    Moderator

    Hi,

    I’m not able to test thru a webview but try to add this CSS to wp-admin -> theme options -> Quick CSS

    COPY CODE
    
    .moxie-shim.moxie-shim-html5 {
        text-align: center;
        margin: 0 auto !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Activity stream problem #164060
     Radu
    Moderator

    Hi,

    Fixed

    I’ve added this CSS in quick CSS area.

    COPY CODE
    
    
    #buddypress #whats-new-options {
        height: auto !important;
        overflow: hidden;
        display:block;
        visibility:visible;
    }
    

    This will be fixed in next theme update.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Activity Timeline #164059
     Radu
    Moderator
    Not marked as solution
    in reply to: Some Questions #164047
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Issue wity dailymotion videos #163900
     Radu
    Moderator

    Hi,

    Please add this code to Quick CSS

    COPY CODE
    
    
    article iframe[src*="dailymotion"] { 
    width:100%;
    max-height:480px;
    } 
    
    

    This will be fixed in future theme updates, until then please use this CSS.

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Notifications #163827
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    
    li.kleo-notifications-nav .kleo-submenu-item > a {
        line-height: 20px;
    }
     .navbar .sa-notification a {
        overflow: hidden;
        text-overflow: ellipsis;
        display: inline-block !important;
        width: 50px;
        white-space: nowrap;
        vertical-align: bottom;
    }
    .navbar .sa-notification a.social-delete {
        width: 20px !important;
        text-align: center;
        border-radius: 50%;
        top: 6px;
         display: none !important;
    }
    .kleo-notifications-nav ul.submenu-inner.has-notif li:before {
        top: 4px;
    }
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Some functionality missing in my swwetdate theme #163742
     Radu
    Moderator

    Just add this CSS to wp-admin -> theme options -> Styling Options -> Quick css

    COPY CODE
    
    #whats-new-options {
        opacity: 1 !important;
        display: block !important;
    }
    

    NOTE : Child theme needs to be installed and activated.

    That’s all

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Activity Timeline #163737
     Radu
    Moderator
    Not marked as solution
    in reply to: 3 or 4 collum footer pages #163667
     Radu
    Moderator
    Not marked as solution
    in reply to: Some Questions #163652
     Radu
    Moderator
    Not marked as solution
    in reply to: Home-Register Demo Page is not Responsive #163648
     Radu
    Moderator

    Hi,
    I see the only way to can have original image ratio it’s to set via CSS background-size contain, in this way the image will be wrapped into the view port.

    COPY CODE
    
    @media(max-width:991px){
        article#post-9468 section.container-wrap.main-color {
        background-size: contain !important;
        background-position: center center !important;
    }
    }
    
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Issue wity dailymotion videos #163645
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    
    div#buddypress .activity iframe[src*="dailymotion"] { 
    width:100%;
    max-height:480px;
    } 
    
    

    The CSS will be added to wp-admin -> theme options -> general settings -> quick CSS
    NOTE : Child theme needs to be installed and activated.

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Can the quick look product image be removed? #163452
     Radu
    Moderator

    Hi,

    Try with this CSS

    COPY CODE
    
    .post-type-archive-product #productModal .col-lg-7{
        display: none;
    }
    
    .post-type-archive-product #productModal .col-lg-5 {
        width: 100%;
    }
    

    It should be ok I’ve tested on your site live.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Trouble with Custom Sidebar not Showing #163424
     Radu
    Moderator

    Hi,

    Just log in via FTP to your site in wp-content/themes/kleo-child/ and create a file named sidebar.php and paste the next code in it

    COPY CODE
    
    <?php
    /**
     * The Sidebar containing the main widget area
     *
     * @package WordPress
     * @subpackage Kleo
     * @since Kleo 1.0
     */
    ?>
    <?php
    $sidebar_classes = apply_filters( 'kleo_sidebar_classes', '' );
    $sidebar_name = apply_filters( 'kleo_sidebar_name', '0' );
    ?>
    
    <?php
    	if( $_SERVER['REQUEST_URI'] == '/blog/') {
    		get_sidebar('nice-bar');
    	}
    ?>
    
    <div class="sidebar sidebar-main <?php echo $sidebar_classes; ?>">
    	<div class="inner-content widgets-container">
    		<?php
    		if( $_SERVER['REQUEST_URI'] == '/blog/') {
    			get_sidebar('BLOG-sidebar');
    		}
    		?>
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    
    <div class="sidebar sidebar-main <?php echo $sidebar_classes; ?>">
    	<div class="inner-content widgets-container">
    		<?php generated_dynamic_sidebar( $sidebar_name );?>
    	</div><!--end inner-content-->
    </div><!--end sidebar-->
    

    NOTE : Child theme needs to be installed and activated.

    Let me know
    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: WooCommerce single product page customize #163417
     Radu
    Moderator

    Hi,

    For having description outside the tabs under product image use the next function

    COPY CODE
    
    function woocommerce_product_description_outside_tabs() {
    ?>
    <div>
        <?php the_content(); ?>
    </div>
    <?php
    }
    
    add_action('woocommerce_after_single_product','woocommerce_product_description_outside_tabs' );
    

    For any other customizations the responsible templates are located here:
    /wp-content/themes/kleo/woocommerce/ and for the single product page the responsible file is : /wp-content/themes/kleo/woocommerce/content-single-product.php

    To can have changes over theme update you should copy the files into child theme in the same location ( wp-content/themes/kleo-child/woocommerce/ )

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Mobile Sticky Header #163416
     Radu
    Moderator
    Not marked as solution
    in reply to: Adding Ajax Search Pro shortcode to top menu #163401
     Radu
    Moderator

    Hi,

    Try again using this code instead of previous one.

    COPY CODE
    
    if ( ! function_exists( 'kleo_search_menu_item' ) ) {
    	/**
    	 * Add search to menu
    	 *
    	 * @param string $items
    	 * @param object $args
    	 *
    	 * @return string
    	 */
    	function kleo_search_menu_item( $items, $args ) {
    		if ( sq_option( 'ajax_search', 1 ) == 'logged_in' && ! is_user_logged_in() ) {
    			return $items;
    		}
    
    		$location = sq_option( 'menu_search_location', 'primary' );
    
    		if ( $args->theme_location == $location ) {
    			$form = echo do_shortcode('[wpdreams_ajaxsearchpro id=1]') );
    			$items .= '<li id="nav-menu-item-search" class="menu-item kleo-search-nav">' . $form . '</li>';
    		}
    
    		return $items;
    	}
    }
    

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Transparent drop down menu color #163307
     Radu
    Moderator

    I see

    TRy to use this css

    COPY CODE
    
    ul.submenu-inner.has-notif li a {
        color: #555 !important;
    }
    

    If this will not work please provide to me an account that has that notification to can fix it live

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search results / share buttons in profiles #163302
     Radu
    Moderator

    Hi,

    That can be achieved by hooking the bp_after_member_home_content action

    So the code it’s next if the buttons have a shortcode just replace that.

    COPY CODE
    
    function add_share_buttons_after_member_profile() {
    
        $shortcode = do_shortcode('[kleo_button href="#" icon="0" letter_spacing=""]');
        echo $shortcode;
    }
    add_action('bp_after_member_home_content', 'add_share_buttons_after_member_profile');
    
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
    in reply to: changing the color #163294
     Radu
    Moderator

    Hi,

    We can not offer continuous long term custom support for that kind of thigs.

    Those are not theme problems or product question, those are custom needs for your project, I’ve offered you multiple times custom solutions.

    From now for that kind of needs, I recommend you to hire a developer.

    I hope you understand.

    And you can hide htose using this css

    COPY CODE
    
    h2.woocommerce-loop-category__title {
        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 solution
    in reply to: WooCommerce Bug? #163157
     Radu
    Moderator

    Extracted from the GitHub.com issue ticket

    You will have to paste this line in wp-content/themes/kleo-child/functions.php

    COPY CODE
    add_filter( 'woocommerce_checkout_update_customer_data', '__return_false' );

    NOTE : Child theme needs to be installed and activated.

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Problem with buddypress #163133
     Radu
    Moderator
    Not marked as solution
    in reply to: Header options and customization #163129
     Radu
    Moderator
    Not marked as solution
    in reply to: Adding Ajax Search Pro shortcode to top menu #163128
     Radu
    Moderator

    Hi,

    You can try to edit that function like that, give a try

    COPY CODE
    
    function kleo_search_menu_item( $items, $args ) {
    	if ( sq_option( 'ajax_search', 1 ) == 'logged_in' && ! is_user_logged_in() ) {
    		return $items;
    	}
    
    	$location = sq_option( 'menu_search_location’, 'primary' );
    
    	if ( $args->theme_location == 'top' ) {
    		$form = echo do_shortcode('[wpdreams_ajaxsearchpro id=1]) );
    		$items .= " . $form . "; 
    	}
    
    	return $items;}
    
    }
    

    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Problem Ajax Search Thema #163121
     Radu
    Moderator
    Not marked as solution
    in reply to: Some Questions #163120
     Radu
    Moderator
    Not marked as solution
    in reply to: Mobile Sticky Header #163042
     Radu
    Moderator
    Not marked as solution
    in reply to: Activity Feed Images Don’t Load #163031
     Radu
    Moderator

    I see,

    Tried again but no success, try to add this code to htaccess file

    COPY CODE
    
    <IfModule mod_headers.c>
      <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
        Header set Access-Control-Allow-Origin "*"
      </FilesMatch>
    </IfModule>
    

    It should solve the insecure content notice from console and also the rtmedia loading problem.
    Let me know

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator

    Hi,

    You can alternate the kleo avatar function using next code

    COPY CODE
    
    
    if ( ! function_exists( 'kleo_menu_user_avatar' ) ) {
        /**
         * Render user avatar menu item
         *
         * @param string $item_output
         * @param  array $item
         * @param  integer $depth
         * @param  object $args
         * @return string
         */
        function kleo_menu_user_avatar( $item_output, $item, $depth, $args ) {
    
            $output = '';
    
            if ( is_user_logged_in() ) {
    
                $url = bp_loggedin_user_domain();
    
                $attr_title = strip_tags( $item->attr_title );
                $output .= '<a title="' . bp_get_loggedin_user_fullname() . '" class="kleo-bp-user-avatar' . ( $args->has_children && in_array($depth, array(0,1)) ? ' js-activated' : '' ) . '" href="' . $url . '" title="' . $attr_title .'">'
                    .  '<img src="' . esc_attr( bp_get_loggedin_user_avatar(array('width' => 25, 'height' => 25, 'html' => false)) ) . '" class="kleo-rounded" alt="">' . ($item->attr_title != '' ? ' ' . $item->attr_title : '');
    
                $output .= ( $args->has_children && in_array($depth, array(0,1))) ? ' <span class="caret"></span></a>' : '</a>';
    
                return $output;
            } elseif ( $args->has_children && in_array( $depth, array( 0, 1 ) ) ) {
                return $item_output;
            } else {
                return '';
            }
        }
    }
    

    The function needs to be pasted in wp-content/themes/kleo-child/functions.php

    You can adapt the CSS classes easily by editing the existing ones

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Header options and customization #162918
     Radu
    Moderator
    Not marked as solution
    in reply to: How to disable zoom for WooCommerce Product page #162912
     Radu
    Moderator
    Not marked as solution
    in reply to: BuddyApp theme overriding css #162892
     Radu
    Moderator
    Not marked as solution
    in reply to: Some Questions #162816
     Radu
    Moderator
    Not marked as solution
    in reply to: Membership Settings #162770
     Radu
    Moderator
    Not marked as solution
    in reply to: Transparent drop down menu color #162762
     Radu
    Moderator

    Hi,

    Please add this CSS to QuickCSS area from wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    #buddypress #whats-new-content #whats-new-options, #buddypress #whats-new-content.active #whats-new-options {
        display:block !important;
        height:inherit !important;
        opacity:1 !important;
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
Viewing 40 posts - 921 through 960 (of 2,990 total)

Log in with your credentials

Forgot your details?