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,361 through 3,380 (of 5,356 total)
  • Author
    Search Results
  • #87520

    Hello! I’d like to know if it’s possible to add content using Pagebuilder that appears above the sidebar and blog posts on my homepage ( I’m trying to achieve something akin to this ( Not sure if, like the example, I want a slider, image, buttons, etc. which is why I’d like to use PageBuilder. If, however, I can only get a slider or other widget above the blog posts using a different means (not PageBuilder) then just let me know. I’ll take what I can get! 🙂

    Currently my home page is set to display my blog posts (per the setting in the Reading tab/section).

    In forum: Pinnacle Theme
    #87452

    Hi Thomas,
    There isn’t a built-in option for this. What you could do is use a default template and add a sidebar to it then use a plugin like the following to add a contact form -https://wordpress.org/plugins/contact-form-7/
    Hope that’s helpful!

    Hannah

    #87374

    Hi, Is it possible to add a sidebar to the Pinnacle Contact page?
    Thanks
    Tom

    In forum: Pinnacle Theme

    In reply to: Gallery columns

    #87337

    I’m using the standard gallery supplied by your theme, here: http://naturalplacesphotography.com/west-coast-trail/

    This particular example has no sidebar and is full width, but I will likely put some posts up with a sidebar as well.

    The shortcode for this gallery looks like this:
    [gallery columns="8" ids="444,445,446,447,448,449,450,451,452,453,454,455,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,483,481,482,484,485,486,487,509,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508"]

    I specified 8 columns but only 6 show up with or without the sidebar. If there is a sidebar they do show up with smaller thumbnails.

    Thanks, Glenn

    #87222

    Hey,
    You can’t, You can’t have a different sidebar based on page pagination. There is no option for it. But you can use css to hide items based on the page number your on.

    Is there something in particular you’re wanting to hide for those other pages?

    Ben

    In forum: Virtue Theme

    In reply to: Sidebar

    #87191

    This sidebars in shop category do not displayed!

    In forum: Virtue Theme

    Topic: Sidebar

    #87190

    After update setup “Display the sidebar on Shop Page?” has disappeared from Shop settings. “Display the sidebar on Product Category Pages?” also disappeared.

    screenshot

    #87182

    Hi Hannah,

    I tried your solution but it’s not working.

    I have the same sidebar on HOME PAGE and http://www.voyageavecnous.fr/page/2/ , http://www.voyageavecnous.fr/page/3/ etc…

    I would like a unique sidebar only for http://www.voyageavecnous.fr/ and not on page 2 etc…

    How can i do that ? thanks

    #87106

    Thanks Ben. I think it worked. I used the sidebar template and add your code. We shall see when others submit their testimonies. I simply changed the code to 2 columns.

    http://mychoiceconnection.com/testimonials/

    #87103

    Hi Emmanuel,
    I would suggest creating a new sidebar. You can do this from Theme Options > Misc Settings and then from Appearance > Widgets add whatever content you want. Then select that sidebar from Theme Options > Home Layout.
    Hope that helps!

    Hannah

    #87074

    Hi, I’m using the Virtue Theme on http://www.voyageavecnous.fr

    I would like to write something only on the right sidebar home page.
    I do not want it to appear on page 2 or 3 (example : )

    How can i do please ?

    Thanks

    #87036

    You can’t using the testimonial grid page.

    but you can add the testimonial shortcodes to a page with a sidebar or for example the sidebar template.

    [testimonial_posts columns="4" items="20"]

    Ben

    #86999

    How can I have the sidebar widgets showing on testimonial page that are showing on other pages?


    In forum: Pinnacle Theme
    #86986

    ok, you can add this css:

    @media (min-width: 992px){
      .sidebar #black-studio-tinymce-2 {
        margin-top: 116px;
    }
    }

    Ben

    In forum: Virtue Theme

    In reply to: Search results

    #86877

    With css you can add this into the theme options > advnaced settings:

    .search-results #ktsidebar {
        display: none;
    }
    .search-results .main {
        width: 100%;
    }

    Or using a child theme you can hook this.

    add_filter('kadence_display_sidebar', 'search_sidebar');
    
    function search_sidebar($sidebar) {
      if (is_search()) {
        return false;
      }
      return $sidebar;
    }
    

    Ben

    #86871

    You can use css like this

    @media (min-width: 480px){
    .single-portfolio .main.col-lg-9 {
        width: 50%;
        float: left;
    }
    .single-portfolio aside.kad-sidebar {
        width: 50%;
        float: left;
    }
    }
    @media (min-width: 768px) {
    .single-portfolio .main.col-lg-9 {
        width: 66.66%;
        float: left;
    }
    .single-portfolio aside.kad-sidebar {
        width: 33.33%;
        float: left;
    }
    }
    In forum: Virtue Theme

    In reply to: Display of goods

    #86849

    1. You can add a menu to your sidebar using the wordpress custom menu widget. If you want a sidebar on your categories pages you can turn that on in your theme options > shop settings.

    2. To place what in the center? I need a link or more information.

    3. For mobile you can assign your own custom menu to it. so if you would like the mobile to be a mix of menus create a menu that is a mix and assign that to mobile.

    4. You can add css like this:

    @media (max-width: 767px){
        .next_carousel, .prev_carousel {
        opacity: .8;
    }
    }
    

    Ben

    In forum: Virtue Theme
    #86823

    I would like to have the sidebar show on my blog page but I must be missing something in my settings. I’ve created categories to my posts and added slideshows but nothing shows up.
    Zimkids

    Thanks.

    In forum: Virtue Theme
    #86764

    I want a full width (no sidebar) on search results how do i do this?

    Do i have to edit CSS?

    #86752

    Hi, Ben and Hannah

    Can you please advise on how to make content and sidebar take 50%/50% of the screen on Ipad mini vertically oriented, 66%/33% on desktop and Ipad mini horizontally oriented, and 90%/90% and centered on smartphones. (Only for portfolio-pages)

Viewing 20 results - 3,361 through 3,380 (of 5,356 total)