Forum Replies Created

Viewing 40 posts - 1,441 through 1,480 (of 11,328 total)
  • Author
  • in reply to: How to remove Search Members of Search_Form #98834
     sharmstr
    Moderator

    Your child theme’s style.css file isnt even loading. Why do you have so many files 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: How to remove Search Members of Search_Form #98831
     sharmstr
    Moderator

    Theme Options > General: Quick CSS

    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: Mobile sub menus #98830
     sharmstr
    Moderator

    Edit the page, click on the pencil icon for the heading shortcode to bring up the settings for 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: How to remove Search Members of Search_Form #98827
     sharmstr
    Moderator

    Put it in Quick css.

    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: Mobile sub menus #98823
     sharmstr
    Moderator

    1 – In the shortcode settings.

    2 – Try this instead

    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: How to remove Search Members of Search_Form #98821
     sharmstr
    Moderator

    Put this in your quick css

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

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

    in reply to: Blackout when I update plugins #98817
     sharmstr
    Moderator

    You’re running an extremely old version of Kleo. So old in fact that you are no longer able to get theme update notices. You need to update your site using the FTP method as described here: 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: Modify User Tabs Order and Add New tabs #98815
     sharmstr
    Moderator

    moving because this isnt a kleo bug.

    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: Modify User Tabs Order and Add New tabs #98814
     sharmstr
    Moderator

    1 – https://archived.seventhqueen.com/forums/topic/change-user-xprofile-section-icons#post-92800. Change the numbers to change the order and add a line for the posts. If the posts were created with Social Articles, it would be.

    COPY CODE
    
    $bp->bp_nav['articles']['position'] = 10;
    

    https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/

    2 – The sites tab is automatically added if you do a network installation: http://codex.wordpress.org/Create_A_Network

    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

    1 – Theme options > Header > Disable top menu

    2 – Theme options > Header > Show breadcrub: Off, Theme options > header > Main menu info: delete contents, Theme options > layout > Page title location: Main 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: Mobile sub menus #98812
     sharmstr
    Moderator

    1 – Increase the line height of the Get Connected text.

    2 – Try this in your quick css

    COPY CODE
    
    #menu-main-menu .caret:after {
        color: #fff;
    }
    
    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 product gallery images not working #98796
     sharmstr
    Moderator

    You can import specific pages. Appearance > Demo Data > Specific 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: woocommerce product gallery images not working #98726
     sharmstr
    Moderator

    WP 4.4 added srcset to images which has screwed up a bunch of things. Looks like the Kleo devs have already fixed this in the next version of Kleo. In the meantime, see if this solves the issue.

    In your child theme’s functions.php file, add this

    COPY CODE
    
    function sq_remove_img_srcset( $attr ) {
    		if (! empty($attr)) {
    			unset($attr['srcset']);
    			unset($attr['sizes']);
    		}
    
    		return $attr;
    	}
    

    Then replace /kleo/woocommerce/single-product/product-image.php with the attached file (or put it in your child theme). Make sure you keep a copy of the original file (in case this doesnt work) and rename .txt to .php.

    Let me know.

    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: Add Kleo buddypress menuheader #98707
     sharmstr
    Moderator

    You cant inject the profile menu anywhere because the Buddypress code that builds the menu determines which profile screen you’re on. Since you want to put it on a random page, it will never work. The best you can do is use the same font icons to add links to sections of the profile. The attachment shows the results on the top and how I did it in VC on the bottom.

    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: Add brand name to products in shop page #98685
     sharmstr
    Moderator

    Woocommerce has a filter to inject information in that location. Here’s the code to do that. Put it in your child theme’s functions.php file. You’ll have to figure out how to get the custom field though.

    COPY CODE
    
    add_action( 'woocommerce_after_shop_loop_item_title', 'add_brands', 7 );
    function add_brands() {
        // replace the below code with your code to get the brand name
        echo "brand name 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: Black box appearing on site #98679
     sharmstr
    Moderator

    That’s you side menu. Sounds like you dont even want it on your site, so disable it in theme options.

    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’t create account #98677
     sharmstr
    Moderator

    You need to enable registration. Settings > General: Anyone can register.

    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 edit the Categories Archives layout #98670
     sharmstr
    Moderator

    No, you cant edit them in VC. You need to edit the theme file templates directly. If you dont know how to do that, you will need to hire someone to assist you.

    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: news magazine slider #98669
     sharmstr
    Moderator

    Edit the slider settings and choose the category you want.

    Slider Settings > Post Based Slider > Fetch Posts by Categories > Post > Select your Post Category

    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 product gallery images not working #98668
     sharmstr
    Moderator

    Its not supposed to launch the lightbox, its supposed to switch the main image. In any case, it could be a plugin conflict. Disable the extra plugins you have installed to verify.

    While you’re at it, implement this fix for your product descriptions: https://archived.seventhqueen.com/forums/topic/product-descriptions-not-displaying-properly#post-91521

    let me know.

    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 remove Search Members of Search_Form #98665
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file. Change “My Custom Member Search Text” to whatever you want.

    COPY CODE
    
    add_filter( 'bp_get_search_default_text', 'change_default_search_text' );
    function change_default_search_text( $default_text ) {
        if ( bp_current_component() == 'members' ) {
            $default_text = "My Custom Member Search Text";
        }
        return $default_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: menu color #98662
     sharmstr
    Moderator

    Theme Options > Styling > Header: Link color and Hover link cover

    If you want to change individual items, see this: https://archived.seventhqueen.com/forums/topic/change-background-color-in-each-menu-item#post-96185

    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: Price tag on Image (Portfolio item) #98661
     sharmstr
    Moderator

    There’s no hook in Kleo to inject anything into the the code there so the portfolio template would have to be edited it. If you dont know how to do that, then you should hire someone to do that for you since its beyond the scope of support here. You always have the option to add it the price to the image with an image editor program.

    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: news magazine #98657
     sharmstr
    Moderator

    Did you set the post type in the news ticker (marquee) shortcode?

    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: Where to start #98531
     sharmstr
    Moderator

    Here’s the info that you can’t see in that topic

    “I circumvented the system by copying custom_styles directly into the style.css of the child theme. that’s not a proper solution, but it works for now”

    If you have further questions, please ask in that topic so we can keep all of this info together. Plus, that topic is assigned to the developer so you’ll get the best help from him.

    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: Where to start #98529
     sharmstr
    Moderator

    Your site is throwing a 404 error on the dynamic stylesheet that Buddyapp creates. You are having the same issue as this: https://archived.seventhqueen.com/forums/topic/no-styling-after-installation

    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: Blog post featured image would not show #98521
     sharmstr
    Moderator

    What you can do is set the featured image so it shows up in the VC shortcodes, then in your post, scroll down to Theme General Settings > Media and disable ‘show 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: Blog post featured image would not show #98518
     sharmstr
    Moderator

    Wait – That only works with the Kleo Posts shortcode. Not the VC posts shortcodes.

    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: Blog post featured image would not show #98517
     sharmstr
    Moderator

    Do you have ‘get featured image from content’ enabled in theme options > blog?

    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: SSL issues with Visual Composer #98509
     sharmstr
    Moderator

    Thanks @abe

    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: Post Featured Images not showing #98493
     sharmstr
    Moderator

    moving because this isnt a kleo bug

    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: Post Featured Images not showing #98491
     sharmstr
    Moderator
    This reply has been set as private.
    in reply to: Post Featured Images not showing #98490
     sharmstr
    Moderator

    You site is throwing ‘mixed-content’ errors which is a common issue when you switch to https://. You need to clear your server cache and/or purge your cdn if you have one in place.

    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: news magazine #98487
     sharmstr
    Moderator

    As the Kleo documentation states, you need to edit the slider settings after you import it and select at least one category.

    https://archived.seventhqueen.com/documentation/kleo#revslider

    You also need to edit the News Ticker settings and select the post type.

    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: Issue using Child Theme #98486
     sharmstr
    Moderator

    We cant tell what’s going on unless you have the child theme enabled. Did you flush your cache after enabling 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: Site stops working when I install GeoDirectory Plugin #98485
     sharmstr
    Moderator

    I need ftp and wp admin access.

    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: Posts repeat across sections #98370
     sharmstr
    Moderator

    At this point you need to use categories or tags to filter the posts to make the shortcodes display different content. In the next version of Kleo (dont have an eta) you’ll be able to set an offset. That will allow you to things like set 1 type of news shortcode to show the latest 5 posts, then the next news shortcode start at the 6th post.

    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: Image Resolution #98361
     sharmstr
    Moderator

    Perhaps its a setting on your server or a plugin you’re using.

    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: Image Resolution #98356
     sharmstr
    Moderator

    Also, I just checked your 300×300 images that are produced by WP and those are of poor quality 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: Image Resolution #98354
     sharmstr
    Moderator
    This reply has been set as private.
Viewing 40 posts - 1,441 through 1,480 (of 11,328 total)

Log in with your credentials

Forgot your details?