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,121 through 2,140 (of 13,419 total)
  • Author
    Search Results
  • #226289

    yeah likly but I would need to see the widget output in action, can you send me a login and I can enable it so I can see what the widget code is.

    Ben

    #226288

    I added a text widget with   so you can see that working.

    Ben

    #226287

    OK, I see, woocommerce looks for content before it will render a tab, content in the form of some text or image or something. The template widget renders later in the page load so when woocommerce checks for content it doesn’t see anything and so it doesn’t render that tab.

    You just will have to add some kind of content into the tab if you want to build your page that way with the elementor template, or you can hack woocommerce and force it to show that tab but I don’t suggest that.

    Ben

    #226285

    Thanks Ben, that plugin worked beautifully.

    Follow-on question that I think may require some CSS. I’m using the topbar on this site for navigation as you may have seen. Is there a way to force the Second Widget Area to display below the topbar region when I using a transparent header?

    In forum: Ascend Theme

    In reply to: Change font color

    #226270

    Yep you can use this css:

    .kadence_recent_posts a.posts_widget_readmore {
        color: #25395A;
    }

    Ben

    #226269

    Hey,
    1. When I view your code there is invalid output try copying this from the forums and pasting:

    #pg-5-2.panel-has-style  {
      background-image:linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));
    }

    2. In your theme options > home layout move “home widget area” to disabled.

    3. You can set the row to fullwidth stretched and that will make the content stretch the width of the screen.

    Ben

    #226261

    In the Product Information area of the theme while editing with Elementor:

    A ‘template widget’ by itself in a section, does not show up on the product page. See

    If I add an image widget (or any other widget) in another section below the section containing the ‘template widget’ … then … they will both show up. See

    I do not know if this is an Elementor problem or a problem with the way that Elementor interfaces with my theme.

    What do you think? What can i do about this?

    Cynthia

    #226255

    You use a plugin like this:

    https://wordpress.org/plugins/widget-visibility-without-jetpack/

    that lets you set the widget to only show on the home page,

    Or this one: https://wordpress.org/plugins/widget-options/

    Ben

    #226242

    You are setting the color to white through your widget, that widget targets heading and p tags only when defining the color. Which means it was never designed with the intent for a list to be put in it. Not saying you can’t it’s just not what the authors of that widget planned for when they created it and wrote the css to style it. I didn’t create that widget so I don’t know all that they where thinking I can only tell you that the css that is styling your normal paragraph or heading text white does not target list tags. So that is why you need to add css.

    What css you add can be so many options. I gave you specific css to the row ID in page builder but if you want to target it another way you certainly can. The point is to be specific to the place where you want the color to be white.

    Does that help and make sense?

    Ben

    #226223

    You would just add the header into a visual editor widget not in the title section but in the content where you can define alignment

    [carousel type="best-products" items="10" columns="6" xscol="2" sscol="1"]

    Ben

    #226213

    Is there a way, through the magic of CSS, to display the Second Widget Area in the header on the home page only? Perhaps I should tell you what I’m trying to do and you’ll have a different approach.

    I want to embed the Calendar Wiz upcoming events widget over the slideshow in the transparent header on the home page, but I only want it to appear on that home page. I know I can add different elements to the slideshow itself, but I don’t think an HTML snippet is one of those things.

    The site is HERE.

    Thoughts? Thanks!!

    #226150

    Can you tell me just what the fix will do? It seems to work, but it seems very specific. Just what is “#panel-7787-8-0-1…” referring to? It seems odd that there has to be custom css code to have the numbered list text show up brighter, when all the other text outside the numbered list is just fine. There doesn’t seem to be any indication that the numbered (or buleted) list has any different color scheme from the text around it. Not sure I understand the distinction. If I change my home page and/or add another “SiteOrigin Hero”, will it require another custom css? That seems kind of odd. I noticed when I did a “widget preview”, the text for the numbered list came out black, while all the other text is white. Isn’t there just a simple way of changing the color of the text in the numbered lists or bulleted lists? Why do I need a custom css?

    See the screen shot of the widget preview I attached.

    widgetpreview

    In forum: Ascend Theme
    #226136

    the server responded with a status of 403

    403 is a forbidden error which means the server is preventing the ajax save, this means something on the server is not set up correctly and flipping a security block. I suspected it had to do with the script you have in your theme options > header and footer scripts. So I removed it and sure enough, the theme options work.

    Meaning your server is preventing the saving of the script to your database because of some incorrect security setting.

    Now because of that, I can’t save the script back into the theme options, or anywhere on your site for that matter, won’t save in a text widget. So here is the script you have have a record of it. You need to contact your host and just using a text widget in a footer widget area show the host that it won’t work, because you are using a text widget and nothing relating to a theme or plugin then they can’t try and tell you it’s a theme or plugin problem (it’s not).

    <script type="text/javascript">
      jQuery(document).ready(function(){
      if (window.location.pathname.indexOf('checkout/order-received/') != -1) {
            var transId = jQuery('.order_details .order:contains("Order") strong').text().replace(/[^0-9]/g,'');
            var totVal = jQuery('.total .woocommerce-Price-amount.amount').text().replace(/[^0-9.]/g,'');
            var shipping;
            if(jQuery('th:contains("Shipping")').siblings().find('span.amount').length == 0)
            {
                shipping = 0;
            }
            else
            {
                shipping  = jQuery('th:contains("Shipping")').siblings().find('span.amount').attr("data-price");
            }
            
        ga('require', 'ecommerce');
        ga('ecommerce:addTransaction', {
          'id': transId, // Transaction ID. Required.
          'affiliation': 'albox', // Affiliation or store name.
          'revenue': parseFloat(totVal), // Grand Total.
          'shipping': shipping, // Shipping.
          'tax': 0 // Tax.
        });
        jQuery('.order_item').each(function() {
          ga('ecommerce:addItem', {
            'id': transId, // Transaction ID. Required.
            'name': jQuery(this).find('.product-name a').text(), // Product name. Required.
            'price': parseFloat(jQuery(this).find('.product-total span.amount').text().replace(/[^0-9.]/g,'')), // Unit price.
            'quantity': parseInt(jQuery(this).find('.product-quantity').text().replace(/[^0-9]/g,'')) // Quantity.
          });
        });
        ga('ecommerce:send');
      }
    });
    
    </script>

    Ben

    In forum: Ascend Theme

    In reply to: Missing/Corrupt Page

    #226076
    This reply has been marked as private.
    #226048

    I’m trying to create a private website. I’ve been publishing pages as “private” and that’s working OK, after I figured out how to deal with the menu system.

    Unfortunately, when I create private posts, widgets like “latest posts” stop listing any private posts. So I’m publishing posts as public and then trying to hide the content, first by hiding menu items (which I can do), and then making the content disappear on the pages themselves. I don’t mind the titles showing, but I don’t want to show images or text content.

    I am able to do this for single posts, by modifying line 69 on content-single.php in my child theme from

    the_content(); to
    if (is_user_logged_in()){the_content();}

    However, I’m trying to eliminate the entries on my blog page, which is showing full posts with readmore links. I’m using the Virtue Premium Blog Template, and thought I could do a similar action for this page by modifying line 52 of content-fullpost.php to be:

    if (is_user_logged_in()){the_content($readmore); }

    However, this doesn’t seem to do anything.

    I did a search for other files which contain “the_content” but couldn’t find anything that seemed relevant.

    Suggestions?

    #226023

    I get the error msg “There was a problem with your action…. when trying to any them option
    I have deactivated all plugins but did not resolve issue.

    WordPress Environment
    Home URL: [?]
    Site URL: [?]
    Redux Version: [?] 3.6.15
    Redux Data Directory Writable: [?] ✔ /home/seomave8/public_html/albox.com.au/wp-content/uploads/redux/
    WP Content URL: [?]
    WP Version: [?] 5.2
    WP Multisite: [?] –
    Permalink Structure: [?] /%postname%/
    Front Page Display: [?] page
    Front Page: [?] Home (#67909)
    Posts Page: [?] Unset
    WP Memory Limit: [?] 40 MB
    Database Table Prefix: [?] Length: 4 – Status: Acceptable
    WP Debug Mode: [?] ✔
    Language: [?] en_US
    Browser
    Browser Info: [?] Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.157 Safari/537.36
    Browser: Chrome
    Version: 74.0.3729.157
    Platform: Windows
    Server Environment
    Server Info: [?] LiteSpeed
    Localhost Environment: [?] –
    PHP Version: [?] 5.6.40
    ABSPATH: [?] /home/seomave8/public_html/albox.com.au/
    PHP Memory Limit: [?] 256 MB
    PHP Post Max Size: [?] 64 MB
    PHP Time Limit: [?] 300
    PHP Max Input Vars: [?] 2000
    PHP Display Errors: [?] ✔
    SUHOSIN Installed: [?] –
    MySQL Version: [?] 5.5.5
    Max Upload Size: [?] 64 MB
    Default Timezone is UTC: [?] ✔
    fsockopen/cURL: [?] ✔
    Remote Post: [?] ✔
    Remote Get: [?] ✔
    Active Plugins (4)
    Redux Framework by Team Redux – 3.6.15
    Black Studio TinyMCE Widget by Black Studio – 2.6.8
    Page Builder by SiteOrigin by SiteOrigin – 2.10.5
    WooCommerce by Automattic – 3.6.3
    Redux Instance: Ascend
    opt_name: [?] ascend
    global_variable: [?] ascend
    dev_mode: [?] ✔
    ajax_save: [?] ✔
    page_slug: [?] kad_options
    page_permissions: [?] manage_options
    menu_type: [?] menu
    page_parent: [?] themes.php
    compiler: [?] ✔
    output: [?] ✔
    output_tag: [?] ✔
    Extensions [?] Vendor Support – 3.0.0
    Kad Slides – 3.0.0
    Kad Icons – 3.0.0
    Advanced Customizer – 0.1.0
    Theme
    Name: [?] Ascend – Premium
    Version: [?] 1.8.0
    Author URL: [?]
    Child Theme: [?] ✕

    #225856

    How to change image widget and height in single product page and also how to hide sidebar in single product page and shop page.

    I tried Theme setting >> shop setting >> Product Image Sizes >> and “off” Product Image Aspect Ratio on product Page

    then try width setting in appearance >> woocommerce >> Product Images >> Main image width

    and final woocxtras >> product gallary >> Product image width

    but nothing works.

    and for sidebar i tried every possible solution.
    and using this css also
    .main-container {width:100%;max-width:100%} #page, .container {width:100%}

    Login Details –

    mail – [email protected]
    password – 1Op3OTUHHZiWRBjhtivo!1Z0

    2FA Backup code
    93535366
    84433999
    72676604
    00484463
    31222143

    #225838

    Can you post a link, with some extra css I could help you force a text widget into the center.

    Ben

    #225824

    Trying to add a small “Free Shipping!” message into the center of the topbar.

    I can add the message into the topbar widget, but it pushes the topbar icon menu down instead of leaving it in the topbar.

    I have topbar icons on left and cart total and search on the right.

    In forum: Virtue Theme

    In reply to: font colors

    #225764
    This reply has been marked as private.
Viewing 20 results - 2,121 through 2,140 (of 13,419 total)