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

    In reply to: dropdown menu

    #19724

    The theme doesn’t have a built in sidebar dropdown menu, You would need to use a plugin.

    Ben

    In forum: Pinnacle Theme

    In reply to: Mobile issues (iPhone)

    #19709

    Sorry, I was confused with Virtue theme. Your menu is displaying fine in mobile it just isn’t responding. You might should try deactivating plugins to see if something there is blocking it?
    The testimonial carousel is in your sidebar, not the home widget area. And is seems to be responsive when I view it in mobile?

    Hannah

    In forum: Virtue Theme

    In reply to: dropdown menu

    #19701

    Ok, but how can i add dropdown menu for sidebar with theme. I add menu widget, but i don’t receive dropdown. I want sidebar dropdown menu. You can see example what i need there: http://www.klinika-milano.ru

    #19686

    Hey guys,

    I’m not sure how long this has been going on but i just realized that when simple products have add to cart buttons the menu cart item count does not change when adding item to cart.

    The item count will change when loading another page or refreshing but it wont change in real time.
    I don’t have any cache plug-ins running so i don’t think that is the problem.

    On the other hand when adding an item from the shop archive pages the woocommerce sidebar cart will add the items once add to cart is clicked but still the main menu cart will not add the products.

    I’ve deactivated all plugins with no change as well.

    Hope to hear from someone soon. Thanks

    In forum: Pinnacle Theme

    In reply to: Blog page not updating

    #19656

    I have two sidebars. One sidebar for my blog and one for the rest of the site.

    This url
    http://officionotary.com/blog/

    Should look like this one
    http://officionotary.com/2014/10/

    In forum: Pinnacle Theme

    In reply to: Blog page not updating

    #19655

    What works fine? Your sidebar? Your sidebar is displaying fine on your blog page. And you are using the blog grid template, correct? Not just the blog template?

    In forum: Pinnacle Theme

    In reply to: Blog page not updating

    #19652

    So you’ve selected the blog grid template under page attributes? And under sidebar options you’ve selected yes, show and chosen a sidebar? If this is the case and it’s still not updating I would try deactivating plugins and see if that doesn’t fix something.

    Hannah

    In forum: Pinnacle Theme

    In reply to: Blog page not updating

    #19649

    No, the post are fine but the blog grid layoit and blog sidebar won’t change to what my settings are.

    In forum: Virtue Theme

    In reply to: Increase Sidebar Width

    #19428

    switch the css with :

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

    that will make sure to only target pages with a sidebar.

    Ben

    #19408

    Hi Ben

    Those worked perfectly thanks and I have even started to copy the method and created the same border around a sidebar widget.

    The Widget is a Woocommerce .product_list_widget

    This is the code I used.

    .product_list_widget {
    border: 2px solid #444;
    }

    .product_list_widget {
    border-radius: 10px;
    }

    It needs more padding between the text and the border so after inspecting the item I thought the following would work

    .product_list_widget {
    padding: 10;
    margin: 0;
    }

    I also tried

    .product_list_widget li {
    padding: 10;
    margin: 0;
    }

    But again this didn’t seem to do anything.

    Could you point me in the correct direction please.

    I am learning 🙂

    In forum: Virtue Theme

    In reply to: Increase Sidebar Width

    #19402

    I wanted to do the opposite and reduce my sidebar.

    I have used this code and adjusted the percentages – All works and looks as I wanted.

    BUT the main/home page has now followed the same format – I have a blank space where a sidebar would normally be.

    I have the full page width selected in the Home Layout.

    How do I exclude the Home page from the above code?

    #19338

    Hello Virtue Team! Here I am again with a question. I am doing a bilingual website and I am using a form (done with the Contact Form Builder Plugin) and it is placed on the primary sidebar (I added it on the widget section of the theme). The default language is English, but when I switch any page from English to French I would like that the form will also switch to the French version. It is not appropriate to have an French page content with an English form. I tried using the WPML plugin string tool, but the form or widget with the English form is not listed so I can do the translation. What can I do to solve this issue? I appreciate your answer on this issue.

    PS: Ben from your team assisted me last week with a similar issue; which was switching the logo from English to French, by adding a little line of code to the wpml-config.xml file, I tried using it with this issue also, but I was not able to do it. The code was a follows:
    <key name=”x1_virtue_logo_upload”>
    <key name=”url” />
    </key>
    <key name=”x2_virtue_logo_upload”>
    <key name=”url” />
    </key>

    #19282

    Hey, something like this can only be displayed through a widget. Although there are many different places to put a widget. You can put it in the topbar, sidebar, header, footer, home widget area, or anywhere on a page through page builder. If you’re wanting it to appear on the side I would suggest adding this widget to a sidebar and adding that to your pages.

    Hannah

    #19255

    After updating to 2.6.5 today I was surprised to see that all my sidebars and footers were empty. I’m using a Child Theme and WP 4.0, all plugins is up to date. Any idea what happened? No catastrophe, but about 30 minutes job to activate all widgets again in the sidebars.

    In forum: Virtue Theme
    #19247

    Try adding this to your custom css box in theme options > advanced settings:

    @media (max-width:900px) {
    .sidebar {
    display: none;
    }
    }

    Hannah

    #19243

    How can i hide sidebar in mobile view (smaller window size)? I can hide main menu in mobile view, how can i do the same for sidebar?

    #19202

    sorry it should have been:

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

    Ben

    #19151

    You can target them all with a function…

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

    But I think this is a good add. I’ll add in the metatbox option to the next version coming out tomorrow.

    Ben

    #19135

    Hi Ben,
    how can i hide the sidebar in the single-Staff pages, so this page displayed in “Full Width”?
    Thank you and best regards, and sorry for my broken englisch
    Sven

    #19126

    Hey, you can try this for the left margin:

    .sidebar ul {
    margin: 0;
    }
    

    And this for the text layer:

    .tp-caption.small_light_white-footer {
    width: 100%;
    }

    Just paste those into your custom css box in theme options > advanced settings.
    Hannah

Viewing 20 results - 4,921 through 4,940 (of 5,356 total)