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,121 through 3,140 (of 5,356 total)
  • Author
    Search Results
  • #97565

    hello

    i am trying to make a portfolio page for a furniture company, and i like the functionality of the “portfolio” page, but I am wanting to replace the portfolionav with menus on the sidebar..

    so for example, i want to have menus that says

    “by brand” and it will have all of the brands they offer
    “by room” and it will show the rooms the furniture is for … and so forth . i will need about 4 different categories, and each one has about 5-10 different options in it.. that is why i am trying to get rid of the top navigation (its too cluttered with all of the categories)

    is this something i can do ? i already figured out how to make the portfolio page with the sidebar on the side.. now im just trying to figure out how to make the menus do the filtering the portfolionav does..

    thank you in advance for your help..

    #97530

    Hello,

    I have a question concerning ads management with virtue premium theme.

    For example:
    I have a new advertiser and want to publish his ads in all existing posts and/or pages. So I need to replace the existing ads.
    At the moment I insert the ads with page builder -> widget -> text. In this case it would be necessary to change everything manually.

    Is there the possibility to manage the ads centrally (change it once) or do I need a plugin? If yes which one would be the best?
    Or is there a kadence widget which can be used?

    Edit: For sidebar I use the widget, so there the solution is clear. But for the body of pages or posts I am baffled

    Thanks in advance.

    KR

    #97443

    Hello,

    I would like to narrow the content area. The content area and the sidebar should stay centered.

    I tried the following css code, but content area and sidebar moved left instead of staying centered:


    @media
    (min-width: 1200px) {
    #content .main.col-lg-9 {width: 65%;}
    #content aside.col-lg-3 {width: 30%;}
    }

    What can I do now? I would appreciate your advice.

    #97421

    Hello team,

    I wish to display popular post (who gets more comments) in primary sidebar. Is there any provision or customization that i can do without going to plugin?

    #97306

    Hey,
    Yes you probably need to look at how a template wrapper works. You will need to create a custom base template if your wanting to have a differnet header and footer on a page (although I would strongly suggest just using the built in landing page template since it’s empty of any header and footer then you can use page-builder to create any page style you want.)

    Regardless you should look at the base-page-landing.php you will need a copy of that and page-landing.php

    Then to unhook the sidebar you’re going to need to use a function like this:

    function kad_sidebar_custom_page($sidebar) {
      if (is_page_template('page-custom.php')) {
        return false;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_custom_page');

    All this seems like a lot for something thats already built in option to create using the theme templates.

    Ben

    In forum: Virtue Theme

    In reply to: sidebar button widget

    #97187

    Hey Lisa,
    The size of the button becomes dependent on the content. Try adding this to your custom css box in Theme Options > Advanced Settings:

    .sidebar .kad-btn-primary {
        width: 200px !important;
        text-align: center;
    }

    Hope it works for you!

    Hannah

    #97131

    Hey Laura,
    1. You can set a featured image for each of your posts in the post edit page(s). See here- http://docs.kadencethemes.com/virtue-premium/blog-posts/
    Just ensure that your summary is set to show an image and not just text.

    2. You can add/edit/remove content from the sidebar from Appearance > Widgets.

    Hope that helps!
    Hannah

    #97110

    Hi, I was wondering, how can I add thumbnail photo to the Recent Post Archive like on the demo page:

    Another question, how I can remove meta texts from blog post default template sidebar?

    Thank you for your help.

    #97080

    Hey Kristiina,
    1. Try adding this to your custom css:

    @media (max-width: 468px) {
    .col-md-4.clearfix.kad-header-left {
        width: 50%;
        float: left;
    }
    div#mobile-nav-trigger {
        width: 50%;
        float: right;
        margin-top: -75px;
    }
    }

    2. I’m seeing this in your css:

    .col-md-8, .span8 {
        width: 79%;
    }

    Are you adding that? Removing should push your sidebar back to the right side.

    Hannah

    In forum: Virtue Theme

    In reply to: Custom Sidebars

    #97036

    In a page you need to use the sidebar template then save the page. see here: http://docs.kadencethemes.com/virtue-premium/templates/sidebar/

    In a product you can also choose which in a similar metabox option for choose which sidebar.

    As for categories you can’t change on a category by category basis in the options so you would need to use a plugin like I suggest.

    Ben

    In forum: Virtue Theme

    In reply to: Custom Sidebars

    #97011

    I am creating new custom bar in misc Settings, I add content in Widgets, but i cant find my custom sidebar in the page which i want to edit. Where should my custom sidebar appear? Can I apply this on category or product post?

    thanks

    In forum: Virtue Theme

    In reply to: Custom Sidebars

    #97008

    Else you can use a plugin like this and define which widgets show where: https://wordpress.org/plugins/woosidebars/

    Ben

    In forum: Virtue Theme

    In reply to: Custom Sidebars

    #97001

    Hey Dimitris,
    You can create custom sidebars in Theme Options > Misc Settings. Then add content from Appearance > Widgets. Then in your edit page(s) you can select your desired sidebar. Does this work for you?

    Hannah

    In forum: Virtue Theme
    #97000

    Hi,
    I want to add custom sidebars with WooCommerce Product Filter to different pages, categories and products. Is it possible? Can you walk me through the steps?

    thanks

    In forum: Virtue Theme

    In reply to: Short Description

    #96707

    Hi Ben and Hannah,

    Thanks for the responses. The support is great for this theme!
    I have followed the instructions on the link Ben provided and have created a folder on my desktop with a Notepad style sheet containing the following:
    /*
    Theme Name: Virtue Premium Child
    Theme URI: http://tbws.co.uk/virtue-premium-child/
    Description: Virtue Premium Child Theme
    Author: Paul Robinson
    Author URI: http://tbws.co.uk
    Template: virtue_premium
    Version: 1.0.0
    Tags: light, dark, two-columns, right-sidebar, responsive-layout
    Text Domain: virtue-child
    */
    add_action(‘woocommerce_single_product_summary’, ‘my_custom_text_product’, 15);
    function my_custom_text_product() {
    echo ‘<h4>Call now for best prices</h4>’;
    }

    When i go to Appearance > Themes theres no theme there?

    Any other useful tips?

    Cheers,
    Paul

    #96598
    This reply has been marked as private.
    #96568

    You could accomplish this by going into Theme Options> Main Settings, set “Sidebar Side of page” to be Left.

    Then, in Appearance> widgets, you should go in and assign a “Custom Menu” to your sidebar. You’ll have the option to assign an already existing menu to that area, but if you want a different menu to display, you’ll need to go into Appearance> Menus and setup the desired menu that you’ll assign to that area.

    Hopefully that helps!

    #96545

    Hi,

    I’m working with ‘Portfolio’ pages and had a few questions:

    Permalinks: I’ve created three Portfolio Types: Category 1, Category 2, and Category 3 and want the permalink base to match the portfolio type (i.e. http://www.domain.com/category1; http://www.domain.com/category2, etc.). Is this possible? If so, would I do this in the ‘Portfolio Option -> Permalink Base’ section using special syntax?

    Portfolio Nav: On the ‘Portfolio’ pages, how do I remove Portfolio navigation arrows and icon grid appearing in the top right?

    Sidebar: Is it possible to have a sidebar on the Portfolio pages?

    Thanks,
    J

    #96486

    Ben, I updated the theme, and while the blog posts shortcode now does work and show the excerpts (not the full post, yay!) it is not formatting correctly. I have my blog posts covering just about the full width of the page. (One column in page builder covering 100%, except of course the sidebar.) Yet, when I use the shortcode, the width of the post excerpts are reduced – about half the width of my actual column, and when I place them one on top of the other (shortcode on top of post loop widget) you can see the shortcode isn’t the same width (even nearly) to the post loop widget. In summary, it’s still not working like it used to and I’m still stuck using the post look widget which just isn’t the same. The shortcode still has issues. Please fix! Appreciated, -Dan

    In forum: Virtue Theme

    In reply to: Category page problem

    #96476

    Try adding this to your custom css:

    .sidebar a:hover {
        color: red !important;
    }

    Hannah

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