Forum Replies Created

Viewing 40 posts - 4,041 through 4,080 (of 11,328 total)
  • Author
  • in reply to: Getting rid of the breadcrumb area? #75063
     sharmstr
    Moderator

    Do you have Hide Breadcrumb section for profile pages 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: Getting rid of the breadcrumb area? #75054
     sharmstr
    Moderator

    socket and breadcrumb are different areas. the socket is down just above the footer.

    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: multiple featured images in pinterest style grid #75048
     sharmstr
    Moderator

    Post Format docs: https://codex.wordpress.org/Post_Formats

    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: multiple featured images in pinterest style grid #75035
     sharmstr
    Moderator

    Change the post format to gallery, then scroll down to Theme General Settings, click on the media tab and add your images

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

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

    in reply to: Custom navigation menu for single product #75034
     sharmstr
    Moderator

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

    COPY CODE
    
    add_filter( 'kleo_meta_boxes', 'custom_kleo_metaboxes' );
    /**
     * Define the metabox and field configurations.
     *
     * @param  array $meta_boxes
     * @return array
     */
    function custom_kleo_metaboxes( array $meta_boxes )
    {
    
        // Start with an underscore to hide fields from custom fields list
        $prefix = '_kleo_';
        //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('product'), // 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: Log in with your credentials not clickable #75032
     sharmstr
    Moderator

    Because that’s the title of the form that’s already being displayed.

    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 #75030
     sharmstr
    Moderator

    1 – That demo page isnt a blog page. Its was built using the kleo posts shortcode. That’s why the styling is different. In any case, put this in your quick css.

    COPY CODE
    
    .posts-listing.standard-listing .type-post {
        border-bottom-color: #e5e5e5;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        padding-bottom: 20px;
    }
    

    2 – Looks like you’ve figured out how to remove the featured posts.

    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: problems with image lightbox #74993
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .mfp-bg { 
        z-index: 1040 !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: Icons not showing on page and dashboard #74991
     sharmstr
    Moderator

    Awesome. Thank you for sharing.

    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 #74972
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .vc_tta-color-black.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-title > a {
        color: #666666 !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: problems with image lightbox #74971
     sharmstr
    Moderator

    Please provide 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 new page and click on edit next to the permalink.

    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: Icons not showing on page and dashboard #74940
     sharmstr
    Moderator

    Anytime 🙂

    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

    Change the news page permalink to blog. You’ll need to set your blog page permalink to something else. Standard WP stuff. 🙂

    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: Icons not showing on page and dashboard #74937
     sharmstr
    Moderator

    Sorry for the confusion. I figured if you knew what it was that you’d also know that there’s nothing I can do. You need to do it or contact your host to help.

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

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

     sharmstr
    Moderator

    Change your menu item to point to the news 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

    in reply to: Font colour changes with change in screen size #74925
     sharmstr
    Moderator

    Sorry, classic mode

    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: Icons not showing on page and dashboard #74921
     sharmstr
    Moderator

    Kleo isnt causing it and its nothing I can fix. Its a 403 Forbidden error. I thought you knew what that meant since you said “Yes…” http://pcsupport.about.com/od/findbyerrormessage/a/403error.htm

    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

    Clear your cache and/or CDN.

    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 #74889
     sharmstr
    Moderator

    There’s a stick topic on the subject https://archived.seventhqueen.com/forums/topic/steps-to-update-kleo-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: How put the up menu #74865
     sharmstr
    Moderator

    If you mean “Top Menu”, you need to either turn it on for the page in Theme General Settings or for the site in Theme Options > Header Options > Display Top Bar

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

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

    in reply to: Remove text 'category archives' Kleo theme #74852
     sharmstr
    Moderator

    Please search before posting. I’ve answered this a few times. Put the solution found here in your child theme functions.php file: https://archived.seventhqueen.com/forums/topic/deleting-archive-for-category-text#post-72439

    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: 404 after login #74850
     sharmstr
    Moderator

    Delete the cache files that W3 Total Cache created and also try resaving your 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: Buddypress Recent Orders #74848
     sharmstr
    Moderator

    What version of Kleo are you running. That was fixed in Kleo 3.0.2

    Version 3.0.2 – 23.06.2015
    – GeoDirectory import data options in WP admin – Appearance – KLEO Demo Data
    – Added an option to disable AJAX Theme options saving if you encounter problems. Just add to your child theme/functions.php this code: add_filter( ‘kleo_theme_options_ajax’, ‘__return_false’ );
    – Fixed an issue with the pasted shortcodes in the Header contet and Bottom content that wasn’t interpreted correctly.
    – Added small backward compat for users who havent upgraded to BP 2.3+
    – Small social header fix for submenus going under the main menu
    – Fixed active color profile tabs on Chrome browser
    – Fix errors when previewing anything that uses iFrames in Wp Admin. thanks @sharmstr See: https://archived.seventhqueen.com/forums/topic/errors-with-arforms-and-kleos-config-php-of-the-pmpro-plugin
    – Custom page title adjustments
    – Small search and cart dropdown fix when using Header with logo to right
    – Woocommerce/BuddyPress fix to display all orders in profile.
    – Woocommerce title in main section now can be hidden if that option is checked in the Shop page
    – Updated Visual composer to version 4.5.3 for PrettyPhoto plugin vulnerability

    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: Icons not showing on page and dashboard #74845
     sharmstr
    Moderator

    I needed access to so I could see the theme options. But doesnt matter. The same thing is happening with jetpack. If you look at the console, its throwing 403 forbidden errors when trying to load the jetpack fonts. So I suppose I can assume its doing the same for the fontello fonts.

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

    Technically, the content element needs to be attached to a ::before or ::after pseudo element. Chrome apparently doesnt care, but firefox does. Add css for the ::before pseudo element

    .main-title::before

    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: Move product description under gallery image. #74840
     sharmstr
    Moderator

    The code in the link I gave you does that. See attached when I apply it to my site.

    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: Icons not showing on page and dashboard #74838
     sharmstr
    Moderator

    I need a link to the site

    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: problems with image lightbox #74837
     sharmstr
    Moderator

    Provide a link so I can see 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: Font colour changes with change in screen size #74836
     sharmstr
    Moderator

    Switch to classic view and copy the code into a text file and attach here.

    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: Members Sell Items #74805
     sharmstr
    Moderator

    Kleo is a theme. You need a plugin. There are suggestions here: https://archived.seventhqueen.com/forums/topic/integration-for-wc-product-vendors-and-kleo

    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

    I’ve confirmed this to be an issue. Click on the gear icon and add this css for now.

    COPY CODE
    
    section.container-wrap {
        background-repeat: no-repeat;
    }
    
    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: PMPro Forum or Forum Topic Restriction #74803
     sharmstr
    Moderator

    PMPro has a bbpress plugin. Consult their website.

    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: PMPro not restricting access after upgrade to 3.06 #74802
     sharmstr
    Moderator

    Its working fine on my 3 sites without issue and running Kleo 3.0.7 (which is the latest version, not 3.0.6). Upgrade and try again. If it still doesnt work, look for plugin conflicts or perhaps you have old code in your 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: Icons not showing on page and dashboard #74764
     sharmstr
    Moderator

    If you want to give me access, I’ll be happy to take a look as well.

    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: Products stretched on site #74681
     sharmstr
    Moderator

    Need to see a link. Did you clear your cache/cdn after upgrading?

    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 #74680
     sharmstr
    Moderator

    Need to see a link.

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

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

    in reply to: problems with image lightbox #74679
     sharmstr
    Moderator

    Probably a plugin css conflict. Need to see a link.

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

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

    in reply to: Icons not showing on page and dashboard #74678
     sharmstr
    Moderator

    In every case I’ve been involved in, clearing the cache and purging the cdn solved the issue. Are you positive that its still not trying to server old files? What errors are you getting when you use your browser inspector?

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

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

    in reply to: Change User Xprofile Section Icons #74633
     sharmstr
    Moderator

    Please search before asking questions. Thank you.

    https://archived.seventhqueen.com/forums/topic/member-profile-page-edit#post-70536

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

Log in with your credentials

Forgot your details?