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 - 1,901 through 1,920 (of 5,356 total)
  • Author
    Search Results
  • #171793
    This reply has been marked as private.
    #171684

    Hey,
    So without knowing which specific one I can’t give you the exact code but it would look like this:

    add_filter('kadence_sidebar_id', 'custom_testimonial_sidebar_id');
    function custom_testimonial_sidebar_id($sidebar) {
    if(is_singlular('testimonial') ) {
     $sidebar = 'sidebar1';
    }
    return $sidebar;
    }
    #171663

    Ben,

    I want to set the sidebar to a specific one.

    Thanks

    Jeremy

    #171653

    1. There is an update coming out in the next version which adds better breadcrumbs for testimonials and events At that point, you would be able to set an all testimonial page that will be part of the breadcrumbs.

    2. Are you wanting to remove the sidebar or to set it to a specific sidebar and if specific which one?

    Ben

    #171595

    Hi I have two questions

    For the testimonial single posts how do I

    1. Change the bread crumb so it has the testimonial page in it like

    Home / Testimonials / Quest Carter

    2. How do I use a function to replace the sidebar for all single post testimonial pages?

    Thanks

    Jeremy

    #171500

    Your custom css is broken, you seem to have this css:

    @media (min-width: 992px) {
    #ktsidebar {
       padding-bottom: 15px;
    }

    And you’re not closing out the media query.

    You can’t force an end to an excerpt but you can give them all a minimum height that matches that of your longest excerpt as hannahs css does for you.

    Ben

    #171226

    1.

    Would it be possible to do the same with the “Latest posts” or “Similar articles” modules by any chance?

    Do you mean you want to center them? Can you link to which page?

    2. You have an open media query in your css:

    @media (min-width: 992px) {
    #ktsidebar {
       padding-bottom: 15px;
    }

    You just need to add a closing bracket as it affecting all your other css.

    Hannah

    In forum: Virtue Theme

    In reply to: Menu

    #171207

    You can also set your sidebar to be on the left side and then add a menu through it.

    Ben

    In forum: Ascend Theme
    #171191

    Here’s some CSS that should do this for you:

    .sidebar .recentpost_title {
        text-transform: capitalize !important;
    }

    Try adding that to Theme Options> Custom CSS, and let me know if it works for you.

    -Kevin

    #171185

    Hi,
    You super team helped me set my article titles in all caps which works great on the single posts and grid,
    but my problem they appear all lowercase in the latest post sidebar widget… is there a way I could customize these title to have uppercase when needed (begining of the title or proper names in titles)? or having them all caps if the previous is not possible.
    Thanks a lot, again!

    #171129

    Hey so that carousel is designed for the image to fill the entire column. Since you’ve set it as a single column it’s expecting that image to fill a lot more space. but your images aren’t that large because the single column carousel is more designed for a sidebar then for the full content. so hence your left with a gap between the end of the image and the title based on where the image is supposed to line up

    You can add this css to change it:

    .panel-widget-style-for-9-5-0-0 .kt-intrinsic {
        padding-bottom: 0 !important;
        height: auto;
    }

    Ben

    #170729

    Great thanks Hannah and Ben,

    I was trying to get around adding a sidebar to each page manually, I already have the child theme setup so will add in the function.

    Thank you both.

    #170723

    In each page you can scroll down and turn on a sidebar through the metabox settings.

    If you want to force a sidebar regardless of your page settings you can use a child theme. and add this function into the child theme functions.php file:

    function force_sidebar_on_pages($sidebar) {
      if ( is_page() ) {
        return true;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'force_sidebar_on_pages');

    You can download a child theme here: https://www.kadencewp.com/child-themes/

    Ben

    #170629

    Hey Mel,
    There isn’t a setting to enable a sidebar sitewide. You would have to choose a sidebar layout in each of your edit pages.
    You can enable a sidebar for all your products from Theme Options > Product Settings.

    Hannah

    #170601

    Hi,

    This seems a very silly question but for some reason I can’t find where to apply a sidebar as the default template style. I have it working on the home page but the inner pages is using a default Full page. I want a sidebar on all pages. I have read through the forum and I saw there was a sidebar settings? But i can’t find it in my theme.. I have gone through each of the Theme options sections… it’s driving me crazy now.

    Here is my site link:

    Thanks, Mel

    #170588

    Hi Hannah,

    I still don’t see the form on the home page. I’ve checked theme options > home layout to make sure the primary sidebar is set and I’ve checked the aweber widget is in the primary sidebar in appearance >widgets. It still does not show. What am I missing/doing wrong?

    #170469

    You had “Home Widget Area” selected as your sidebar from Theme Options > Home Layout. I changed it to Primary Sidebar and it’s working.

    Hannah

    #170415

    Make sure you are selecting the right sidebar. Can you send login info so we can take a look at your settings? You can set as a private reply.

    Hannah

    #170412

    Hi Kevin,

    I have checked your suggestion, the sidebar is selected for the right hand side and I have dragged the Aweber form widget into the sidebar. I have selected and tested both layout styles, boxed and wide, neither of which makes any difference, the form does not show. I have tested numerous other widgets and none of them work either. Any other suggestions?

    #170301

    You have to edit the template something like this would make that possible: https://www.kadencewp.com/product/kadence-woo-template-builder/

    Otherwise you need to use a child theme and hook it into a woocommerce template.

    The normal approach to this is to use a sidebar for woocommerce pages and add your search widget to the sidebar.

    Ben

Viewing 20 results - 1,901 through 1,920 (of 5,356 total)