Forum Replies Created

Viewing 40 posts - 1,321 through 1,360 (of 2,990 total)
  • Author
  • in reply to: Only use Facebook to login #140871
     Radu
    Moderator

    You can edit the login page with visual composer but it’s not what are you looking for, with the next css forms will be hidden and there will be only login with facebook button

    Add this css to wp-admin -> theme options -> quick css

    COPY CODE
    
    .page-id-261 .login-form-wrapper {
        display: none;
    }
    

    page id 261 represents the id of the current register page.

    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: urgent! my theme option page displayed is scattered #140606
     Radu
    Moderator
    Not marked as solution
    in reply to: Alignment of xProfile Fields #140599
     Radu
    Moderator

    Hm… unable to reproduce that on my locall install

    Maybe you need this, you can control the width of that tables

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
        width: 35%;
    }
    #buddypress div.profile .dl-horizontal dd {
        width: 64%;
        margin-left:38%;
    }
    

    If you have possibility to put your website somewhere to can take a look at it will be nice and faster problem resolution

    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: 406 code with popup login #140587
     Radu
    Moderator

    Try solution two please : https://www.tipsandtricks-hq.com/apache-mod-security-update-how-to-fix-error-406-or-not-acceptable-issue-259

    You run on localhost ? if yes create on your webserver a file named from example phpinfo.php and inside it add this

    COPY CODE
    
    <?php
    phpinfo();
    ?>
    

    and provide to me the source of that file to can take a look at the settings

    Also you can try to de-activate all plugins and test again

    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: How do i change background for all woocommerce pages #140551
     Radu
    Moderator

    Hi,

    Using this kind of CSS code

    COPY CODE
    
    .woocommerce #main, .woocommerce #main section.container-wrap.main-color {
        background: red;
    }
    

    Adding .woocommerce class before any css declaration will by applied only to woocommerce pages

    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: 406 code with popup login #140530
     Radu
    Moderator

    Hmm

    That can be a server setting like you have provided

    You can try to add this to .htaccess file / reference : http://wordpress.stackexchange.com/questions/99602/cant-access-admin-not-acceptable

    COPY CODE
    
    <IfModule mod_security.c>
    SecFilterEngine Off
    </IfModule>
    

    Also you can try the solutions from there : http://stackoverflow.com/questions/12928360/how-can-i-disable-mod-security-in-htaccess-file

    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: Automatic Search Results #140528
     Radu
    Moderator

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    
    #header #ajax_search_container a.ajax_view_all, #header #ajax_search_container .ajax_search_content a {
        font-size: 12px;
    }
    
    
    

    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: Social Article bug #140524
     Radu
    Moderator

    Hi,

    Take it !

    COPY CODE
    
    .sa-field-front .select2-container--default .select2-selection--single, .sa-field-front .select2-container--default .select2-selection--multiple, .sa-field-front .select2-container--default.select2-container--focus .select2-selection--multiple { background:#333;}
    
    .sa-field-content input {
        background: #333 !important;
    }
    .sa-field-content .sa-field-front .wp-editor-container { background:#333 !important;}
    
    div.mce-panel iframe {
    background:#333 !important;
    }
    
    body#tinymce {
        background: #333;
    }
    
    .qq-uploader {
        background: #333;
    }
    
    .article-content #post-maker-container .options-content {
        background: #333;
    }
    
    div.mce-toolbar-grp {
        background: #d8d8d8 !important;
    }
    

    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: BuddyPress Profile photos do not work #140519
     Radu
    Moderator

    Hi,

    I found this http://docs.wp-rocket.me/article/16-disabling-lazyload-on-specific-posts

    And you can try with this function

    COPY CODE
    
    add_filter( 'wp', '__deactivate_rocket_lazyload_if_page' );
    function __deactivate_rocket_lazyload_if_page() {
    	if( bp_current_component() ) {
    		add_filter( 'do_rocket_lazyload', '__return_false' );
    	}
    }
    

    Let me know

    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: Theme options meta box for Custom post types #140348
     Radu
    Moderator

    Hi,

    Add this function to wp-content/thems/kleo-child/function.php

    COPY CODE
    
    // Add Theme Settings to CPT //
    // Replace yourCPTslug with your CPT slug //
    function my_cpt_sq_metabox_general_settings($post_types) {
    
        $post_types[] = 'yourCPTslug';
        return $post_types;
    }
    
    add_filter('sq_metabox_general_settings', 'my_cpt_sq_metabox_general_settings');
    

    Replace yourCPTslug with your cpt slug

    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: BuddyPress Profile photos do not work #140328
     Radu
    Moderator

    Ok try to run the function from bp-custom file

    So go to /wp-content/plugins/ look for bp-custom.php and paste in it, if there is no file create it

    COPY CODE
    
    First, bp-custom.php runs from the /wp-content/plugins/ folder and is therefore independent from your theme. This is useful for adding code snippets that are BuddyPress-specific. Also, this code will always load regardless of what theme you are using.
    

    https://codex.buddypress.org/themes/bp-custom-php/

    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: Remove Social icons mouse over animation in top bar #140146
     Radu
    Moderator

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    #top-social li a,#top-social li {width: 33px !important;}
    

    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: Questions Regarding Default Customizations #140106
     Radu
    Moderator
    Not marked as solution
    in reply to: Questions Regarding Default Customizations #139927
     Radu
    Moderator
    Not marked as solution
    in reply to: Remove title header from portfolio and post pages? #139690
     Radu
    Moderator

    This is the selector to removing post titles, it works i’ve tested on your website

    COPY CODE
    
    .single-post h1.page-title {
        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
    in reply to: Overlapping title category in News Highlight #139671
     Radu
    Moderator
    Not marked as solution
    in reply to: View button #139525
     Radu
    Moderator

    Try with thsese,

    COPY CODE
    
    @media(min-width:991px){
        #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:200px;max-width:400px}
        .fluid-width-video-wrapper {padding:10% !important;}
    }
    

    If it’s not ok play with the values until you match your wished values

    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: Add Nofollow in TOP social links? #139495
     Radu
    Moderator

    Hi,

    Add this function to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    
    /***************************************************
    :: Get social profiles
    ***************************************************/
    
    if (!function_exists('kleo_get_social_profiles')):
    
    	function kleo_get_social_profiles($args=false)
    	{
    		$output = '';
    		$icons = '';
    		$all_options = get_option("kleo_".KLEO_DOMAIN);
    		
    	    $defaults 	 = array(
    					'container'	=> 'ul',
    					'item_tag' => 'li',
    					'target' => '_blank'
    	    );
    		// Parse incomming $args into an array and merge it with $defaults
    		$args = wp_parse_args( $args, $defaults );
    		$args = apply_filters('kleo_get_social_profiles_args', $args);
    		
    		//get social data from theme options
    		if (!empty($all_options)) {
    			foreach ($all_options as $k => $opt)
    			{
    				if (substr( $k, 0, 7 ) === 'social_' && !empty($opt) ) {
    					$k = str_replace('social_','',$k);
    					$title = str_replace(
    							array('gplus', 'vimeo-squared', 'pinterest-circled', 'instagramm'), 
    							array('Google+', 'Vimeo','Pinterest', 'Instagram'), 
    							$k
    						);
    
    					$icons .= '<' . $args['item_tag'] . '>';
    					$icons .= '<a rel="nofollow" target="'.$args['target'].'" href="'.$opt.'"><i class="icon-'.$k.'"></i><div class="ts-text">'.ucfirst($title).'</div></a>';
    					$icons .= '</' . $args['item_tag'] . '>';
    				}
    			}
    		}
    		
    		$icons = apply_filters('kleo_get_social_profiles', $icons);
    		if ($icons != '') {
    			$output .= '<' . $args['container'] . ' class="kleo-social-icons">';
    			$output .= $icons;
    			$output .= '</' . $args['container'] . '>';
    		}
    		
    		return $output;
    		
    	}
        add_shortcode( 'kleo_social_icons', 'kleo_get_social_profiles' );
    
    endif;
    
    

    Will add no follow for all social icons

    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: Search bar suggestions #139494
     Radu
    Moderator
    Not marked as solution
    in reply to: Questions Regarding Default Customizations #139486
     Radu
    Moderator
    Not marked as solution
    in reply to: SEARCH BAR #139452
     Radu
    Moderator

    Use this instead

    COPY CODE
    
    .kleo-search-form #searchform .input-lg {
        border-radius: 0;
        margin: 0 !important;
        height: 45px !important;
    }
    
    .kleo-search-form #searchform .input-group-btn { top:10px !important;}
    
    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: View button #139451
     Radu
    Moderator

    Try this instead

    COPY CODE
    
     @media(min-width:991px){
    
        #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:480px}
        .fluid-width-video-wrapper {padding:20% !important;}
    }
    
    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: View button #139312
     Radu
    Moderator

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    @media(min-width:991px){
    
        #buddypress ul.item-list li .activity-inner .fluid-width-video-wrapper iframe {max-height:300px}
    
    }
    

    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 BAR #139299
     Radu
    Moderator
    COPY CODE
    
    .kleo-search-form #searchform .input-lg {
        border-radius: 0;
        margin: 0 !important;
        height: 45px !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: Search function #139298
     Radu
    Moderator

    Add also this css

    COPY CODE
    
    #socket form#searchform, #socket .kleo-search-form #searchform .input-lg {
        opacity: 1 !important;
    }
    
    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: Top bar: Increase height #139296
     Radu
    Moderator

    Replace with this

    COPY CODE
    
    .header-color .top-menu li > a, .header-color #top-social li a {
        line-height: 100px;
    }
    

    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: Titles in bold #139291
     Radu
    Moderator

    In wp-admin -> theme options -> general settings -> quick css

    Let me know

    try also with this

    COPY CODE
    
    h1.product_title {font-size: 3em !important;line-height: 2em !important;}
    
    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: Server Error on Fresh Install #139279
     Radu
    Moderator

    The debug.log contains nothing regarding to the import problem.

    You have added those to .php.ini on your root installation ?

    COPY CODE
    
    max_execution_time = 60
    memory_limit = 256M
    post_max_size = 65M
    upload_max_filesize = 64M
    

    Those have been loaded ? you can verify by creating a file named phpinfo.php and inside it put this

    COPY CODE
    
    <?php phpinfo(); ?>
    

    Then open that page http://yourdomain.com/phpinfo.php and check for the values that you have added in php.ini are the same.

    If yes, copy the php.ini file to wp-admin folder

    Cheers

    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: Probleme with Buddy Press Profil #139271
     Radu
    Moderator

    Hi,

    That cannot be aligned because it’s wrapped in a container that generates a padding and margins and use this instead

    COPY CODE
    
    
    .checkbox legend {font-size: 2em;color : black;font-weight: bold;margin-left: 10px;padding: 20px 0;list-style-type: circle;display: list-item;}
    
    

    It will differentiates for the values

    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 ICON ISSUE #139253
     Radu
    Moderator

    Hi,

    Use this selector

    COPY CODE
    
    ul#menu-megaprimarymenu .caret:after{ color:red !important;}
    

    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: SEARCH BAR #139186
     Radu
    Moderator

    Use this CSS, it’s applied only to that page if you want to have that style site-wide remove .page-id-8803 from the CSS

    COPY CODE
    
    .page-id-8803 .kleo-search-form #searchform .input-lg {
        border-radius: 0;
    }
    .page-id-8803 .kleo-search-form {
        max-width: 500px;
    }
    

    Cheers

    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: Top bar: Increase height #139136
     Radu
    Moderator

    Hi,

    Try with this CSS

    COPY CODE
    
    .social-header.header-color {
        min-height: 100px;
    }
    

    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
     Radu
    Moderator

    Hi,

    Use those CSS’s

    COPY CODE
    
    .news-focus.kleo-transform .one-by-one-animated .start-animation .el-appear, 
    .news-focus.kleo-transform .kleo-thumbs-animated.th-appear img.start-animation, .kleo-transform .start-animation.el-appear {
        -webkit-animation: none;
        -o-animation: none;
        animation: none;
        opacity: 1;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
    
    .news-ticker.kleo-transform .one-by-one-animated .start-animation .el-appear, 
    .news-ticker.kleo-transform .kleo-thumbs-animated.th-appear img.start-animation, .kleo-transform .start-animation.el-appear {
        -webkit-animation: none;
        -o-animation: none;
        animation: none;
        opacity: 1;
        -moz-transform: none;
        -webkit-transform: none;
        -o-transform: none;
        transform: 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: Search function #139086
     Radu
    Moderator

    Replace the code that i have provided to you with this

    COPY CODE
    
    #socket form#searchform, #socket .kleo-search-form #searchform .input-lg {
        height: 40px !important;
        max-width: 350px;
        margin: 0 auto;
    }
    
    #socket .kleo-search-form #searchform .input-group-btn { top:8px; }
    

    Replace max-width: 350px; with your desired max width value

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Show featured video full width before title and content #139075
     Radu
    Moderator

    Hi,

    Try with this function and add video to media tab oembed

    COPY CODE
    
    add_action('kleo_before_main', 'sq7rdu_show_video_featured_before_content');
    function sq7rdu_show_video_featured_before_content()
    {
        $video_embed_url =  get_post_meta(get_the_ID(), '_kleo_embed', true  ) ;
    
        if (is_single()) {
            if ( ! empty( $video_embed_url ) ) {
                echo apply_filters('kleo_oembed_video', $video_embed_url);
                }
            }
    }
    

    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: Css chante the colors of the progress bar #139043
     Radu
    Moderator
    Not marked as solution
    in reply to: Reduce footer #138940
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    div#footer .template-page {
        padding: 0 !important;
    }
    

    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: How modificate BP profile Members to see Fields #138915
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    #buddypress div.profile .dl-horizontal dt {
        width: 35%;
    }
    #buddypress div.profile .dl-horizontal dd {
        width: 64%;
        margin-left:38%;
    }
    

    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: Probleme with Buddy Press Profil #138906
     Radu
    Moderator

    Hi,

    Try to hide that with this CSS

    COPY CODE
    
    
    .field-visibility-settings, .field-visibility-settings-toggle, .field-visibility-settings-notoggle {
        display: none !important;
    }
    
    

    If you want to modify this directly to the php files just copy this file wp-content/themes/kleo/buddypress/members/single/profile/edit.php to /wp-content/themes/kleo-child/buddypress/members/single/profile/edit.php

    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: Side Menu Alteration #138903
     Radu
    Moderator

    Hi,

    So practically you want to have more button before the icon ? If yes use the next php function that you will have to add wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    if( ! function_exists( 'kleo_side_menu_button' ) ) {
        /**
         * Add side button to menu
         * @param string $items
         * @param object $args
         * @return string
         */
        function kleo_side_menu_button ( $items, $args )
        {
            if ($args->theme_location == 'primary')
            {
                $items .= '<li id="nav-menu-item-side" class="menu-item">' .
                    '<a href="#" class="open-sidebar" onclick="javascript:return false;">' .
                    'MORE  <i class="icon-menu"></i>' .
                    '</a>' .
                    '</li>';
            }
            return $items;
        }
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 40 posts - 1,321 through 1,360 (of 2,990 total)

Log in with your credentials

Forgot your details?