Forum Replies Created

Viewing 40 posts - 1,841 through 1,880 (of 11,328 total)
  • Author
  • in reply to: Layout Template Size #95151
     sharmstr
    Moderator

    I’m going on vacation for a week. I cant wait 🙂

    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 Row on Mobile and Video or Image Format Post #95150
     sharmstr
    Moderator

    http://vc.wpbakery.com/video-academy/responsive-column-control-width-offset-param-usage-explained/

    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 Row on Mobile and Video or Image Format Post #95149
     sharmstr
    Moderator

    But it does matter. Check your column responsive settings in visual composer. You should set them to match your column splits.

    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: Layout Template Size #95146
     sharmstr
    Moderator

    Css always goes in either quick css or your child theme’s styles.css file. Never in functions.php. That’s only for functions.

    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 custom links to Social Info area in top header #95145
     sharmstr
    Moderator

    That will take custom code and styling that is beyond the scope of support. But to give you an idea of what you’ll need to do: You’ll have to copy the kleo_get_social_profiles function in /kleo/lib/theme-functions.php to your child theme and add your links within the ‘kleo-social-icons’ container.

    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: Layout Template Size #95141
     sharmstr
    Moderator

    You cant. You’ll have to set the sizes with custom css.

    Left sidebar

    COPY CODE
    
    @media (min-width: 768px) {
        .sidebar.sidebar-main.col-sm-3.sidebar-left.col-sm-pull-9 {
            width: 10%;
        }
        .template-page.col-sm-9.col-sm-push-3.tpl-left {
            width: 90%;
        }
        .template-page.col-sm-push-3 {
            left: calc(10% - 1px);
        }
        .col-sm-pull-9 {
            right:90%;
        }
    }
    

    Right Sidebar

    COPY CODE
    
    @media (min-width: 768px) {
    .template-page.col-sm-9.tpl-right {
    width:90%;
    }
    .sidebar.sidebar-main.col-sm-3.sidebar-right {
        width: 10%;
    }
    }
    

    Two sidebars

    COPY CODE
    
    @media (min-width: 768px) {
        .sidebar.sidebar-extra.col-sm-3.sidebar-3lr {
            width: 10%;
        }
        .sidebar.sidebar-main.col-sm-3.col-sm-pull-6.sidebar-3lr {
            width: 10%;
            right: 80%;
        }
        .template-page.col-sm-6.col-sm-push-3.tpl-3lr.posts-listing.masonry-listing.with-meta {
            left: calc(10% - 1px);
            width: 80%;
        }
    
    }
    
    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 Row on Mobile and Video or Image Format Post #95138
     sharmstr
    Moderator

    What do you have set for the columns responsive 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: Half Chat Bubble / Private Dashboard #95120
     sharmstr
    Moderator

    1 – Need access to the dashboard so we can see the bubble issue.

    2 – You can narrow your statistics or whatever personal information to the current user using wp_get_current_user https://codex.wordpress.org/Function_Reference/wp_get_current_user

    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 Comments – approved but hidden #95119
     sharmstr
    Moderator

    Try purging your 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: PLUGIN BUGS AND ISSUES #95089
     sharmstr
    Moderator

    I was able to connect via FTP, but I can’t connect to WP Admin. Please provide correct login details.

    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: PLUGIN BUGS AND ISSUES #95088
     sharmstr
    Moderator

    Nevermind – i see that info in your other 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: Remove the Content Sidebar? #95086
     sharmstr
    Moderator

    Not without completely changing the templates.

    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: PLUGIN BUGS AND ISSUES #95085
     sharmstr
    Moderator

    respond privately with admin credentials for both wp and 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: Revolution Slider Butons #95083
     sharmstr
    Moderator

    Edit the button shortcode and add ‘bigger’ to the style parameter. Then in your quick css, add this.

    COPY CODE
    
    .bigger {
        width: 500px;
        height: 100px;
        font-size: 50px;
    }
    

    Adjust the sizes to suit 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: Add new footer Area above the current one. #95078
     sharmstr
    Moderator

    I saw the image, but needed clarification on what you wanted there. Thank you for that.

    Create a new sidebar: Appearance > Sidebars. Call it Footer 5

    Copy /kleo/sidebar-footer.php to your child theme

    Around line 24, just under <div class=”wrap-content”> add this

    COPY CODE
    
    <div class="row">
    					<div class="col-sm-12">
    						<div id="footer-sidebar-5" class="footer-sidebar widget-area" role="complementary">
    							<?php
    							if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('footer-5')):
    							endif;
    							?>
    						</div>
    					</div>
    				</div>
    
    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 Menu #95075
     sharmstr
    Moderator

    But I’m not the developer. I’m a user like you. I understand that it isnt working for you, so I’m saying you should ask in that topic since the person who provided the possible solution will get notified and they can possibly assist you. Does that make sense?

    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 header displays no username and photos #95070
     sharmstr
    Moderator

    You’re welcome.

    Moving this topic since its not a 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: screen is broken #95069
     sharmstr
    Moderator

    Oh yes. I see that it only happens in firefox. I’ll let the developers know. Thank 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: Remove the Content Sidebar? #95068
     sharmstr
    Moderator

    That’s not a sidebar. 🙂

    That’s the buddypress profile header. You might try this

    COPY CODE
    
    #buddypress #item-header-wrap {
        display: none !important;
    }
    @media only screen and (min-width: 768px) {
        #buddypress #item-body {
            margin-left: 0 !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: Remove the Content Sidebar? #95064
     sharmstr
    Moderator

    There isnt a sidebar layout for 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: Profile header displays no username and photos #95060
     sharmstr
    Moderator

    I told you “autoptimize plugin” 🙂

    Settings > Buddypress > Settings: Allow registered members to upload cover 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: Add new footer Area above the current one. #95057
     sharmstr
    Moderator

    Can you be more specific about what you want. Do you want a single column footer or a 4 column footer like the default footer. Do you want widgets in there or something else?

    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 the Content Sidebar? #95056
     sharmstr
    Moderator

    It works for me. Probably a caching issue on your 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: Mobile Menu #95055
     sharmstr
    Moderator

    Ask on the topic link I sent you since they offered the code. I merely did the search for you and as I said, have no idea if it would work on not.

    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 header displays no username and photos #95053
     sharmstr
    Moderator

    Couple of things going on

    1 – Your site was throwing jquery errors because of your autoptimize plugin

    2 – You didnt have cover photos turned on.

    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: screen is broken #95049
     sharmstr
    Moderator

    It only appears to be broken because it scrolls down to the comment box. In your particular example, there wasn’t anything in the parent activity, so it cuts off part of the info line. If it wasnt set up like this, then when you try to leave a comment on an activity that has a large amount of text, you wouldnt see the comment form. See attached

    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: Profile header displays no username and photos #95046
     sharmstr
    Moderator

    Respond privately with admin 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

    in reply to: Change Link of Logo #95045
     sharmstr
    Moderator

    Its possible, but you’d have to maintain a bunch of code to do it. You’d have to copy /buddyapp/page-parts/header-side.php and /buddyapp/page-parts/header-top.php to your child theme and change the $logo_link = home_url(); lines. Easy enough to do, but you’ll see there is a ton of code in both of those pages. After each buddyapp update, you’d have to look for changes in those files and re-copy the files over and make your edits again. I dont normally suggest this, but personally, I’d change the core files and remember to change those lines after every update. Faster and simple to maintain.

    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 the Content Sidebar? #95042
     sharmstr
    Moderator

    You can disable the sidebar by choosing the full width layout in Appearance > Customize > Layout

    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 header displays no username and photos #95041
     sharmstr
    Moderator

    That’s correct. The profile header shows their @ mention name regardless of whether you have a full width profile or not. That’s is how buddypress does it by default. Kleo doesnt override that.

    I dont understand your second question. To change the avatar and cover photo, you click on “Profile”.

    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 Menu #95040
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    @media (max-width: 991px) {
    .header-color a {
       color: #ffffff !important;
    }
    }
    

    Not sure if this will work or not, but I found this topic on making the mobile menu sticky: https://archived.seventhqueen.com/forums/topic/main-menu-disappears-in-mobile-view#post-91929

    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: Dropdown menus based on selection #95037
     sharmstr
    Moderator

    Buddypress doesnt have this ability by default. You’ll have to find custom code or a plugin.

    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 can i put the title around the Header? #95036
     sharmstr
    Moderator

    I dont know if that’s a page or a post since I cant read it and I cant access it. If its only missing on that page, edit it and scroll down to Theme General Settings and enable the title.

    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: PLUGIN BUGS AND ISSUES #95035
     sharmstr
    Moderator

    As I told you yesterday, they are merely warnings. Did you turn off wp_debug in wp-config.php?

    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: Hide category on catalog page #94986
     sharmstr
    Moderator

    I put this in your quick css to hide the categories.

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

    There’s no hook into that location, but you can use this to put the description just below the price. Put it in your child theme’s functions.php file.

    COPY CODE
    
    add_action( 'woocommerce_after_shop_loop_item_title', 'add_product_description' );
    function add_product_description() {
        global $post;
        echo $post->post_content;
    }
    
    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 Butons #94985
     sharmstr
    Moderator

    Its hard to say. As I said, if you enable spamsheild, the error is that you dont have enough memory. If you had enough memory and still had issue, then that would point to spamsheild.

    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: Hide category on catalog page #94968
     sharmstr
    Moderator

    Please re-attach the photo or respond privately with access 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

    in reply to: Portfolio gallery images don't link #94959
     sharmstr
    Moderator

    That would give people more room to click.

    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: Lot of problems in instalation #94958
     sharmstr
    Moderator

    They are just warnings. Turn them off in wp-config.php: https://codex.wordpress.org/WP_DEBUG

    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

    Yep. Maybe clear your phone cache?

    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 - 1,841 through 1,880 (of 11,328 total)

Log in with your credentials

Forgot your details?