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 'page '

Home / Forums / Search / Search Results for 'page '

Viewing 20 results - 6,121 through 6,140 (of 53,646 total)
  • Author
    Search Results
  • #259320

    Hello Darren,

    Thanks for reaching out to us.

    There is no built-in option to do that on Kadence theme, but the PHP snippet on this page works. Here’s a screen recording of my test – https://share.getcloudapp.com/yAulK5d1. Please make sure you add this code on a child theme and also double check if your My Account page is set on WooCommerce > Advance settings – https://share.getcloudapp.com/JrugO2jA.

    Hope this helps.

    Regards,
    Karla

    #259317

    Question about Kadence Membership. I joined a few years ago and it says I have 1 Kadence Membership, but the price I paid is quite a bit lower than currently advertised. Something like $139/yr. I was thinking about adding the Kadence Theme, which appears to be “block” oriented, can I get that or do I have to re-join and pay the higher membership price? I have the Kadence Blocks on my site.

    current site is:

    Thanks. /Bob DeCloss

    P.S. One reason for asking, is I see with one or your widgets for blocks is picking particular products to display rather than a bunch by some filter. I also have built a lot of my pages on the “SiteOrigin Pagebuilder” and will probably have to convert to the blocks (somehow), which will be a real pain, so I have been putting it off!

    #259316

    Hello Phillip,

    Thanks for reaching out to us.

    The Rows per page option should be below the Products per row option – https://share.getcloudapp.com/Z4uy7X8G.

    There is no built in option to make the shop page pagination align center. You can add this custom CSS to make it align center:

    .woocommerce nav.woocommerce-pagination {
       text-align: center;
    }

    Hope this helps and let us know if we can assist you further.

    Best Regards,
    Karla

    #259312

    Hi

    Not sure if this is a Kadence Theme thing, or a block thing, or both.

    If I’m in a block (say Header) and I click on the font size slider – dragging it left and right does cause the header text to enlarge/shrink as expected. However, if I then click on the tablet or mobile icons to adjust for mobile – sliding or editing the value does NOT change the header text as I adjust the value. If I update the page and reload, the changes did take, they just didn’t change “live”.

    Strangely, I also observed that if in the block editor I choose Preview | Mobile. Changing the font size of the header (with the desktop selector chosen, changes the text size live in that small preview window – so it looks like changing the preview mode doesn’t “link” with the correct responsive icon. And even if I then (whilst still Mobile preview) cick the mobile icon, any font size changes are no longer shown live.

    I see the same behaviour in the Customiser, e.g in Transparent header, changing the width of the logo – live preview works fine in desktop view, but when I click the tablet or mobile icon, the live preview no longer reflects the values as I adjust them.

    So I wondered if maybe there was a plugin conflict so I deactivated everything except Kadence Pro, Kadence Blocks and Kadence Blocks Pro – the same thing still happens.

    I even deactivated Kadence Theme and went with Twenty Twenty to see if block live preview would start to work. It didn’t

    The only other thing of note (though unsure if relevant), is the browser console has this error (it stopped appearing, though, when I flipped to Twenty Twenty):

    Uncaught Error: Minified React error #200; visit for the full message or use the non-minified dev environment for full errors and additional helpful warnings.
    at render (react-dom.min.js:227)
    at HTMLDocument.<anonymous> (admin-notices.min.js:7)

    #259309

    I’m curious if you can change where the location of the font is for this menu? You can change the color; however, I’d like to move the text below the image instead of it being located on top of the menu image.

    Any assistance would be greatly appreciated.

    #259305

    I’ve found my problem, not sure if you can help me. Apparently this plugin DOES add their options into the order and emails, but I added some code to functions.php via a child theme to force the Category field into the order form and all the emails being generated. If I remove my child theme all is well, so clearly it’s my code that’s breaking this. Here’s what I’ve added…

    
    function modfuel_woocommerce_before_order_add_cat($name, $item){
    
       $product_id = $item['product_id'];
    
       $_product = wc_get_product( $product_id );
       $htmlStr = "";
       $cats = "";
       $terms = get_the_terms( $product_id, 'product_cat' );
    
       $count = 0;
       foreach ( $terms as $term) {
        $count++;
    
        if($count > 1){
          $cats .= $term->name;
        }
        else{
          $cats .= $term->name . ',';
        }
    
       }
    
       $cats = rtrim($cats,',');
    
       $htmlStr .= $_product->get_title();
    
       $htmlStr .= "<p>Category: " . $cats . "</p>";
    
       return $htmlStr;
    }
    
    add_filter('woocommerce_order_item_name','modfuel_woocommerce_before_order_add_cat', 10, 2);
    
    // Display order items product categories (Orders on front end and emails)
    add_action( 'woocommerce_order_item_meta_end', 'display_custom_data_in_emails', 10, 4 );
    function display_custom_data_in_emails( $item_id, $item, $order, $bool ) {
        // Get the product categories for this item
        $terms = wp_get_post_terms( $item->get_product_id(), 'product_cat', array( 'fields' => 'names' ) );
    
        // Output a coma separated string of product category names
        echo "<br><small>" . implode(', ', $terms) . "</small>";
    }
    
    // Display order items product categories in admin order edit pages
    add_action( 'woocommerce_after_order_itemmeta', 'custom_admin_order_itemmeta', 15, 3 );
    function custom_admin_order_itemmeta( $item_id, $item, $product ){
        //if( ! is_admin() ) return; // only backend
    
        // Target order "line items" only to avoid errors
        if( $item->is_type( 'line_item' ) ){
            // Get the product categories for this item
            $terms = wp_get_post_terms( $item->get_product_id(), 'product_cat', array( 'fields' => 'names' ) );
    
            // Output a coma separated string of product category names
            echo "<br><small>" . implode(', ', $terms) . "</small>";
        }
    }
    

    Any thoughts for allowing the 2 things to coexist?

    #259297

    Hi there,
    I want to do some custom css to change the text link color on 1 page only. I know how to target the page with the id already. What synatx do I use to target the links?

    In forum: Pinnacle Theme

    In reply to: More info box

    #259294

    I pasted it in a normal editor box but also tried site origin one too.

    Here is the link to the page >> https://www.cloudscounselling.co.uk/

    I have removed it now as I didn’t want people clicking on it and getting what I was getting. It is the cloud icons further down that I want it for. As you can see there is too much text and it is taking up too much space.

    #259293

    All : two part question. How do I adjust rows per page for product category? Usually as I recall it’s in the customizer > WooCommerce > product catalog then adjust products per row (which is there) then I recall there is usually a Rows per page? But I don’t see that now.

    Secondly – I’m using traditional pagination. In Kadence it looks like pagination is left justified .. is there a setting somewhere to center the pagination?

    Many Thanks,
    Phillip

    #259289
    This reply has been marked as private.
    #259288

    Hi,

    Is it possible to align the Title and Breadcrumbs with the main content area in a page layout which has left column sidebar?

    #259282

    Editors are not meant to be switched back and forth between. It is best to pick an editor from a page and stick with it.
    Have you looked into the block editor and Kadence Blocks? Kadence Blocks is a toolkit for the new WordPress (block) editor. See here: https://www.kadenceblocks.com/

    What do you mean by “out of the image”? Sorry again, I’m just not quite following.

    Best,
    Hannah

    #259270

    Hey David,
    Thanks for your post, I am working on more controls but first, let me explain.

    Unlink most TOC blocks ours can be added outside of the page content for example in a sidebar, or in a hooked element that you apply to all posts rather than having to manually add to each post. This creates some unique advantages but doesn’t give you post by post control over which specific headings are used outside of the heading tag itself.

    I’m working up some possible exclude classes that could be applied to a specific heading and for Kadence Blocks some controls in the table of contents block that would allow you to skip over some of our blocks, like the testimonials or infobox block automatically.

    I hope that clarifies and helps.

    Ben

    In forum: Virtue Theme

    Topic: Clone page

    #259246

    Hi there.
    Could you please tell me how to clone a page set up for reuse in page builder.
    Kind regards
    Paul

    In forum: Kadence Theme

    In reply to: Kadence Gallery

    #259244

    Phillip sorry for the delay, I’m not sure what you mean about the navigation buttons? Can you clarify?

    Sumitra if you don’t want to turn off elementors lightbox you can disable the woo extras lightbox by adding this to your products page:

    <script type="text/javascript">jQuery(document).ready(function ($) {var magnificPopupEnabled = false;$.extend(true, $.magnificPopup.defaults, {disableOn: function() {return false;}});});</script>

    There is currently no built-in option for this.

    Ben

    In forum: Kadence Theme

    In reply to: Company Name Uppercase

    #259238

    Thanks I think I have nearly got back to where I was. I can not see how I can add the logo block to the top and the sub title below like on the image at the top of the page.

    #259236
    This reply has been marked as private.
    #259224

    Hello Andrew,

    Thanks for reaching out to us.

    There is currently no option within the Kadence theme to change this text. You’ll need to use a child theme and add a filter function to change it. Here’s the code to change the text:

    function change_related_products_text( $translated ) {
       $translated = str_replace( 'Related products', 'You may also like...', $translated );
       return $translated;
    }
    add_filter( 'gettext', 'change_related_products_text' );

    You can refer to this page regarding the child theme.

    Hope this helps.

    Best Regards,
    Karla

    In forum: Kadence Theme
    #259219

    Hey,
    I think I understand but I just want to clarify.

    You want your topbar to be black when sticky. The theme doesn’t have options for the topbar to be a specific background when sticky, the entire sticky header background gets a color. On a page that doesn’t use a transparent header, you would see a black background because that is the “default” state of the background and it’s not a matter of changing to the sticky background color. However, on a transparent header page where the default state is transparent, you want to be able to make a change when it becomes sticky.

    For now you would need to use this css:

    #masthead .kadence-sticky-header.item-is-fixed:not(.item-at-start):not(.site-header-row-container):not(.item-hidden-above) .site-top-header-wrap .site-header-row-container-inner {
        background: var(--global-palette3);
    }

    I’ve put this in my feature request options for row specific sticky header background options.

    Ben

    #259209

    Hi,

    I am trying to use Home widget area to add an image to my home page. It is now in three columns and I would like it to be just one. So that that image would be sitewide. Is that possible. My site is cool-x.fi. Or maybe some other way to get an image to home page?

    -Anu

Viewing 20 results - 6,121 through 6,140 (of 53,646 total)