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 - 1,981 through 2,000 (of 13,419 total)
  • Author
    Search Results
  • #230112

    Hello,

    After an update of WP all my content was reverted out of Page Builder and the code was changed in such as way that I cannot put it back into Page Builder and have it format correctly. I have contacted Site Origin already and they have advised me to contact you for help (see bottom of email for details).

    One of the other main problems is that all my accordions break whenever any content is changed. Site Origin even rebuilt a test page, but then I pointed out that editing that page once again broke their buttons.

    I’m trying to find out what will be easiest at this point to fix all the multiple pages on my website? Seems like I may need to do a full re-build.

    Here is a page with the accordions broken because an admin recently tried to update some content:
    This page is one where I disabled the accordion so at least we can see the content, but they are all now open:

    Please advise. Here is the last message from Site Origin:

    Hi Connie, I’ve had everyone here at SiteOrigin looking at this and we’re at a loss. What we can say is that our new page, Classes Test, is functioning normally. Revisions work and we can revert to Editor and then restore into Page Builder. Your existing pages are missing widget shortcodes that allow this functionality (moving from Text tab to Page Builder). We introduced this in 2017, it’s unclear why recent saves, say 11 months ago, didn’t introduce this functionality into your Page Builder source code. On my local computer, I’ve restored to a version of Page Builder from 2016, even then revisions work as expected. We tried restoring page revisions on some of your pages, the issue persists. At the moment, we don’t know of a method to resolve the problem on the pages reverted out of Page Builder. I’m really sorry for the hassle this has caused. If I can send you a complimentary copy of SiteOrigin Premium, please email me on [email protected]. New pages appear to be functioning normally for what that’s worth. For the future, you could consider a backup plugin. doesn’t have scheduled backups but it is handy for the occasional manual snapshot. I’m here for any questions you may have moving forward.

    (but their test page actually isn’t working – the buttons are broken:

    Thank you!

    Connie

    #230093

    Hi,

    I’m using a testimonial carousel block on this page.

    The testimonial doesn’t show the heading or excerpt from the testimonial post.

    On this page, I have built a similar arrangement using Page Builder and the virtue testimonial carousel widget. And this works!

    Any thoughts what might be preventing it showing on the new page?
    Thanks,
    Phil.

    In forum: Ascend Theme
    #230084

    To get the exact widgets from your sidebar you would need to use a page builder. Have you worked with Elementor? https://wordpress.org/plugins/elementor/

    Hannah

    In forum: Ascend Theme
    #230083

    Im using the block editor, the “product search” widget i used for the side bar,

    when i search the blocks i ony have this block to use,

    I had to remove the site origin plugin because it was interfering with one of my plugins, and i choose to keep the plugin instead

    In forum: Ascend Theme
    #230082

    Which editor are you using? If using a page builder such as elementor or siteorigin you can easily add widgets to the page. Or if using the block editor you can add whatever blocks to the page you would like.

    Hannah

    In forum: Ascend Theme
    #230081

    ok ive done this, but not happy with how it looks, i would like it to display like the widget in the sidebar, can we do this also?

    In forum: Ascend Theme
    #230011

    Hey Mark,
    You would have to use css:

    .kad-topbar-widget-area {
        display: flex;
        align-items: center;
    }

    How are you wanting it to look on mobile?

    Ben

    #230009

    HI Guys it’s Mark
    I got you another membership for you to my client Tony.

    ASCEND question
    I want to put the lovely ascend social midget with the beautiful rollovers in the top bar, and ideally along site it the phone number with an icon and the email with an icon.
    so it would be like this with the flexibility to put it on either side.

    (phone icon) 800-900-0000 | (mail icon) email address linked (ascend social widget icons)

    so basically when I try and put these in the top bar as a widget the ascend widget works there,
    BUT when I try and add the texT next to it in a text widget, it breaks to two lines.
    Id ratehr be able to do this with a widget instead of css.
    I wish I could do this on ascend and have it work on mobile without haveing to fuss with css.
    It would look nice too.

    Thoughts?

    #229992

    Hi Pam,
    Try adding this to your custom css box in Theme Options > Custom CSS:

    .kad-topbar-flex-item.kad-topbar-widget-area.kad-topbar-item-right, .kt-topbar-right {
    width: 100%;
    }
    div#widget_kadence_social-3 {
    float: left;
    }
    .kt-topbar-right .widget-inner {
        float: right;
    }

    Hope that helps!

    Hannah

    #229938

    Have you tried with wc_fragments_refreshed

    For example:

    
    <script type="text/javascript">
                    // Ready state
                    (function($){ 
    
                        $( document.body ).on( 'added_to_cart wc_fragments_refreshed load', function(){
                           if ( $('.kt-header-extras span.kt-cart-total').text() != '0' ) {
    							$('.menu-widget-area-kt .sm-kad-btn').hide();
    					   }
    					   else {
    							$('.menu-widget-area-kt .sm-kad-btn').hide();
    					   }
                        });
    
                    })(jQuery); // "jQuery" Working with WP (added the $ alias as argument)
                </script>
    #229917

    Than you very much Ben for your code, it finally create a button with ascend shortcode and put in a extra menu widget and i use this code into the theme footer scripts sections to display and hide it:

    <script type="text/javascript">
    jQuery(document).ready(function ($) {
     if ( $('.kt-header-extras span.kt-cart-total').text() != '0' ) {
    $('.menu-widget-area-kt .sm-kad-btn').show();
    }
    else {
    $('.menu-widget-area-kt .sm-kad-btn').hide();
    }
    });
    </script>

    the problem is that the code execute only when y load the page not when i add/remove an item from the cart…
    to do that i would need a trigger that execute every time the cart change his content… so googling a bit i found a solution and i changed your code to

    ?>
                <script type="text/javascript">
                    // Ready state
                    (function($){ 
    
                        $( document.body ).on( 'added_to_cart', function(){
                           if ( $('.kt-header-extras span.kt-cart-total').text() != '0' ) {
    							$('.menu-widget-area-kt .sm-kad-btn').hide();
    					   }
    					   else {
    							$('.menu-widget-area-kt .sm-kad-btn').hide();
    					   }
                        });
    
                    })(jQuery); // "jQuery" Working with WP (added the $ alias as argument)
                </script>
            <?php

    so now it updates when i add a product but not when a load a page or i remove a product from the cart… so i googled again and i found someone saying to use updated_cart_totals but the code is not working…

    do you have any suggestion?

    #229889

    Hello all,

    I have two sets of pricing tables in this site, one with 3 columns and the other [kadence_pricing_table id=”2″] is only a single column. Well, it won’t let me center it, so I thought I would put it in a two column row and insert an image next to it, but that won’t work either as it squishes the table.

    I found this code below, but this code also effects my 3-column table on another page as well. So, if I knew code I would state in the code to only affect pricing table 2, but I don’t, so can you give me the code for my single table to center in a column widget. Thanks! Here is the site:

    ul.kpt-table-area > li {
    float: none;
    width: 100%;
    }

    In forum: Virtue Theme

    In reply to: Search widget

    #229839

    Yes! I found a very good widget for this: https://ivorysearch.com/

    #229790

    Just to be clear are you talking about the widget area, in the third column or your menu at the bottom right corner?

    What size? What font?

    Ben

    In forum: Virtue Theme

    Topic: Search widget

    #229736

    Hi,

    is it possible use search widget that it searches only from that page where it is placed?
    Or is it possible to have that kind of search that searches only from certain staff group?
    I have now 2 groups professionals/trainees and I´d like to separate the search between them.

    Yours,
    Milla

    Anonymous
    #229637

    Hi there,

    Regarding this website:

    In some places I used the single ‘split content’ widget rather than creating two separate cells with separate content widgets.

    If I had done the latter, then I would be able to manually change the animation speed and timing.

    However, since I used the ‘split content’ widget, I cannot see a place to change the animation settings.

    What I would like is for all duration to be set to 2400 milliseconds, and all delays set to 600 milliseconds as a default.

    Is there CSS you can give me or can you point me to a location where I can make this change within the theme options?

    Thank you in advance for your help!

    Warm regards, Amber

    In forum: Ascend Theme
    #229628

    In your theme options > header settings under “Choose Header Style” I set it to the last option instead of the first. That allowed for the header extras to be split, part being in the first section and another part being in the second.

    Then to make the widget areas go into either I dragged a header widget area down to the bottom in the “Enable and Sort Header Extras”

    Ben

    In forum: Virtue Theme

    In reply to: Topbar layout

    #229622

    You can use css like this:

    #topbar .kad-topbar-right {
        width: 100%;
    }
    
    #topbar .topbar-widget {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    #topbar .kad-topbar-left {
        display: none;
    }
    In forum: Virtue Theme

    In reply to: Topbar layout

    #229541

    Hey,

    Add the phone number into your topbar through a text widget, and then move the search widget into the topbar widget area as well. Then post a link to the site and I can get you the css.
    Ben

    #229522

    Hello,

    I recently opened a topic about my modal not working in the widget area. I was given this code that fixed the issue:

    .kt-header-extras .modal-dialog {
    margin: 30px auto;
    }
    .kt-header-extras .modal-footer {
    margin-top: 15px;
    padding: 19px 20px 20px;
    }
    .kt-header-extras .modal-body {
    padding: 20px;
    }
    .kt-header-extras .modal-header {
    padding: 15px;
    }
    .modal-open .kad-header-menu-outer {
    z-index: 1050 !important;
    }
    .kt-header-extras .modal {
    background: rgba(0,0,0,0.5);
    }
    .modal-backdrop.in {
    opacity: .1;
    }

    I added a secondary issue and now it’s freezing the page when you try to click the button. Any suggestions on an edit for this?

    Thank you,
    David

Viewing 20 results - 1,981 through 2,000 (of 13,419 total)