Forum Replies Created

Viewing 40 posts - 161 through 200 (of 480 total)
  • Author
  • in reply to: Increase number of members in groups #30421
     Abe
    Keymaster

    I am doing this and it is a simple line edit. Here is how it should look like

    COPY CODE
    
        jQuery('.pinkCircle').one('inview', function (event, visible) {
            jQuery(".pinkCircle").knob({
                'min':0,
                'max':500,
                'readOnly': true,
                'width': 60,
                'height': 60,
                'fgColor': kleoFramework.mainColor,
                'dynamicDraw': true,
                'thickness': 0.10,
                'tickColorizeValues': true
            })
        });
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Add kleo meta box to custom post type #28801
     Abe
    Keymaster

    Hi, That won’t work since overriding is only available for page templates.
    You can do something like in your child theme functions:

    add_filter( 'kleo_meta_boxes', 'kleo_my_metaboxes' );
    function kleo_my_metaboxes( array $meta_boxes ) {
    
    	// Start with an underscore to hide fields from custom fields list
    	$prefix = '_kleo_';
    	
    	$meta_boxes[] = array(
    		'id'         => 'general_settings',
    		'title'      => 'Theme General settings',
    		'pages'      => array( 'custom_post_name' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => true, // Show field names on the left
    		'fields'     => array(
    			array(
    				'name' => 'Media',
    				'desc' => '',
    				'id'   => 'kleomedia',
    				'type' => 'tab'
    			),
    			array(
    				'name' => 'Slider',
    				'desc' => 'Used when you select the Gallery format. Upload an image or enter an URL.',
    				'id'   => $prefix . 'slider',
    				'type' => 'file_repeat',
    				'allow' => 'url'
    			),
    			array(
    				'name' => 'Video oEmbed URL',
    				'desc' => 'Used when you select Video format. Enter a Youtube, Vimeo, Soundcloud, etc URL. See supported services at http://codex.wordpress.org/Embeds.',
    				'id'   => $prefix . 'embed',
    				'type' => 'oembed',
    			),
    				
    			array(
    				'name' => 'Video Self hosted(mp4)',
    				'desc' => 'Used when you select Video format. Upload your MP4 video file. Setting a self hosted video will ignore Video oEmbed above.',
    				'id'   => $prefix . 'video_mp4',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Video Self hosted(ogv)',
    				'desc' => 'Used when you select Video format. Upload your OGV video file.',
    				'id'   => $prefix . 'video_ogv',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Video Self hosted(webm)',
    				'desc' => 'Used when you select Video format. Upload your WEBM video file.',
    				'id'   => $prefix . 'video_webm',
    				'type' => 'file',
    			),
    				
    			array(
    				'name' => 'Audio',
    				'desc' => 'Used when you select Audio format. Upload your audio file',
    				'id'   => $prefix . 'audio',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Display settings',
    				'desc' => '',
    				'id'   => 'kleodisplay',
    				'type' => 'tab'
    			),
    			array(
    				'name' => 'Centered text',
    				'desc' => 'Check to have centered text on this page',
    				'id'   => $prefix . 'centered_text',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Top bar status',
    				'desc' => 'Enable/disable site top bar',
    				'id'   => $prefix . 'topbar_status',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '1', 'name' => 'Visible'),
    						array('value' => '0', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
    			array(
    				'name' => 'Hide Header',
    				'desc' => 'Check to hide whole header area',
    				'id'   => $prefix . 'hide_header',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Hide Footer',
    				'desc' => 'Check to hide whole footer area',
    				'id'   => $prefix . 'hide_footer',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Hide Socket area',
    				'desc' => 'Check to hide the area after footer that contains copyright info.',
    				'id'   => $prefix . 'hide_socket',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Custom Logo',
    				'desc' => 'Use a custom logo for this page only',
    				'id'   => $prefix . 'logo',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Custom Logo Retina',
    				'desc' => 'Use a custom retina logo for this page only',
    				'id'   => $prefix . 'logo_retina',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Transparent Main menu',
    				'desc' => 'Check to have Main menu background transparent.',
    				'id'   => $prefix . 'transparent_menu',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    				
    				
    			array(
    				'name' => 'Title section',
    				'desc' => '',
    				'id'   => 'kleoheader',
    				'type' => 'tab'
    			),
    			array(
    				'name' => 'Hide the title',
    				'desc' => 'Check to hide the title when displaying the post/page',
    				'id'   => $prefix . 'title_checkbox',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Breadcrumb',
    				'desc' => '',
    				'id'   => $prefix . 'hide_breadcrumb',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '0', 'name' => 'Visible'),
    						array('value' => '1', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
    				
    			array(
    				'name' => 'Hide information',
    				'desc' => 'Check to hide contact info in title section',
    				'id'   => $prefix . 'hide_info',
    				'type' => 'checkbox',
    				'value' => '1'
    			)
    		)
    	);
    	return $meta_boxes;
    }
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: how to remove this notice from the dashboard #28673
     Abe
    Keymaster

    Hi, you can disable those required plugins info by adding this code in your child theme in functions.php

    COPY CODE
    
    add_action('after_setup_theme', 'kleo_my_remove_notice', 14);
    function kleo_my_remove_notice() {
        global $kleo_theme;
        remove_action( 'tgmpa_register', array($kleo_theme,'required_plugins') );
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Remove "4U" heart #28296
     Abe
    Keymaster

    Those icons are changed by CSS by adding a different fontawesome code to be used.
    Example:

    COPY CODE
    
    #friends-my-friends:before {
        content: "\f005";
    }
    #requests:before {
        content: "\f00b";
    }
    

    http://fontawesome.io/3.2.1/cheatsheet/

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Animated number question #28055
     Abe
    Keymaster

    Hi there, Thanks for your appreciation, it means a lot.
    The animated numbers shortcode supports adding a shortcode inside it that generates a number, for example you can use shortcodes like:

    COPY CODE
    
    [kleo_total_members]
    [kleo_bbpress_stats type=topics]
    [kleo_bp_member_stats field="User type" value="Agent"]
    

    Full example:
    [kleo_animate_numbers animation="animate-when-almost-visible" timer="3000"][kleo_total_members][/kleo_animate_numbers]

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Item likes for custom post types #28047
     Abe
    Keymaster

    Hi, I think all you need to do is add this in your child theme in functions.php

    COPY CODE
    
    add_filter('kleo_likes_post_types', 'kleo_my_custom_like');
    function kleo_my_custom_like( $post_types ) {
      $post_types[] = 'fiction';
    
      return $post_types;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Theme has a problem when look the pics #27027
     Abe
    Keymaster

    You can hide that with a small CSS code added in Sweetdate – Quick css

    COPY CODE
    
    .single .article-media {display: none;}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: rtMedia gallery issues #26145
     Abe
    Keymaster

    Hi,
    1. I remember talking about this in the past with rtmedia guys and their solution was to copy also the media-gallery-item.php in the child theme.

    2. we fixed that. until next update you can add this css in quick css box

    COPY CODE
    
    #buddypress .rtmedia-container .rtmedia-list .rtmedia-list-item.masonry-brick a h4,
    #buddypress .rtmedia-activity-container .rtmedia-list .rtmedia-list-item.masonry-brick a h4,
    #buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.masonry-brick a h4 {
        font-size: inherit;
        color: #fff;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Hide member pages for users #26137
     Abe
    Keymaster

    Hi, Buddypress components can be disabled from Settings – Buddypress.
    To restrict different Buddypress pages you can install Paid Memberships Pro and a set of options will appear in Theme options – Memberships

    2. To remove that functionality add this code in your child theme functions.php

    COPY CODE
    
    add_action('init', 'my_remove_nav');
    function my_remove_nav() {
        remove_action('bp_after_member_body', 'kleo_bp_add_profile_navigation');
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Styling issues #25939
     Abe
    Keymaster

    Until next update, for the terms styling please add this CSS

    COPY CODE
    
    .woocommerce .form-row.terms .checkbox {
        padding: 0;
    }
    .woocommerce #payment .terms, .woocommerce-page #payment .terms {
        margin: 0;
        padding: 0;
        text-align: left;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Display informations in search page #25700
     Abe
    Keymaster

    In profile page you need to edit the member-header.php template from members/single folder and put some buddypress functions to show fields you like.
    function is like this:

    COPY CODE
    
    bp_member_profile_data( 'field=About Me' );
    

    You will see the exact code in that file as an example

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Styling issues #25589
     Abe
    Keymaster

    For #2

    COPY CODE
    
    #buddypress ul.acfb-holder li.friend-tab {
        padding: 6px 7px;
    }
    #buddypress li.friend-tab:nth-child(2) img.avatar {
        margin-right: 6px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Styling issues #25584
     Abe
    Keymaster

    Hi, This topic somehow skipped our queue

    For #1 add this to your child theme style.css file until 1.6.3 update

    COPY CODE
    
    #buddypress div.message-search input[type=text] {
        padding: 0;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Cometchat chat link in profile #25502
     Abe
    Keymaster

    See this code that should be add in child theme/functions.php

    COPY CODE
    
    add_action('bp_member_header_actions', 'kleo_cometchat_button', 100);
    function kleo_cometchat_button() {
        echo '<div class="generic-button"><a onclick="javascript:jqcc.cometchat.chatWith(\'' . bp_displayed_user_id() . '\');" href="#">Chat with me</a></div>';
    }
    

    I must remind you that custom changes to the theme is not support responsibility and you should hire a developer to help.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Where are uploaded image sized defined? #25035
     Abe
    Keymaster

    to change that size you should add this in the functions.php from the child theme

    COPY CODE
    
    add_action( 'after_setup_theme', 'kleo_setup_image_size', 11 );
    function kleo_setup_image_size() {
    set_post_thumbnail_size( 672, 900 );
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    @tgker you need to do it by CSS, something like

    .kleo-isotope > .kleo-masonry-item, .kleo-isotope > li {
        width: 50%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Problems with the quick profile navigation #23842
     Abe
    Keymaster

    I think the instructions are pretty straight-forward, so if the group names are exactly as you provided here is the code:

    COPY CODE
    
    //my changes to profile tabs 
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs() 
    {
    	global $bp_tabs;
    	$bp_tabs = array();
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' =>  'Allmänt (Primary)',
    			'group' => 'Allmänt (Primary)',
    			'class' => 'regulartab'
    	);
    
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' => 'Om',
    			'group' => 'Om',
    			'class' => 'regulartab'
    	);
    	$bp_tabs[] = array(
    			'type' => 'regular',
    			'name' => 'Socialt',
    			'group' => 'Socialt',
    			'class' => 'regulartab'
    	);
    	/* rtMedia tab - only if plugin installed */
    	if (class_exists('RTMedia')) 
    	{
    		$bp_tabs['rtmedia'] = array(
    				'type' => 'rt_media',
    				'name' => __('My work', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    
    	/* Bp-Album tab - only if plugin installed */
    	elseif (function_exists('bpa_init')) {
    		$bp_tabs['bp-album'] = array(
    				'type' => 'bp_album',
    				'name' => __('My photos', 'kleo_framework'),
    				'class' => 'mySlider'
    		);
    	}
    	
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to use bigest photo thumbnails in wall? #23826
     Abe
    Keymaster

    that is just a matter of preference and it is changed by CSS

    COPY CODE
    
    .rtmedia-activity-container .rtmedia-list .rtmedia-item-thumbnail img {
        max-width: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Remove \"Match\" #23111
     Abe
    Keymaster

    That is changed by CSS

    COPY CODE
    
    .circular-item .hearts {
        background: url("http://path_to_new_image.png");
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: kleo_only_guests shortcode #23103
     Abe
    Keymaster

    Hi there, sorry for the late reply. The problem here is simple, you button shortcode is incomplete. This is how it should be:

    COPY CODE
    
    [kleo_only_guests]
    
    [kleo_button url="werewr" style="standard" size="standard" round="0" icon="0,before" target="_self"] Button Text [/kleo_button]
    
    [/kleo_only_guests]
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How can i reduce the size of logged on user image?? #22701
     Abe
    Keymaster

    Hi, for the post image please add this CSS in WP Admin – Theme options – General – Quick css

    COPY CODE
    
    img.attachment-kleo-full-width {
        width: auto;
    }
    

    Other links you posted, if you edit those pages, you should use Visual composer and change the number of items to show per line

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Formatting/reply box only showing half way #22542
     Abe
    Keymaster

    Give me a link to your site to take a look and temp admin. For the attachments to show like on this support site, add this in your kleo-child/functions.php

    COPY CODE
    
    //Attachments 
    
    add_action('wp_footer', 'kleo_my_attach_popup', 100);
    function kleo_my_attach_popup() {
    ?>
    <script>
    /* WordPress Gallery */
    jQuery(".bbp-attachments a[href$=jpg], .bbp-attachments a[href$=JPG], .bbp-attachments a[href$=jpeg], .bbp-attachments a[href$=JPEG], .bbp-attachments a[href$=png], .bbp-attachments a[href$=gif], .bbp-attachments a[href$=bmp] :has(img)").magnificPopup({
    	type: 'image',
    	mainClass: 'mfp-gallery-pop',
    	navigateByImgClick: true,
    	gallery: {
    		enabled: true,
    		navigateByImgClick: true,
    		preload: [0,1]
    	},
    	image: {
    	verticalFit: false
    	}
    });
    </script>
    <?php
    }
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Why case-sensitive e-mail fields? #22158
     Abe
    Keymaster

    Hi Adam we fixed this and it will be available in our next theme version. If you want to fix it until then you need to edit functions.php and change around line 692 to this:

    COPY CODE
    
    if ( ! isset( $user_data->user_email ) || strtolower( $user_data->user_email ) != strtolower( $_POST['email'] ) ) {
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Profile Field Descriptions below select boxes #21759
     Abe
    Keymaster

    try to wrap that code in:

    COPY CODE
    
    jQuery(document).ready(function() {
    
    //code here
    
    });
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Problems with the quick profile navigation #21663
     Abe
    Keymaster

    Hi, Your fields are case sensitive and must be exactly how you added them in Users – Profile fields and your code must match that name exactly in the group attribute

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
        $bp_tabs = array();
        $bp_tabs[] = array(
                'type' => 'cite',
                'name' =>  __('Looking for', 'kleo_framework'),
                'group' => 'Looking for',
                'class' => 'citetab'
        );
     
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => "fysiskt",
                'group' => 'fysiskt',
                'class' => 'regulartab'
        );
     
     
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Homepage Background Height on Mobile Device #21063
     Abe
    Keymaster

    Hi,

    @tubiao
    please adjust that by CSS

    COPY CODE
    
    .page-template-page-templatesfront-page-php .rev_slider_wrapper {
        min-height: 713px;
    }
    


    @veryeligible2014

    See my answer here: https://archived.seventhqueen.com/forums/topic/how-to-hide-menu-in-mobile-for-not-logged-in
    You can increase device screen width to target larger devices.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: How to hide menu in mobile for not logged in. #21056
     Abe
    Keymaster

    Hi, that will show since is the container of the menu and not a link you have added a condition to.
    Hide that using css media query:

    COPY CODE
    
    
    @media only screen and (max-width: 480px) {
     .contain-to-grid {
        display: none;
    }
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

     Abe
    Keymaster

    Hi, yes we used some customizations to the default menu settings for the Mega menu option. If you want to disable add this code in your child theme functions.php

    COPY CODE
    
    add_action('after_setup_theme', 'kleo_remove_mega_menu', 11);
    function kleo_remove_mega_menu() {
      remove_theme_support( 'kleo-mega-menu' );
    }
    

    Also until 1.5.1 version replace these two file contents with the ones attached:
    – wp-content/themes/kleo/functions.php
    – wp-content/themes/kleo/lib/theme-functions.php

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    Attachments:
    You must be logged in to view attached files.
    in reply to: Different color for box and size of the header #20586
     Abe
    Keymaster

    hi @geanguru
    You should style it by adding this CSS in your kleo-child/style.css and by changing the color

    COPY CODE
    
    .main-color article.post-item.kleo-masonry-item .post-content {
        background: none repeat scroll 0 0 #ccc;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Match problem, #20581
     Abe
    Keymaster

    Hi there, Following the example in the above topic your code that goes to sweetdate-child/functions.php should look like this:

    COPY CODE
    
    //change matching system
    add_action('after_setup_theme','kleo_my_match');
    function kleo_my_match() {
    global $kleo_config;
    $kleo_config['matching_fields']['starting_score'] = 1;
    //If we want to match by members sex. values: 0|1
    $kleo_config['matching_fields']['sex_match'] = 0;
    //single value fields like select, textbox,radio
    $kleo_config['matching_fields']['single_value'] = array (
        'Marital status' => 5,
        'Sect' => 5,
        'Age' => 5,
        'City' => 2,
        'Country' => 5,
    );
    //multiple values fields like multiple select or checkbox
    $kleo_config['matching_fields']['multiple_values'] = array (
        'Interests' => 10,
        'Looking for' => 10,
    );
    }
    

    You should continue the example above with your desired fields to affect the mathching

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Can you display products as a list? #20322
     Abe
    Keymaster

    Hi, try this CSS

    COPY CODE
    
    .woocommerce ul.products li.product figure {
        display: none!important;
    }
    

    For any customizations you should try changing it by css or making structure changes to the templates inside the woocommerce folder inside the theme.

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Editing groups nav #20315
     Abe
    Keymaster

    hi, do it using CSS

    COPY CODE
    
    #object-nav ul li#home-groups-li {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Re: Login CSS #20301
     Abe
    Keymaster

    Hi, that requires some custom CSS codes from your side to add. Things like that aren’t covered by this support forum.
    See the CSS for this matter

    COPY CODE
    
    #header .eight.columns:not(.login-buttons), #header .four.columns {
        display: none;
    }
    .eight.columns.login-buttons {
        width: 100%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Title with icon – logo ? #20160
     Abe
    Keymaster

    Hi @valuser
    Thanks for your appreciation.

    You can remove the logo from Theme options – General if you want to.
    That is the right location to add something extra next to the logo but I think that the problem is the inline margin 27px you added which stays the same on header resize.
    I tested it with this image added right after the logo img tag and worked well:

    COPY CODE
    
    <img src="https://0.s3.envato.com/files/94479738/thumb.png">
    

    Also add this CSS so the image will stay just after the main logo:

    COPY CODE
    
    .logo img {display:inline-block;}
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Re: Landing Page #20052
     Abe
    Keymaster

    Hi, our support team can help with any problem you might encounter with the theme. Any other custom changes you need to develop yourself.
    here is the css for this matter

    COPY CODE
    
    #logo {display:none;}
    .contain-to-grid {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Icons won't display in Firefox #19992
     Abe
    Keymaster

    Hi there, I see all the resources load correctly. try to disable rtmedia just as a test. It that does not help try to add this directives in your .htaccess file from the root of the WordPress install, before or after WordPress generated lines:

    COPY CODE
    
    AddType application/vnd.ms-fontobject .eot
    AddType font/ttf .ttf
    AddType font/otf .otf
    AddType font/x-woff .woff
    AddType image/svg+xml .svg
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Less space between menu and H1 on page #19915
     Abe
    Keymaster

    You can adjust the space by adding this CSS in your child theme style.css

    COPY CODE
    
    #main {
        padding-top: 20px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: edit profile fields #19727
     Abe
    Keymaster

    Hi, Until next update please add this CSS that will fix that problem

    COPY CODE
    
    #profile-edit-form ul.button-nav li {
      padding: 3px 0;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: A Splash or Landing page Only! #19628
     Abe
    Keymaster

    Hi, you need to edit header.php and around line 20 you should see the logo image that should be modified like this and change the links accordingly to your needs:

    COPY CODE
    <?php
    if ( is_user_logged_in() ) {
    ?>
    <a href="<?php echo get_home_url(); ?>"><img id="logo_img" src="<?php echo sq_option('logo',get_template_directory_uri().'/assets/images/logo.png'); ?>" width="294" height="108" alt="<?php bloginfo('name'); ?>"></a>
    <?php
    } else {
    ?>
    <a href="<?php echo get_home_url(); ?>"><img id="logo_img" src="<?php echo sq_option('logo',get_template_directory_uri().'/assets/images/logo.png'); ?>" width="294" height="108" alt="<?php bloginfo('name'); ?>"></a>
    <?php
    };
    ?>
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    in reply to: Adding extra tabs _ stuck (sos)! #19625
     Abe
    Keymaster

    Hi, this should be the code with the Base, More and Test profile group name as they should be defined in Users – Profile fields

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_custom_tabs');
    function kleo_my_custom_tabs()
    {
        global $bp_tabs;
        $bp_tabs = array();
    
     
        $bp_tabs['base'] = array(
                'type' => 'regular',
                'name' => "Base",
                'group' => 'Base',
                'class' => 'regulartab'
        );
     
        /* rtMedia tab - only if plugin installed */
        if (class_exists('RTMedia'))
        {
            $bp_tabs['rtmedia'] = array(
                    'type' => 'rt_media',
                    'name' => __('My work', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
     
        /* Bp-Album tab - only if plugin installed */
        elseif (function_exists('bpa_init')) {
            $bp_tabs['bp-album'] = array(
                    'type' => 'bp_album',
                    'name' => __('My photos', 'kleo_framework'),
                    'class' => 'mySlider'
            );
        }
        
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => "More",
                'class' => 'regulartab'
        );
        $bp_tabs[] = array(
                'type' => 'regular',
                'name' => "Test",
                'class' => 'regulartab'
        );
    
    }
    

    So make sure the names are the actual group names

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

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

Viewing 40 posts - 161 through 200 (of 480 total)

Log in with your credentials

Forgot your details?