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,541 through 1,560 (of 5,356 total)
  • Author
    Search Results
  • #194241

    I need to apply this CSS to a single post:

    .col-lg-3.col-md-4 {
    Display: none;
    }

    .main.col-lg-9.col-md-8.kt-sidebar {
    width: 100%;
    }

    I haven’t been able to find a way to use the post ID so it these are applied only to that post. Thanks

    #194091

    The only change in my functions.php file is replacing the global sidebar on single testimonial posts according to this post. So that shouldn’t be the cause. Could it be in my CSS? Perhaps I am forcing it to display?

    In forum: Virtue Theme

    In reply to: A few questions …

    #193632

    The second site is not in maintenance so I looked at the homepage. The title is acting normally. If it’s the top enabled item in your home layout then it will follow the normal layout being above the sidebar. If it’s not the top layout then it would be placed beside the sidebar.

    Ben

    In forum: Virtue Theme

    In reply to: Home Custom Carousel

    #193101

    Hi,

    1. I used the CSS but it didn’t change anything. It’s the first carousel on my home page.

    2. Shouldn’t the header automatically stop at the sidebar? I don’t want to fool around with CSS if this is a bug…. It never did that before.

    Thanks!

    #193065

    Hi!

    My website is .

    1. What is the CSS to change the Home Custom Carousel background colour?

    2. The lines above and below “Latest Posts” seem to be going through the sidebar. I never noticed that there before. I think it happened after I added the image widget for my sale but I can’t be sure.

    Thanks!!!

    #193056

    I’m going to look at a way to auto check for these extra post types and add in the meta box.

    Here is the css:

    .single-sfwd-lessons #ktsidebar {
    display: none;
    }
    .single-sfwd-lessons #ktmain {
    width:100%;
    }
    #193044
    This reply has been marked as private.
    #193011
    This reply has been marked as private.
    #192991

    In your settings > page builder are you enabling page builder for those custom post types?

    You would need to set post meta for the post types. are you using a child theme and familiar with code you can add in meta boxes to control if a sidebar is shows and which sidebar shows.

    Ben

    #192987

    Hello Ben,

    A few days ago you were helping me with a related subject at the forum topic:

    I’m still struggling with post/pages design for courses, topics, lessons, quizzes, completed lessons, etc… for instance, the lessons page still have a sidebar with the same content that I use for areas in the website that have nothing to do with courses.

    I’d like to have more control and be able to choose if a specific page/post in the course area will have a sidebar or not. So far I’m using CSS for course and Topic pages.

    Also, when I choose to have a side bar on an specific page, I’d like to have more freedom to put a specific content on it. One alternative would be not having a sidebar and using page builder’s columns, but pagebuilder is not working in the posts/pages of the course area of the website.

    Do you know what I have to do to have more control on sidebars and it’s contents, or how to allow pagebuilder to work on the learndash area of the site?

    Thank you very much,
    Felippe

    In forum: Virtue Theme

    In reply to: Disable sidebar

    #192778

    A “courses” page is different from a “topic” page. Before we go any further please make sure you link to each post type you want to change.

    Courses would use css like this:

    .single-sfwd-courses #ktsidebar {
    display: none;
    }
    .single-sfwd-courses #ktmain {
    width:100%;
    }

    I’m seeing the page template work fine. You didn’t have it set for the page you linked to. You were setting the wrong thing. The settings for this plugin: Cpt custom page template. I don’t suggest you use that plugin. But regardless if you want to set a page title you must use the correct page attributes settings.

    Ben

    In forum: Virtue Theme

    In reply to: Disable sidebar

    #192764

    Ben,

    Thank you for your answer. From what you’ve said, it seems to me that the CSS option is the easiest way, do you agree? However, I used the CSS that you provided, but it did not work. Is it correct or maybe the problem is something else?

    .single-sfwd-topic #ktsidebar {
    display: none;
    }
    .single-sfwd-topic #ktmain {
    width:100%;
    }

    Thank you,
    Felippe

    In forum: Virtue Theme

    In reply to: Disable sidebar

    #192752

    That follows the default you have set for your blog posts since it’s a post type without its own template (thus in WordPress defaults to blog post template).

    So you can set your default but that would affect all your blog post defaults.

    Or you can hide the sidebar with css for that post type:

    .single-sfwd-topic #ktsidebar {
        display: none;
    }
    .single-sfwd-topic #ktmain {
        width:100%;
    }

    Or you can use a child theme and unhook the sidebar for that post type with a function like this:

    function kad_sidebar_on_sfwd_topic_page($sidebar) {
    if (is_singular('sfwd-topic')) {
    return false;
    }
    return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_on_sfwd_topic_page');

    Ben

    #192683

    I’m using a widget in the Above Footer Widget Area and Footer Column 1, but we’d like to suppress these from appearing on any page that has Member Pages as a Parent page. Is there any way to accomplish this? HERE is an example of one the pages on which we’d like to hide these widgets. There is a sidebar menu with a list of bands. All those with an * have a page on this site and we’d like to suppress these footer widgets for all of them.

    Thanks so much!

    In forum: Virtue Theme

    In reply to: Disable sidebar

    #192669

    Hey Ben,

    So, I would have to disable the side bar page by page?

    I am using Learndash plugin, and the course pages do not show this option to individually set them as fullwidth.

    The website has an undercontruction mode enabled, so I’ll send you a loging information in private. If you could just take a look and tell me if there is a way to globaly turn the sidebars off, I would be very thankfull.

    Thank you,
    Felippe

    In forum: Virtue Theme

    In reply to: Disable sidebar

    #192651

    In your other pages select the fullwidth page template.

    In your theme options > home layout turn on the sidebar.

    Ben

    In forum: Virtue Theme
    #192635

    Hello,

    I would like to show the side bar only on the homepage, do you know how can I do that?

    Thank you,
    Felippe

    #192625

    Hi

    I was long due on updates and finally got around to it. I made a copy of current site and run updates there.
    1. first I updated all plugins except woocommerce – everything was OK
    2. then I updated woocommerce (2.6.14 -> 3.4.2) – I got an issue with category pages not showing content at all. Problem was in solution from here:
    – I commented this part out in functions.php and content is shown now, but Page title is not where it should be.
    – And I’m getting warning about two outdated templates (virtue_premium_child/woocommerce/emails/customer-invoice.php and virtue_premium_child/product-searchform.php)
    3. then I did update of Virtue theme (3.9.8 -> 4.6.1) – everything is OK
    4. then I did update od WordPress (4.7.10 -> 4.9.6) – everything is OK

    So now I’m left with this two issues, that I don’t know how to fix. Can you please help me.
    Should I do updates in different order on my live site?
    This is live site:
    and this is test site:

    Thank you in advance
    Ales

    #192239

    Using CSS, I’ve created a border between my main content and my sidebar, which I’d like to hide when the sidebar drops underneath in responsive mode (both on desktop and devices).

    Can I do this with a single media query?

    Thank you! Amy.

    #192048

    Hey Wallis,
    You can use this css to remove the sidebar from your events page:

    .events_list-template-default aside#ktsidebar {
        display: none;
    }

    Hope that helps!

    Hannah

Viewing 20 results - 1,541 through 1,560 (of 5,356 total)