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 - 4,121 through 4,140 (of 5,356 total)
  • Author
    Search Results
  • In forum: Pinnacle Theme

    In reply to: Shop pages

    #50864

    Hey Debra,
    You can go to Products > Categories and create categories then assign products to those categories. Then you can link to the product category page in the menu. You should see a Product Categories button in the left sidebar of Appearance > Menus. If you don’t see this option you may need to select it from the screen options tab on the top right of the page.
    Hope that helps!

    Hannah

    #50824

    So when you create product categories and add products to it they will automatically have their own page. See here- http://pompkingpomades.com/product-category/beard-balm/ You can link to these pages from Appearance > Menus. If you don’t see the product categories option in the left sidebar you may need to select it from the screen options tab on the top right of the page.
    Hope that helps!
    Hannah

    #50732

    Yes, I tried to remove.

    The purpose is to make sure that I am leaving enough space to the Menu.

    I am getting close to what I want. Thank you for doing the right questions!

    Now my CSS has:

    @media (min-width: 992px) {
    body .main.col-lg-9 {
    float: right;
        padding: 0 20px 0 40px;
    }
    .sidebar {
        float: left;
        padding: 15px 20px 15px 20px;
    }
    .sidebar .kad_product_wrapper .tcol-md-3 {
        width: 195px;
    }
    }

    Then it worked, but not pretty at all… too much information for a sidebar menu. And also, I was not able to use the class “selected” to add a border to the selected menu.

    Thank you anyway! I learnt a lot.

    #50730

    I have tuned off the sidebar (already did that before) but the problem is still there.

    #50711

    Hi Hannah!
    Oooow!! OK!! Cool, but not there yet.

    Appearance > Widgets > Text > [product_categories parent="0" columns = "1"]

    My CSS has:

    .sidebar {
        float: left;
        padding: 15px 20px 15px 20px;
    width: 200px;
    }

    And the result:
    two images are even better

    I’ve tried to change the columns value, but seems to make no difference at all.

    How to force them to go line by line?

    #50705

    So you need to actually paste the shortcode into the sidebar. You can do this in Appearance > Widgets. Add a text or visual editor widget and paste in the shortcode.

    Hannah

    #50699

    Why not? Simple, I don’t know how… yet. 😉

    I am learning…

    What I’ve tried so far after your suggestion and your link for short-codes:

    1. Theme Option -> Misc. Settings -> Create Customised Sidebar -> “sidebar-test
    2. Pages -> New Page -> “sidebar-test” with atribute “Sidebar”. Publish.
      1. Added the text to the page:[product_categories number="12" parent="0" columns = "6"].
      2. Sidebar Options-> Choose the sidebar -> “sidebar-test“. Update page. Test: Ok categories displaying on “sidebar-test” page.
    3. Home Layout -> Choose sidebar for the initial page-> “sidebar-test“. Save Changes.

    When I refresh the homepage, the sidebar is a white page.

    In forum: Virtue Theme

    In reply to: Sidebar menu styling

    #50652

    Hey,
    Try adding this to your custom css box:

    .sidebar ul {
        margin: 0;
    }

    Hannah

    #50638

    Good afternoon Kadence world!

    Here is a link to my site. Please can you help me with aligning the menu items in the sidebar with their respective headings — I don’t want them indented. (I tried all sorts of list css formatting with no success. I’m fumbling around in the dark really!) BTW the sidebar contains two custom menues. Thanks!

    #50627

    Hey Ben,

    Once again you are absolutely right!

    I am editing some design rules, and also the ( woocommerce/includes/walkers/class-product-cat-list-walker.php ) to include img.

    Not fun, and also not safe if happens an update.

    Even doing that, the result is not what I want.

    Do you have any suggestion what I can do to create a sidebar menu with the images of the category? The menu must be automatic, since customer may include or delete Categories.

    Any tip to me how to create this menu?

    Tnks!

    #50620

    every page in pinnacle can have a sidebar or not. Just turn the sidebar off in your page settings. This doesn’t have to do with the page attributes template.

    Ben

    #50551

    Hi, I am using Pinnacle Premium with Child theme
    I created a custom sidebar. I changed the font of the menu items in that sidebar to Courgette.
    Now I want to change the font of the title of the menu of that custom sidebar. I entered the css:
    ` .page-id-24 .sidebar {
    font-size: 20px;
    line-height:20px;
    font-family: Courgette;
    font-style: italic; }

    .page-id-24 .sidebar .widget-title {
    text-align: left;
    font-size: 25px;
    color: #ff9900;
    line-height:35px;
    font-family: Pacifico;
    font-style: italic; }

    `
    All works well except the title wont take the font Pacifico – which is a google font, it displays Courgette and I thought the complete Google font came uploaded with this theme. Do I have to first upload Pacifico in Punch Font?

    #50550

    It works! But the line is not the same lenght as the title so it looks a bit akward. It looks good when centered but not when left aligned, so I will remove the line by adding this css instead:

    .page-id-24 .sidebar .widget-title:after {
        display: none;
    }

    Thanks for pointing the css class!

    #50512
    .page-id-24 .sidebar .widget-title:after {
        margin-left: 0;
    }

    You can use that css.

    Ben

    #50481

    ok so right in your plugin settings you set the “Post Type Slug*”

    You have two different post types. “artist” and “artisen” I updated function so it works with both:

    add_filter('kadence_display_sidebar', 'kt_custompost_sidebar');
    function kt_custompost_sidebar($sidebar) {
      if (is_singular( array('artiesten', 'artists') ) ) {
        return false;
      }
      return $sidebar;
    }

    you don’t have a sidebar on those posts.
    Ben

    #50458

    Hi, I am using Pinnacle Premium with a child theme.
    I created a menu to be dislayed in a custom sidebar on a specific page.
    Through css, I moved the sidebar to the left, changed the font styles and made its background transparent.

    @media
    (min-width: 992px) {
    body.page-id-24 .main.col-lg-9 {float:right;}
    }
    .page-id-24 .sidebar .widget-title {
    text-align: left;
    font-size: 25px;
    font-family: Courgette;
    font-style: italic;
    }
    .page-id-24 .sidebar {
    font-size: 20px;
    line-height:20px;
    font-family: Courgette;
    font-style: italic;
    }
    .product-categories li a, .widget_archive li a, .widget_categories li a, .widget_nav_menu li a, .widget_pages li a, .widget_recent_entries li a {
    background: transparent;
    }

    The result is fine except the title underline is centered, it has not followed the sidebar bar title to the left, it remains centered. How can I make this underline to be moved to the left? I will send you the link via a private message.
    Thanks!

    #50425

    Ben,

    I tried but still a lay-out with sidebar.
    Is it possible that I forgot something?

    For your information:
    The build-in “Staff” function is perfect, only in the permalink “staff” should be “artists” as well the tekst Artist, Add new Artist, all Artists.

    Is this easier to realize?

    Regards,
    Paul

    #50403

    Hi,

    I use a sidebar on my shop page. I have moved the sidebar to the left with “body .main {float:right;}.” The sidebar is not responsive. I tried to use “display:none” for the sidebar with a media query but it doesn’t solve the problem.

    How do I resolve this?

    Thanks,
    Dave

    #50397

    You can use the woocommerce shortcodes to add product categories to the sidebar. I don’t really recommend this though. the shortcodes are not designed for that small of a space and you will likely need to edit some design rules.

    Ben

    #50384

    Hey,
    Might be a language thing but what do you mean by “map”?

    As for the function. I had a typo.. should be: is_singular not is_sigular

    add_filter('kadence_display_sidebar', 'kt_custompost_sidebar');
    function kt_custompost_sidebar($sidebar) {
      if (is_singular('artists') ) {
        return false;
      }
      return $sidebar;
    }

    Ben

Viewing 20 results - 4,121 through 4,140 (of 5,356 total)