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,281 through 1,300 (of 5,356 total)
  • Author
    Search Results
  • #211664

    Hey,
    The page you linked to didn’t have a map widget at the top of the sidebar? Can you check the page to confirm its there.

    Ben

    In forum: Virtue Theme
    #211645

    I am trying to use the recent post widget in my primary sidebar.

    I added the widget but nothing is showing up in the primary sidebar.

    How do I fix this?

    #211636

    Hello, I’m also having this problem. When I update pages such as http://www.johngrahamtours.com/walking-east-2019/ the map at the top of the sidebar suddenly doesn’t work at all and shows a random place in New York or Cape Town. Up until now, it showed the route of the tour advertised. I have a Google API, etc. I’m not getting any error code, and I’m not sure where to look to find out if there is any problem? Can you see anything?

    In forum: Virtue Theme

    In reply to: Footer column no 5

    #211495

    There isn’t a 5th widget area to call into the footer so you can use a child theme and code this but its more then one small change. You would need to create that 5th widget area first

    Then edit the templates/footer.php file and add in the call for this widget area.

    If you prefer that you can use the functions.php file in your child theme to create the widget area:

    function custom_widget_area_init() {
          register_sidebar(array(
            'name' => __('Footer Column 5', 'virtue'),
            'id' => 'footer_5',
            'before_widget' => '<div class="footer-widget widget"><aside id="%1$s" class="%2$s">',
            'after_widget' => '</aside></div>',
            'before_title' => '<h3>',
            'after_title' => '</h3>',
          );
    }
    add_action('widgets_init', 'custom_widget_area_init');

    Then in the templates footer.php between lines 101 and 102 you can add this:

    <?php if (is_active_sidebar('footer_5') ) { ?>
    <div class="col-md-25 footercol5">
    <?php dynamic_sidebar('footer_5'); ?>
    </div> 
    <?php }; ?>
    <?php } ?>

    Then post back because you will need some css to make this all align in a row.

    Ben

    #211314

    Hi,

    How do I edit a two column layout of my site to make the Sidebar the left column instead of right column?

    Thank You.

    Dawn

    #211166

    ok, I don’t think you need the custom sidebars plugin.

    In your theme options,> blog options scroll down to the archive settings and select to show sidebar then there choose which sidebar you want to show. You can create sidebars through the theme options > misc settings.

    Ben

    #211161

    … I know this is a question outside of the normal question and answer protocol for your help but you would be doing me a great service of help saving me much time with this one area… see I am using another plugin for Meta Data & Taxonomies from this page. I need the Custom Sidebar called: Hotels Filter Search to show up every time you press anything for a Filter Search that you do.

    https://www.allhoteltravel.com/search-hotels/

    #211160

    … It’s called: Custom Sidebars

    Allows you to create widgetized areas and custom sidebars. Replace whole sidebars or single widgets for specific posts and pages.

    Version 3.2.2 | By WPMU DEV

    #211158

    … I’m sorry Kevin. What I really need to ask you is how do I get the Custom Sidebar Plugin to work for this category search results page?

    #211157

    Hi,

    Thank you for your quick response, Kevin.

    I need to actually edit to make the category results show only 2/3 of the page (left aligned). My objective is to use a Custom Sidebar plugin for this page, as well.

    https://www.allhoteltravel.com/search-hotels/?slg=hotels&mdf_cat=210&page_mdf=f47cc721e63b77b4db2be2b76172b912

    Thank You.

    #211085

    Thanks, Kevin. So easy when you know how! WordPress is such a thicket and a maze of interacting options and parameters.

    And now I can do away with the Easy Custom Sidebars plugin: an unneeded complication.

    #211052

    1. For your account sidebar text, you can change the font with this CSS:

    .woocommerce-MyAccount-navigation ul li a {
        font-weight: 500;
        font-size: 16px;
    }

    For the content of your my account page, I don’t really know of a way to break the text up easily. You can use this CSS to increase the font size and improve readability:

    .woocommerce-MyAccount-content p {
        font-size: 16px;
    }

    2. Here’s some CSS that will capitalize the buttons and that heading:

    table.shop_table button, .cart_totals h2 {
        text-transform: capitalize;
    }

    This CSS will move the select boxes over a bit:

    .form-row label {
        padding-right: 15px;
    }

    This CSS will move the text away from the radio buttons:

    ul#shipping_method label {
        padding-left: 10px;
    }

    3. The above piece of CSS will also add the spacing for the sipping labels on your checkout.

    This should move the radiobutton down a bit:

    .woocommerce form .form-row .input-checkbox, .woocommerce-page form .form-row .input-checkbox {
        margin-top: 4px;
    }

    This will center the radio button under the credit card payment option:

    input#wc-stripe-new-payment-method {
        height: 12px !important;
    }

    4. Setting the max-width for the left row should get rid of the overlap in the middle:

    th.woocommerce-table__product-name.product-name {
        max-width: 40%;
    }

    I’m still working on getting the width and background for the columns changed, but I’ll let you know if I’m able to figure it out.

    You can add or adjust any of the font properties within that CSS. Let me know if you need any help with that. Add custom CSS to Theme Options> Custom CSS.

    As for the plugin options, I think these kinds of customizations are best done with CSS. I don’t know of a plugin that offers the ability to make the changes to these small details without CSS.

    For customizing the fields and overall layout, you can do so with our WooExtras plugin:
    https://www.kadencewp.com/kadence-woocommerce-extras/

    and our WooCommerce template builder plugin:
    https://www.kadencewp.com/product/kadence-woo-template-builder/

    Those plugins are available to you if you’re a Kadence Member. Let me know if this is helpful!

    -Kevin

    In forum: Virtue Theme

    In reply to: side bar as menu

    #211037

    Hey,
    There isn’t a built-in function to do this across your site, but a workaround could be to add a collapsible menu (like a tabs or accordion shortcode) to your page, then use css and media queries to hide it on desktop. Then you could also use css to hide your sidebar on mobile. Would something like that work for you?

    Hannah

    In forum: Virtue Theme

    In reply to: side bar as menu

    #211036

    Hello,

    You would have to find a plugin that allows for this. The sidebar menu isn’t designed for this type of functionality.

    -Kevin

    #211031

    Hello,

    You can delete the sidebars that you’ve created within the theme in Theme Options> Misc Settings, under “Create Sidebars.”

    Let me know if that works for you.

    -Kevin

    In forum: Virtue Theme
    #211026

    hi! i was wondering if there is a way to convert the sidebar into a collapsed menu in mobile site….instad of viewing a huge list under each product or catergory it could be useful like a small button collapsed menu with product categories above page

    #211015

    When I was new to WordPress and Virtue, I created some sidebars without really knowing what I was doing. Now I have one called sidebar2 and another called menu_sidebar, and I’d like either to rename them to something meaningful, or preferably to delete them from the list completely.

    Internet searches typically tell me this sort of thing: “You’ll need to edit index.php, archive.php, page.php, single.php, home.php and any other if they display sidebar.” Good grief. Is there no simpler way of erasing my two mistakes?

    And yes, I know about using fullwidth pages and all that. Not what I’m after. I’ve found a plugin called Easy Custom Sidebars, which lets me create and delete sidebars, but not delete any of the existing sidebars.

    Thanks
    Walter

    In forum: Ascend Theme
    #210997

    it’s the startpage/homepage and FF is 64.0, just updated yesterday – the only thing different is that i use the tree tab plugin to show the tabs in a sidebar

    #210704

    Hi Kevin,

    Nope, it’s still the same. I had already done that with the “blog grid”, not “blog” template; so I now switched to the “blog” template just to make sure. The sidebar setting under “Blog List Options” was the same (assigned to the custom sidebar), and it’s still not showing correctly.

    Any other suggestions?

    Jennifer

    #210649

    Hello,

    Try going to the page edit screen for your blog page and under “Blog List Options,” assign the sidebar there.
    http://docs.kadencethemes.com/virtue-premium/templates/blog-page-template/

    Does that work for you?

    -Kevin

Viewing 20 results - 1,281 through 1,300 (of 5,356 total)