Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 3,221 through 3,240 (of 5,356 total)
  • Author
    Search Results
  • #92974

    Is there a setting to change the sidebar width? I’m double-checking before adjusting CSS.
    Thanks!

    #92936

    Hi,
    I would like to make my blog post featured images go across the whole screen (full width) and make my sidebar move down and inline with the post title and content. Perhaps there has already been a solution around here but do I need to adjust the CSS or is there an option under theme option-blog options?

    Thank you
    Julian

    #92842

    Sure, you can do this in a child theme. see here: https://www.kadencewp.com/child-themes/

    Then you would just add this into the functions.php file:

    function kad_sidebar_on_posts_off($sidebar) {
      if (is_single()) {
        return false;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_posts_off');

    Ben

    #92830

    I want to remove the sidebar from all my blog posts (over 130) at once.

    Is there any possibility to do this with one action and not remove the sidebar from every single post individually?

    #92593

    Hello! Your blog page sidebar settings and template settings will be found within the edit screen of the blog page.

    You will have an area for sidebar settings within the page, and your template will be set under the Page Attributes section.

    Let me know if that helps!

    #92585
    .sidebar .staff-shortcode .s_item {
        width: 100%;
    }
    .sidebar .staff-shortcode .staff_item .staff-entry-content {
        display: none;
    }

    I’m not seeing that you’ve set a featured image with these posts?

    Ben

    #92549

    Hey Benson,
    Looks like you still have a sidebar enabled, though there is nothing in it. In your edit page set the page template to full width.

    Hannah

    #92500

    Hi Hannah,

    Just having some challenges with script. I have created new sidebar, but i would like to limit sidebar to just one column and only display portrait and heading of text. Would you be able to help modify script for this requirement?

    thanks so much,

    Mark

    #92378

    Hey Mark,
    You can create a custom sidebar from Theme Options > Misc Settings then in Appearance > Widgets add a staff posts shortcode to a text widget. Like this: [staff_posts ratio=landscape masonry=false link=true orderby=date items=4 columns=2 limit_content=true height=200]
    Then you can select that specific sidebar from your edit page[s].
    Hope that helps!

    Hannah

    #92310

    Dear Sir/Madam,

    Is it possible to create a sidebar on a particular page which illustrates all staff of company – rather than showing (ie recent posts)?

    would you be able to advise on best way to do it?

    thanks,

    Mark

    #92264

    Hey,

    I’m working on transitioning a website from a localhost to a live version, but I’m running into a problem I can’t seem to solve–or get any closer to figuring out what might be causing it 🙁

    Essentially, the blog pages won’t show any texts for the post summaries, only the titles, and featured images when set to one of the image summary options. This is true for both the ‘Blog’ and ‘Blog Grid’ templates, and both in fullwidth and sidebar versions of said templates.

    Example page here:

    I’ve tried changing the default post summary option, changing individual posts’ summary settings, entering a custom excerpt, and various other tests accross the board, but the entry-content / articleBody area remains empty, as shown currently.

    Searching and comparing with the localhost files (where both the automatic and manual excerpts work fine), I just can’t find any obvious differences.

    Any ideas what might be causing this situation? Thanks in advance!

    #92177

    Sorry, got three more questions today regarding the shop page.

    1. Is it possible to darken the background of shop product style (simple text on image – dark) by 20%?

    2. Is it possible to have the prices always show at the bottom right of the product on the shop page for consistency (simple text on image), as opposed to defaulting to the top line of product name?

    3. The shop page product category drop down is not displaying hierarchy (as widget in page builder), though it does in the sidebar and footer.

    My shop page:

    Thanks!
    Josh

    In forum: Virtue Theme

    In reply to: Sidebar width

    #92067

    Hey Tom,
    Try adding this to your custom css box in Theme Options > Advanced Settings:

    @media (min-width: 1200px) {
    .main.col-lg-9.col-md-8 {
        width: 65%;
    }
    aside#ktsidebar {
        width: 35%;
    }
    }

    Hope it helps!
    Hannah

    In forum: Virtue Theme

    Topic: Sidebar width

    #92042

    Hello is it possible to change the sidebar width so it is wider please?
    Thank you

    #91908

    Hey sam,
    So by defualt portfolios weren’t ever designed to have sidebars to begin with… Part of why you’re wanting the layout to be different.
    But in general the point of a sidebar instead of columns in your content is because you would want the sidebar to be well a sidebar. full height. so what you’re asking for as a default thing it’s really something I can see making defualt especially since by defualt there isn’t a sidebar.

    But in terms of making that happen easily well I hear you and I do have a solution for that. I’m working on an update and once it comes out (2.6.1) you will be able to do this simply from a child theme with this in your functions.php file:

    remove_action( 'kadence_single_portfolio_after', 'pinnacle_portfolio_bottom_carousel', 30 );
    add_action( 'kt_after_content', 'pinnacle_portfolio_bottom_carousel', 30 );

    Ben

    In forum: Virtue Theme

    In reply to: Move WOO Breadcrumbs

    #91905

    For categories you would need this:

    @media (min-width: 992px) {
    .tax-product_cat div#kadbreadcrumbs {
        position: absolute;
        left: 0px;
        top: 60px;
    }
    .tax-product_cat .page-header .col-md-6 {position:static;}
    .tax-product_cat .page-header {position:relative;}
    .tax-product_cat .page-header h1.page-title {margin-bottom:35px;}
    }

    You need to remove this:

    #content .main {float:right;}

    If you want the sidebar on the left you can do that as of version 3.6.0 in your theme options > main settings or you can use this css:

    @media (min-width: 992px) {
    body .main.col-lg-9 {float:right;}
    }

    and it’s best to wrap your breadcrumb css in a media query.

    @media (min-width: 992px) {
    }

    Ben

    In forum: Virtue Theme

    In reply to: facebook feed plugin

    #91892

    If you want to place shortcode in the sidebar, the best way to do that is to add a Text Editor widget to your sidebar, and paste the code there.

    Give that a try and let me know if that works for you!

    In forum: Virtue Theme

    In reply to: facebook feed plugin

    #91891

    If you want to place shortcode in the sidebar, the best way to do that is to add a Text Editor widget to your sidebar, and paste the code there.

    Give that a try and let me know if that works for you!

    #91875

    Try this CSS.

    @media (min-width: 992px) {
    #content .main.col-lg-9 {width: 80%;}
    #content aside.col-lg-3 {width: 20%;}
    
    .woocommerce .widget_layered_nav ul li a, .woocommerce .widget_layered_nav ul li span, .woocommerce-page .widget_layered_nav ul li a, .woocommerce-page .widget_layered_nav ul li span {
    padding: 5px 5px 5px 5px;
    float: left;
    }
    
    .widget {
    margin-top: 0px;
    }
    
    .sidebar .widget-inner li {
    line-height: 10px;
    }
    }

    The padding CSS might need to be changed, but try this and see if it works. If you’re still having issued with the padding, erase the CSS that applies to it and let me know so I can help your write it.

    #91869

    I am trying to put a facebook feed in the Primary sidebar. The name of the plugin is “Custom Facebook Feed” and to display the feed there is a setting for inserting a shortcode, and the direction say:

    Displaying your Feed
    Copy and paste this shortcode directly into the page, post or widget where you’d like the feed to show up:

    [custom-facebook-feed]

    However, I cannot find a place to paste the shortcode in the Primary Sidebar. Any ideas?

Viewing 20 results - 3,221 through 3,240 (of 5,356 total)