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 '

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

Viewing 20 results - 2,041 through 2,060 (of 13,419 total)
  • Author
    Search Results
  • #228033

    Hi,
    I am using the Ascend: Recent Posts widget, but can’t find where to change the link for the View More Link text at the bottom. It keeps going to the home page, and I want it to link to the blog page.
    Thanks for your help,
    Kim

    #227938

    Hey,
    You can choose a header area with extras from Theme Options > Header Settings and enable widget area in your extras. Then you can use css to position it how you’re wanting. You can also enable a topbar widget area from Theme Options > Topbar Settings.
    Hope that helps!

    Hannah

    #227937

    Hi, do you think is there a way to add a widget bar between the topbar and logo and menu row? just a have an area where insert ads images, or interesting point about the business like (telephoone number, turn poclicy etc etc…? it will be great to have a few columns or an editor where add columns/images or so on….

    thank you very much

    #227879

    Hi
    I have created a website based on the template Shopping.
    I am trying to create a page similar to the blog style photo or mosaic, with photos and links, however, I can not find out how to edit the blog page, nothing appears in the page editor, and I can find no widget to edit.

    Can you help, please

    Thanks
    David

    #227815

    Hi guys, I may have found a bug. When I delete a custom sidebar that I had previously created that was empty, the system somehow moves all of the populated widget content down 1 widget, starting from where the deleted sidebar started from. Pretty odd, but here’s a visual description. If my widgets panel looks like this:

    Custom Sidebar 1
    -Content1(a)
    -Content1(b)
    -Content1(c)

    Custom Sidebar 2

    Custom Sidebar 3
    -Content3(a)
    -Content3(b)
    -Content3(c)
    -Content4(d)

    Custom Sidebar 4
    -Content4(a)
    -Content4(b)

    etc…

    Then when I delete “Custom Sidebar 2”, everything shifts and it looks like this:

    Custom Sidebar 1
    -Content1(a)
    -Content1(b)
    -Content1(c)

    Custom Sidebar 3

    Custom Sidebar 4
    -Content3(a)
    -Content3(b)
    -Content3(c)
    -Content4(d)

    etc…

    Whatever was in the last custom sidebar gets bumped out and ends up in “Inactive Widgets” section on panel. Not a big deal to fix, but it is a pain in the ass if you want to keep you custom sidebar widgets panel clean, and if you happen to have a lot of custom sidebars and content (I do). Just thought you’d like to know. Thanks! T

    #227780

    Hello Hanna,
    I went through the same issue. By apply the code below, only the social media icons on mobile device (iPhone) were centered. Not on computer display.

    #containerfooter .virtue_social_widget.clearfix {
    display: inline-block;
    }
    #containerfooter .widget-first {
    text-align: center;
    }

    #227759

    My bad apologies – I put that in there initially to make the widget line up with the logo above.
    All good -Hannah’s CSS woks perfectly. Thank you.

    #227748

    When I look at your page you are adding a 5px padding around the widget in pagebuilder, this is causing the items to start 5 from the edge. I suggest you edit the widget settings and remove that padding.

    Ben

    #227744

    Try using this css instead:

    .virtue_social_widget a {
        margin-left: 0;
        margin-right: 2px;
    }

    Does that work for you?

    Hannah

    #227705

    Hi I need to align the social media widget flush left on mobile – it’s in the body area of my page.

    #227582
    @media (max-width: 600px) {
        #topbar .widget.widget_sow-editor {
            display:none;
        }
    }
    #topbar .widget.widget_sow-editor {
        position: absolute;
        left: 50%;
        transform: translate( -50%, 0 );
    }
    #topbar .widget.widget_sow-editor p {
        margin: 0;
        line-height: 33px;
    }
    
    #topbar > .container {
        position: relative;
    }
    
    .kad-topbar-left {
        position: static;
    }
    #227577

    If you can just add the widget I can get you the css.

    In forum: Virtue Theme

    In reply to: Category Sidebars

    #227559

    Some other information. Most filters that use attributes check if that attribute is part of the main loop before they show. So widgets like that hide themselves naturally.

    There are also easy widget visibility tools that allow you to customize which widgets show based on the page or category, this makes it easy to manage different widgets for different categories.

    Finally, if you want to make sure there are different sidebars per category then you need to use a child theme, you would have to filter in the sidebar id based on the category, in a child theme functions.php file it would look like this:

    add_filter( 'kadence_sidebar_id', 'custom_sidebar_for_category' );
    function custom_sidebar_for_category( $sidebar ) {
         if( class_exists('woocommerce') ) {
              if ( is_product_category() ) {
                   if ( is_product_category('Category_slug') ) {
                       $sidebar = 'sidebar1';
                   } else if( is_product_category('Category_slug_2') ) {
                       $sidebar = 'sidebar2';
                   }
              }
         }
         return $sidebar;
    }
    #227533

    Hi, in this page i put in the prefooter area a pagebuilder structure widget and i create a 6 columns layout. As you can see if y scrool to the bottom the 6 images are displayed vertically one per row… is there a way to display 2 per row? thanks

    Angelo

    In forum: Virtue Theme

    In reply to: Jumping Header Widget

    #227436

    Instead of the above css, add this:

    @media (max-width: 992px) {
    .col-md-4.clearfix.kad-header-left {
        width: 20%;
        float: left;
    }
    .col-md-8.kad-header-widget {
        width: 80%;
        float: left;
    }
    }

    Then also add this:

    @media (min-width: 992px) {
    .col-md-4.clearfix.kad-header-left {
        width: 10%;
    }
    .col-md-8.kad-header-widget {
        width: 90%;
    }
    }

    As for the menu, are you just wanting the desktop menu to show longer?

    Hannah

    In forum: Virtue Theme

    In reply to: Jumping Header Widget

    #227428

    You can use this css to keep your logo and widget on one line:

    @media (max-width: 965px) {
    .col-md-4.clearfix.kad-header-left {
        width: 50%;
        float: left;
    }
    .col-md-8.kad-header-widget {
        width: 50%;
        float: left;
    }
    }

    Just paste that into your custom css box in Theme Options > Advanced Settings.
    And as for your menu, you just need to assign your menu to mobile navigation from Appearance > Menus.
    Hope that helps!

    Hannah

    In forum: Virtue Theme

    In reply to: WooCommerce

    #227426

    WooCommerce does not have a premium version, only premium extensions. None of which we have ever been included with a theme bundle. We do, however, have our own premium WooCommerce plugins including Kadence Woo Extras. You can find them here: https://www.kadencewp.com/wordpress-plugins/
    You can find fresh downloads for anything you would have originally purchased from here: https://www.kadencewp.com/my-account/
    (that is assuming you have kept up with your subscription).
    Yes, you do need to create a WooCommerce store in order to use the product widget slider.
    Hope that’s helpful!

    Hannah

    In forum: Virtue Theme

    In reply to: WooCommerce

    #227405

    Hannah,
    The link you provided appears to the free version, if I remember correctly the premium WooCommerce was included when I purchased Virtue back in 2016.
    Do I need to set up a store on my website in order to use their product widget slider on my home page or post?

    #227369

    Hi there,
    Is there a way to stop the widget in the header bar jumping to underneath the logo if the browser window width is reduced. I get that it’s trying to be responsive but it’s happening way too soon. (See image)

    Also the same responsive action is making my menu disappear 😒

    Any ideas most welcome.

    #227366

    Hello, on the contact page I have the widgets that appears in the bottom of bage!
    I ask that the page is without widjets but the theme does not answer: /

    Can you help me please

Viewing 20 results - 2,041 through 2,060 (of 13,419 total)