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 'widget area'

Home / Forums / Search / Search Results for 'widget area'

Viewing 20 results - 2,221 through 2,240 (of 2,437 total)
  • Author
    Search Results
  • #26933

    Hey,
    1. You can use this css in your theme option > advanced settings:

    .topbarmenu ul li a {
    font-size: 16px;
    }

    2. You can make the right side of the topbar a widget area (theme options > topbar settings)
    Then you can add any widget in to the topbar widget area including your search widget.

    Ben

    In forum: Virtue Theme

    In reply to: new widget area

    #26882

    Thanks for the reply.
    I added a new widget area with plugin “Widget Shortcode” and added <?php dynamic_sidebar( 'Arbitrary' ); ?> to template/content-single.php file line 171.

    In forum: Virtue Theme

    In reply to: Page speed

    #26715

    Hi Ben,

    Not sure what’s happening with the site as I haven’t done anything since we last spoke but it seems the widgets aren’t fully loading.
    E.g. the testimonials only load sometimes, other times only a few load…you will have to refresh the page a few times to see this: http://movemigration.com.au/testimonials/

    Similarly for the Blog entries: http://movemigration.com.au/blog/

    And it looks like the same issue for my pulldown menu …the menus expand but don’t disappear after the cursor moves away.

    It’s also affecting my woocommerce products where some product images will load sometimes. The links will stil be there but the area where they are meant to be displayed will be blank: http://movemigration.com.au/standalone/ and http://movemigration.com.au/packages/

    Would appreciate your help with this.

    #26705

    Hey, I think your best is to use a kadence or revolution slider and place them above the header. You could add a custom menu widget through the home widget area or page builder, but the layout wouldn’t be the same at all.
    Hope that helps!

    Hannah

    In forum: Virtue Theme

    In reply to: new widget area

    #26684

    Hey,
    So if you want a to go a route where you don’t use a child theme you can use this plugin and add the shortcode to the bottom of your post: https://wordpress.org/plugins/widgets-on-pages/

    else
    You can add the function to your child theme functions file.

    You can add this part to the template/content-single.php file line: 169

    <?php if ( is_active_sidebar( 'content-bottom-1' ) ) : ?>
    <div class="content-bottom-1" role="complementary">
    <?php dynamic_sidebar( 'content-bottom-1' ); ?>
    </div>
    <?php endif; // end content-bottom widget area ?>

    Ben

    #26675

    Ben, that looks better..

    – Is there a way to make that menu span across the entire container so that it lines up with the slider and widgets?
    – Can I remove the shadow lines around the website? On the sides of the Heading, Menu and Body and Footer areas?
    – I removed Page Headers as I plan to do something custom in the body. But it appears the area where the header is shown is still there and pushing the page content down. Can I remove the header section and push the content up? See the Home Page…

    FYI, I used this to remove the page headers:
    .page-header {
    display: none;
    }

    In forum: Virtue Theme
    #26646

    Hello! I would like to add a new widget area (dynamic sidebar) into Virtue Premium Theme. I need a widget at the bottom of the post for placing an advertising banner.

    Example of an advertising banner at the bottom of the post

    Example of an advertising banner on screenshot

    My website

    I’m going to modify child theme according to the instructions
    Where exactly can I implement the code?

    I mean the following code:
    for functions.php

    function tq_widgets_init() {
    register_sidebar( array(
    'name' => 'Content bottom',
    'id' => 'content-bottom-1',
    'description' => 'Area under the content',
    'before_widget' => '<div>',
    'after_widget' => '</div>',
    'before_title' => '<h3 class="widget-content-bottom">',
    'after_title' => '</h3>',
    ) );
    }
    add_action( 'widgets_init', 'tq_widgets_init' );

    for sidebar.php

    <?php if ( is_active_sidebar( 'content-bottom-1' ) ) : ?>
    <div class="content-bottom-1" role="complementary">
    <?php dynamic_sidebar( 'content-bottom-1' ); ?>
    </div>
    <?php endif; // end content-bottom widget area ?>

    for content-single.php

    <?php get_sidebar('content-bottom-1'); ?>

    #26524

    You can use a child theme and add in the woocommerce template, or use a function and hook into the woocomerce template. Or you can use a plugin like this: https://wordpress.org/plugins/widgets-on-pages/ and just add the plugin shortcode instead of the long shortcode you added. Then add your code to the widget area.

    Are you using a child theme right now?

    Ben

    In forum: Virtue Theme
    #26503

    Hey ozgu,
    I think your best bet here is to leave the title blank and add an h3 title to the text area of the visual editor widget. Does that make sense?

    Hannah

    #26429

    I am trying to develop a site similar to

    I am using Virtue Premium.

    How can I use a single background image like this site and have the content/widget areas overlay?

    Is there a way to space out the content and widget areas like this?

    Thanks!

    In forum: Virtue Theme

    In reply to: Widget Resources

    #26340

    You just use the wordpress “custom menu” widget. Place that in your footer widget area and select which menu you want to use from your menus page.

    Ben

    In forum: Virtue Theme
    #26338

    Hello,

    Could explain me how to create the resources menu (Support, Terms, Login and so on) that appears on the bottom of the website kadencetheme.com on the widget area.

    Thanks
    Antonio

    #26226

    Yes, it works with a little of playing with the widget’s position in the widget area and the left or right align in the css. Thanks

    #25828

    Hi,

    How could I get rid of the space between the Image Menu and Widget Area sections of my homepage?

    You can see the problem at

    Thanks,

    Kirsty

    #25816

    Hello,

    In my homepage at I’m using a post carousel widget in the widget area. Is it possible to have an option to exclude some categories?
    Because choosing “All” of course also the uncategorized post will be shown.
    I wish isn’t complicated.

    thanks
    Angelo

    #25621

    You can add an icon to your topbar menu if that’s what you mean. This tutorial will show you how- https://www.kadencewp.com/add-icons-to-your-menu-virtue-theme/
    If you wanted to add an actual image you can it through to the topbar widget area.

    Hannah

    #25130

    You can see some more shortcodes here: http://docs.kadencethemes.com/virtue/#shortcodes

    So like the virtue: carousel widget. That is the same as the shortcode I posted above.

    The home widget area is an option in the theme options > home layout. You can add things there in the appearance > widgets page.

    Ben

    #25123

    Thanks Ben i’ve learnt this over a three day period it is seared into my overtired strained brain now, on the plus side i have got more familiar with short codes and working without page builder. Re your code though, obviously i can paste this in and it works but how to customise? i cant message you every time to spoon feed me coding, is there a wysywig shortcode plugin or pre built shortcode cheats for newbies you could recommend? The drop down shortcodes in the virtue theme are fairly limited,the virtue image carousel that can displays category products is great but as far as i know you can only add it to a widgetised area or via page builder.
    One more burning question if you dont mind…where in gods name is the home widget area located?
    Thanks for your help
    Regards Richard

    #25042

    I’m not aware of a good free plugin like that. I’ve seen some premium ones but haven’t tried them.
    You could try going through another plugin to make it work, some plugins that don’t work in pagebuilder will work in the widgets page. If that is the case you can use this plugin to add a widget area to your page and then try the counter: https://wordpress.org/plugins/widgets-on-pages/

    Ben

    #24953

    Hello, the top widget on the sidebar spills over to the main content on page here in mobile view

    I have some custom CSS for the YouTube player which may be interfering:

    .tubepress_normal_embedded_wrapper, .tubepress_thumbnail_area {
    width:auto!important;
    }

    .tubepress_container {
    width: 100% !important;
    height: 75% !important;
    }

    .tubepress_normal_embedded_wrapper{
    position: relative !important;
    padding-bottom: 56.25% !important;
    width:100% !important;
    padding-top: 30px !important;
    height: 0 !important;
    overflow: hidden !important;
    clear:both !important;
    margin-bottom:20px !important;
    }

    .youtube-player {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    }

    Any suggestions?

    Thanks,
    David.

Viewing 20 results - 2,221 through 2,240 (of 2,437 total)