Forum Replies Created

Viewing 40 posts - 4,001 through 4,040 (of 11,328 total)
  • Author
  • in reply to: Page title area responsive image #75349
     sharmstr
    Moderator
    This reply has been set as private.
    in reply to: full width image header using blog post #75347
     sharmstr
    Moderator

    Yeah, WP takes over whatever page you assign as your blog page.

    The best way to do this (IMHO) is import the Home Pinterest page: http://seventhqueen.com/themes/kleo/pinterest/ which will get you close. Then edit the row that has the Kleo Posts container so it’s not full width by setting Inner Container to Yes. Then add a button at the bottom of the page that links to page 2 of your blog page (blog/page/2/). Obviously page 2 wont have the banner at the top, but that’s probably a good thing since the user has already seen it and you’ll reclaim some screen space.

    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: Page title area responsive image #75343
     sharmstr
    Moderator

    put .blog in front of it.

    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: Disable Top Navigation #75321
     sharmstr
    Moderator

    Because you can’t see the open icons which is what you need to click on. Put this in your quick css

    COPY CODE
    
    .header-color .navbar-nav li .caret:after {
        color: #fff !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: product variables not working #75259
     sharmstr
    Moderator

    You’ll have to ftp

    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: Disable Top Navigation #75256
     sharmstr
    Moderator

    Set the menu item url to #

    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: How do I get "My Account" in top navigation #75254
     sharmstr
    Moderator

    Go back to menus, click on Screen Options in the upper right. Enable and use Kleo, not buddypress.

    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

    Bring up the register page in page editor and scroll down to theme general settings > title section.

    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: product variables not working #75252
     sharmstr
    Moderator

    All of my sites did. Perhaps you dont have your api set up correctly.

    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

    The frontend editor works poorly at best. I always use the backend editor.

    I didnt say Theme Options. I said Theme General Settings in the page editor. Its under the WYSIWYG box.

    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: Drop Shadow to Row #75223
     sharmstr
    Moderator

    Find some css that will give you that effect (google), then go into your row settings and an add extra class name. then click on the gear icon to add your custom css, specifying the extra class name you used. Third and Forth here: https://wpbakery.atlassian.net/wiki/pages/viewpage.action?pageId=524319

    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: Revolution Slider for attached images in posts #75222
     sharmstr
    Moderator

    Ah.

    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: Revolution Slider for attached images in posts #75217
     sharmstr
    Moderator

    There are gallery shortcodes, but if you put it in single-cpt.php there’s no way to set the images. You are better off adding the theme general setting metabox to your cpt so you can add the image in the cpt editor. Put this in your child theme’s functions.php file and change the post type name.

    COPY CODE
    
    add_filter( 'kleo_meta_boxes', 'cpt_kleo_metaboxes' );
    /**
     * Define the metabox and field configurations.
     *
     * @param  array $meta_boxes
     * @return array
     */
    function cpt_kleo_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( 'customposttypename' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => true, // Show field names on the left
    		'fields'     => array(
    			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' => 'Transparent Main menu color',
                    'desc' => '',
                    'id'   => $prefix . 'transparent_menu_color',
                    'type' => 'select',
                    'options' => array(
                        array('value' => 'white', 'name' => 'White'),
                        array('value' => 'black', 'name' => 'Black')
                    ),
                    'value' => 'white'
                ),
                array(
                    'name' => 'Social share',
                    'desc' => 'Display social share at bottom of the single page.',
                    'id'   => $prefix . 'blog_social_share',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => '1', 'name' => 'Visible'),
                        array('value' => '0', 'name' => 'Hidden')
                    ),
                    'value' => ''
                ),
    				
    				
    			array(
    				'name' => 'Title section',
    				'desc' => '',
    				'id'   => 'kleoheader',
    				'type' => 'tab'
    			),
                array(
                    'name' => 'Section Layout',
                    'desc' => '',
                    'id'   => $prefix . 'title_layout',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => 'regular', 'name' => 'Regular'),
                        array('value' => 'center', 'name' => 'Centered'),
                        array('value' => 'right_breadcrumb', 'name' => 'Right Breadcrumb')
                    ),
                    'value' => ''
                ),
                array(
                    'name' => 'Custom page title',
                    'desc' => 'Set a custom page title here if you need.',
                    'id'   => $prefix . 'custom_title',
                    'type' => 'text',
                ),
    			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'
                ),
                array(
                    'name' => 'Top Padding',
                    'desc' => 'Put a value without px. Example: 20<br>Default value is taken from Theme options - Header - Title/Breadcrumb section',
                    'id'   => $prefix . 'title_top_padding',
                    'type' => 'text',
                ),
                array(
                    'name' => 'Bottom Padding',
                    'desc' => 'Put a value without px. Example: 20<br>Default value is taken from Theme options - Header - Title/Breadcrumb section',
                    'id'   => $prefix . 'title_bottom_padding',
                    'type' => 'text',
                ),
                array(
                    'name' => 'Text Color',
                    'desc' => 'Override the default text color as set in Theme options - Styling options - Title',
                    'id'   => $prefix . 'title_color',
                    'type' => 'colorpicker',
                    'value' => ''
                ),
                array(
                    'name' => 'Background Image',
                    'desc' => 'Choose a background image for the section.',
                    'id'   => $prefix . 'title_bg',
                    'type' => 'file',
                    'bg_options' => 'yes'
                ),
                array(
                    'name' => 'Background Color',
                    'desc' => 'If an image is not set the color will be used',
                    'id'   => $prefix . 'title_bg_color',
                    'type' => 'colorpicker',
                    'value' => ''
                ),
    
                array(
                    'name' => 'Media',
                    'desc' => '',
                    'id'   => 'kleomedia',
                    'type' => 'tab'
                ),
                array(
                    'name' => 'Show media on post page',
                    'desc' => 'If you want to show image/gallery/video/audio before the post on single page',
                    'id'   => $prefix . 'post_media_status',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => '1', 'name' => 'Yes'),
                        array('value' => '0', 'name' => 'No')
                    ),
                    'value' => ''
                ),
                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 <a target="_blank" href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a>.',
                    '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' => 'Video Self hosted Poster',
                    'desc' => 'Used to show before the video loads',
                    'id'   => $prefix . 'video_poster',
                    'type' => 'file',
                ),
    
                array(
                    'name' => 'Audio',
                    'desc' => 'Used when you select Audio format. Upload your audio file',
                    'id'   => $prefix . 'audio',
                    'type' => 'file',
                )
    		)
    	);
    
    	$meta_boxes[] = array(
    		'id'         => 'post_meta',
    		'title'      => 'Theme Post Settings',
    		'pages'      => array( 'post' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => true, // Show field names on the left
    		'fields'     => array(
    
    				array(
    				'name' => 'Hide post meta',
    				'desc' => 'Check to hide the post meta when displaying a post',
    				'id'   => $prefix . 'meta_checkbox',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Related posts',
    				'desc' => 'Display related posts at bottom of the single post display',
    				'id'   => $prefix . 'related_posts',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '1', 'name' => 'Visible'),
    						array('value' => '0', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
    		),
    	);
    	
    	
    	
    	$meta_boxes[] = array(
    		'id'         => 'post_layout',
    		'title'      => 'Post Layout',
    		'pages'      => array( 'post', 'product', 'portfolio' ), // Post type
    		'context'    => 'side',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    			
    			array(
    				'name' => 'Post layout',
    				'desc' => '',
    				'id'   => $prefix . 'post_layout',
    				'type' => 'select',
    				'options' => array(
    						array('value' => 'default', 'name' => 'Default'),
    						array('value' => 'right', 'name' => 'Right Sidebar'),
    						array('value' => 'left', 'name' => 'Left sidebar'),
    						array('value' => 'no', 'name' => 'Full width, no sidebar'),
    						array('value' => '3lr', 'name' => '3 columns, Right and Left sidebars'),
    						array('value' => '3ll', 'name' => '3 columns, 2 Left sidebars'),
    						array('value' => '3rr', 'name' => '3 columns, 2 Right sidebars'),
    					),
    				'value' => 'right'
    			),
    
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'header_content',
    		'title'      => 'Header content(optional)',
    		'pages'      => array( 'post', 'page', 'product' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    	
    				array(
    				'name' => 'Header content',
    				'desc' => 'This will be displayed right after the menu. Shortcodes are allowed',
    				'id'   => $prefix . 'header_content',
    				'type' => 'textarea',
    			),
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'bottom_content',
    		'title'      => 'Bottom content(optional)',
    		'pages'      => array( 'post', 'page', 'product' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    	
    				array(
    				'name' => 'Bottom content',
    				'desc' => 'This will be displayed right after the generated page content ends. Shortcodes are allowed',
    				'id'   => $prefix . 'bottom_content',
    				'type' => 'textarea',
    			),
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'clients_metabox',
    		'title'      => __('Clients - link', 'kleo_framework'),
    		'pages'      => array( 'kleo_clients' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields' => array(
    			array(
    				'name' => 'Client link',
    				'desc' => 'http://example.com',
    				'id'   => $prefix . 'client_link',
    				'type' => 'text',
    			),
    		)
    	);
            
    	$meta_boxes[] = array(
    		'id'         => 'testimonials_metabox',
    		'title'      => __('Testimonial - Author description', 'kleo_framework'),
    		'pages'      => array( 'kleo-testimonials' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'high',
    		'show_names' => false, // Show field names on the left
    		'fields' => array(
    			array(
    				'name' => 'Author description',
    				'desc' => '',
    				'id'   => $prefix . 'author_description',
    				'type' => 'text',
    			),
    		)
    	);
    
        //Custom menu
        $kleo_menus = wp_get_nav_menus();
        $menu_options = array();
        $menu_options[] = array( 'value' => 'default', 'name' => 'Site default' );
        foreach ( $kleo_menus as $menu ) {
            $menu_options[] = array( 'value' => $menu->slug, 'name' => $menu->name );
        }
    
        $meta_boxes[] = array(
            'id'         => 'page_menu',
            'title'      => 'Main menu options',
            'pages'      => array( 'page', 'post' ), // Post type
            'context'    => 'side',
            'priority'   => 'default',
            'show_names' => true, // Show field names on the left
            'fields'     => array(
    
                array(
                    'name' => 'Custom menu',
                    'desc' => '',
                    'id'   => $prefix . 'page_menu',
                    'type' => 'select',
                    'options' => $menu_options,
                    'value' => 'default'
                ),
                array(
                    'name' => 'Hide Shop',
                    'desc' => 'Check to hide the Shop icon in the main menu',
                    'id'   => $prefix . 'hide_shop_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
                array(
                    'name' => 'Hide Search',
                    'desc' => 'Check to hide the Search icon in the main menu',
                    'id'   => $prefix . 'hide_search_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
    
            ),
        );
    
    	
    	// Add other metaboxes as needed
    
    	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

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

    in reply to: Revolution Slider for attached images in posts #75209
     sharmstr
    Moderator

    If you are using it on a post, its built in. Just change the post format to gallery then add your images in Theme General Settings > Media.

    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: Issues and Questions #75199
     sharmstr
    Moderator

    1 – No. Here’s what’s available: http://seventhqueen.com/themes/kleo/dividers/
    2 – Correct. It doesnt scale. None of them do on any of the rev slider demos either: http://revolution.themepunch.com/examples/
    3 – No, but its being added: https://archived.seventhqueen.com/forums/topic/feature-item-linking
    4 – In the text field shortcode, there is a Kleo dropdown in the WYSIWYG editor that has some shortcodes you can use. One of them is Total Members.

    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: Composer is fighting with itself! #75197
     sharmstr
    Moderator

    🙂

    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: Composer is fighting with itself! #75191
     sharmstr
    Moderator

    What versions of Kleo and VC? Have you checked for plugin conflicts? Are you using the frontend or backend editor?

    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: BuddyMobile Compatibility with Kleo Styling. #75184
     sharmstr
    Moderator

    The plugin hasnt been updated in over a year.

    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

    That’s a function of BP, not Kleo. Please read their documentation: https://codex.buddypress.org/themes/guides/displaying-extended-profile-fields-on-member-profiles/

    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 path of post? #75182
     sharmstr
    Moderator

    WP Admin > Settings > Permalinks. https://codex.wordpress.org/Using_Permalinks

    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: Composer is fighting with itself! #75181
     sharmstr
    Moderator

    Have you increased the memory allocated to WP? You should have at least 128mb or more depending on your setup.

    http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    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

    If you have Kleo 3.0.7 installed, you should use VC 4.6.1. Its located in the download, or you can delete VC and install 4.6.1 from Appearance > Install Plugins

    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: links are redirect to any page #75179
     sharmstr
    Moderator

    Respond privately with a link and credentials.

    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

    Edit the page the slider is on. Verify the following

    1 – Click on row settings for the slider row and make sure you have 0 top padding.
    2 – Scroll down to theme general settings and make sure you have transparent main menu turned on AND hide the title, hide information and hidden breadcrumb enabled.

    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: DEMO DATA INSTAL #75177
     sharmstr
    Moderator

    Hard to say without knowing what you mean by ‘fails’ to install. Did you receive an error message? Do you have enough memory allocated to WP? Did you do the full demo install or specific content. Give us some additional info and we’ll be happy 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

    in reply to: google analytics #75176
     sharmstr
    Moderator

    It works fine on all of my sites. Have you inspected the page source to verify that the code is being generated?

    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: profile images in the activity tag #75175
     sharmstr
    Moderator

    Could be a plugin conflict. In any case, put this in your quick css

    COPY CODE
    
    #buddypress .activity-list .activity-avatar img.avatar {
        border-radius: 100%;
    }
    
    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: Revolution Slider for attached images in posts #75174
     sharmstr
    Moderator

    In looking that the rev slider documentation, it appears that it doesnt. http://www.themepunch.com/revslider-doc/post-based-slider/

    But Kleo has image galleries for posts built in. http://seventhqueen.com/themes/kleo/courses/creativity-innovation/

    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: Error while saving and Mobile View Problem #75173
     sharmstr
    Moderator

    1 – Put this in your child theme’s functions.php file

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

    2 – Edit your slide and check your visibility settings.

    3 – That’s not a function of Kleo. You’ll need a plugin. I know several people use Even Manager.

    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: Can I Modify the Dot Around User Avatar? #75172
     sharmstr
    Moderator

    You can change the color of the dot in theme options > styling. Adding logic for verifying members and having a visual representation of that on the site is beyond the scope of support here. If you’d like to get a quote for custom work, you can email dev@seventhqueen.com.

    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: Getting rid of the breadcrumb area? #75171
     sharmstr
    Moderator

    LOL. You have hide breadcrumb disabled. If you dont want it to show you have to ENABLE it. Its Hide breadcrumb, not Show breadcrumb.

    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: Add a solid divider between blog posts #75108
     sharmstr
    Moderator

    1 – I gave you the css to add the divider between posts on your blog archive in my first response. That means the standard place where WP displays blog posts. There is also a shortcode called Kleo Posts that you can use on pages that you create (the demo page that you linked me to is like this). The divider is there by default when using a shortcode.

    2 – You dont need to be a developer 🙂 I cant give you detailed instructions since its a custom post type. Most post types have an excerpt field that you can fill out. Does yours? Basically Kleo uses the standard WP way of getting an excerpt. It looks for anything in the excerpt field. If it doesnt find anything there, then it will try to create an excerpt based on the content it finds. But if you’re CPT has strange info (code) in there then it could be that it doesnt know what to do. Also, it could be that your CPT doesnt use the standard content type fields. Its all hard to guess at since its a CPT. Hopefully that make more sense.

    From the WP Codex: https://codex.wordpress.org/Excerpt

    How to add excerpts to posts
    To add an excerpt to a post, simply write one in the Excerpt field under the post edit box. An excerpt can be as short or as long as you wish. Usually, given its purpose, a couple of sentences is fine. If adding the excerpt manually, you may use (some) HTML formatting and the tags will not be stripped.

    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: Getting rid of the breadcrumb area? #75098
     sharmstr
    Moderator

    Also, do you have any kleo template overrides in the child theme?

    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: Getting rid of the breadcrumb area? #75096
     sharmstr
    Moderator

    That doesnt make sense to me. Can you attach a screen shot of your theme options bp settings? What Kleo version?

    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: Add a solid divider between blog posts #75094
     sharmstr
    Moderator

    1 – the divider is part of the kleo posts shortcode. you dont have to add a divider.

    2 – I’m assuming your recipes are a custom post type? If so, try using a custom excerpt.

    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: WooCommerce Out of Stock text #75089
     sharmstr
    Moderator

    Correct. That code isnt for the badge. As it states, “text displayed on a product’s page“.

    Woo lets you translate the badge text.

    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: WooCommerce Out of Stock text #75071
     sharmstr
    Moderator

    Kleo doesnt override that. I put the code from the link you provided into my child theme and it works as expected.

    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.
     sharmstr
    Moderator

    Thye are set using a combination of Row Rettings > Section Style in visual composer and Theme Options > Styles > (whatever section you choose) > Highlight background color in wp admin

    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: Font colour changes with change in screen size #75065
     sharmstr
    Moderator

    I cant reproduce your issue with the latest Kleo version. But perhaps this will help: https://archived.seventhqueen.com/forums/topic/button-not-clickable-with-galaxy-particles#post-68410

    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

    Dont touch the reading settings. Only do what I’ve told you. Just change the permalink on the page!

    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 - 4,001 through 4,040 (of 11,328 total)

Log in with your credentials

Forgot your details?