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 - 2,921 through 2,940 (of 53,646 total)
  • Author
    Search Results
  • #280817
    This reply has been marked as private.
    #280816

    Hi there,

    Thank you for reaching out to us.

    To assist you further, can you please send us the URL of the page that you’re working on? You have an option to send us the URL privately by enabling the “Set as private reply” option before sending your reply. Thanks!

    Cheers,
    Dane

    #280814

    Hello,

    Currently, the color of the Add to Cart button, if no product variation is selected, is dimmed. I would like to avoid that and keep the color always clean. The inability to click the button until an option is selected should remain, but I’d like the color to not change. I guess it can be done with some CSS snippet. Thanks in advance for your help.

    Regards

    #280813

    Hi Karla,

    Thanks for the extensive reply! We had some busy days but I had time to take a closer look and seem to have a solution. When making a colour in the colour attributes and select it that way it DOES show a label, but when adding the attributes manually in the product page it doesn’t .. maybe that helps you to eliminate the problem? I solved it now for this particular product, but it does happen on others as well.

    Let me know.

    #280805

    Hi,

    There is a workaround for this.

    Just create a normal page for your “Author Page”

    Then add this custom code, you can use the Code Snippets plugin: https://www.kadencewp.com/kadence-theme/knowledge-base/advanced/how-to-add-a-custom-filter-or-function-with-code-snippets/

    add_filter('author_link', function( $link, $author_id, $author_nicename ){
    	if ( AUTHOR_ID === $author_id ) {
    	$link = 'https://your-custom-author-page-url';
    	}
    	return $link;
    }, 20, 3);
    
    add_action( 'template_redirect', function(){
    	if ( is_author( AUTHOR_ID )) {
    		wp_redirect( 'https://your-custom-author-page-url' );
    		die;
    	}
    });

    Just edit the code and input the correct author ID and page URL.

    Hope this helps.

    Regards,
    Bonn

    #280796
    This reply has been marked as private.
    #280779

    Hi, Aaron!

    I just want to give note that version 2.4.17 of the Kadence Blocks plugin fixed the issue regarding padding. If left blank, there will be no padding CSS properties added to the page.

    Kind regards,
    Karla

    #280754

    Hi All,
    I tried to search and find it but was unable to find any info. I want to label the sections in the admin editing screen in the blocks listing on my page for better organization and client understanding.

    PS: I am trying to migrate a site from Elementor PRO to Kadence PRO. Elementor’s admin interface is much better. I hope this will go to that level someday.

    In forum: Kadence Theme

    In reply to: Homepage Design

    #280751

    Hi Daniel,

    Thank you for writing.

    Here’s a screen recording to replicate the home page: https://share.getcloudapp.com/8Lu1WBjd

    The reference site has 1290px content max width. You can set that value in Customizer > General > Layout > Content Max Width.

    All the rows on that page use the Kadence Row Layout block and they inherit the theme content max width by enabling that option in Row Layout > Structure Settings.

    The Featured Categories and Latest Blogs sections use the Kadence Posts block.

    You can choose how to categorize the posts in the Featured Categories section via the Posts block settings. https://prnt.sc/YK7cKr2c-qj5

    The posts in the Latest Blogs section are ordered by newest to oldest. https://prnt.sc/so0Hf8YBOKRg

    All the posts on the home page are Boxed (post layout style). This can be set in Posts block > Layout Settings. https://prnt.sc/9XTp0Dc7KHIL

    The box shadow for the Boxed post layout can be customized in Customizer > General > Layout > Archive Grid Boxed Shadow. https://prnt.sc/vDidKGBMbDdW

    Adjust the padding/margin in Row Layout > Padding/Margin to your liking.

    I hope this helps and let us know if you need further assistance.

    Kind regards,
    Chito

    In forum: Kadence Theme

    In reply to: Large Layout Shifts

    #280748

    Are you running the SMUSH wordpress image addon to optimize images? If so this will push the entire Kadence theme down the page when it loads, add some blocking time, then snap back to the top and give you layout shift.

    You can disable Smush and recheck to confirm.

    In forum: Kadence Theme
    #280747

    I want to design the same homepage for my website.

    Can you tell me how to design the same homepage for my website?

    You can check on this URL:

    In forum: Virtue Theme
    #280745

    Hi there,

    I inspected the Cart page. The issue on that page only happens in Italian translation because the words don’t break. Here’s a screen recording: https://share.getcloudapp.com/12uzjQGg

    To resolve this, you will need to break the words using the below custom CSS:

    @media (max-width:599px){
        .woocommerce-cart .woocommerce-cart-form__cart-item dl.variation {word-break: break-word;}
    }

    Add the code in Theme Options > Advanced Settings > Custom CSS.

    Let us know if that works for you.

    Kind regards,
    Chito

    #280740

    Hi,

    Try editing your custom code to this:

    /**
     * Show products only of selected category.
     */
    function get_subcategory_terms( $terms, $taxonomies, $args ) {
     
    	$new_terms 	= array();
    	$hide_category 	= array( 21443, 21444, 21445, 21446, 21448, 21449, 21450, 21451, 21452, 21453, 21454, 21455, 21456, 21457, 21458, 21459, 21460, 21461, 21462, 21463, 21464, 21466, 21467, 21468, 21471, 21472, 21473, 21474, 21475, 21476, 21477, 21478, 21479, 21480, 21481, 21483, 21484, 21485, 21486, 21487, 21489, 21490, 21492, 21495, 21496, 21497, 21498, 21499, 21500, 21501, 21502, 21503, 21504, 21505, 21507, 21508, 21509, 21510, 21511, 21512, 21513, 21514, 21515, 21516, 21517, 21518, 21519, 21520, 21521, 21522, 21524, 21525, 21526, 21527, 21528 ); // Ids of the category you don't want to display on the shop page
     	
     	  // if a product category and on the shop page
    	if ( in_array( 'product_cat', $taxonomies ) && !is_admin() && is_tax('product_cat', 'phone-and-tablet-repairs') ) {
    
    	    foreach ( $terms as $key => $term ) {
    
    		if ( ! in_array( $term->term_id, $hide_category ) ) { 
    			$new_terms[] = $term;
    		}
    	    }
    	    $terms = $new_terms;
    	}
      return $terms;
    }
    add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );

    See if that works.

    Regards,
    Bonn

    #280737

    Hi Julian,

    I tried opening the page using the temporary account that you gave us and I also did not experience any issues.

    Here’s a video for your reference: https://share.getcloudapp.com/6quG1z9k

    Can you try to logout of your account and use the temporary admin account that you gave us?

    Maybe the issue is isolated on your account.

    Let us know how it goes.

    Regards,
    Bonn

    #280729

    Hi Want to show only specific phone category brand links on this page.

    Still want products in unshown categories active on site, (they can be navigated to by search bar) or from google search, as can their child products.

    page about phone brands

    Is there a function I can add that will filter and display only specific categories spefified by ID.

    Tried this code (id’s are the excluded product categories) but it messed with the product pages (that call the product category image and load it on the product page) see screen shot supplied.

    /**
    * Show products only of selected category.
    */
    function get_subcategory_terms( $terms, $taxonomies, $args ) {

    $new_terms = array();
    $hide_category = array( 21443, 21444, 21445, 21446, 21448, 21449, 21450, 21451, 21452, 21453, 21454, 21455, 21456, 21457, 21458, 21459, 21460, 21461, 21462, 21463, 21464, 21466, 21467, 21468, 21471, 21472, 21473, 21474, 21475, 21476, 21477, 21478, 21479, 21480, 21481, 21483, 21484, 21485, 21486, 21487, 21489, 21490, 21492, 21495, 21496, 21497, 21498, 21499, 21500, 21501, 21502, 21503, 21504, 21505, 21507, 21508, 21509, 21510, 21511, 21512, 21513, 21514, 21515, 21516, 21517, 21518, 21519, 21520, 21521, 21522, 21524, 21525, 21526, 21527, 21528 ); // Ids of the category you don't want to display on the shop page

    // if a product category and on the shop page
    if ( in_array( 'product_cat', $taxonomies ) && !is_admin() ) {

    foreach ( $terms as $key => $term ) {

    if ( ! in_array( $term->term_id, $hide_category ) ) {
    $new_terms[] = $term;
    }
    }
    $terms = $new_terms;
    }
    return $terms;
    }
    add_filter( 'get_terms', 'get_subcategory_terms', 10, 3 );

    NB: this shortcode will display the categories I want to link to… (so even to exclude the default include of categories would work)
    [product_categories ids=”21447, 21465, 21469, 21470, 21482, 21488, 21491, 21493, 21494, 21506, 21523″]

    *Cant hide it by css as it effects layout of products in category pages.

    Thanks for your time . lee

    • This topic was modified 3 years, 5 months ago by lee.
    • This topic was modified 3 years, 5 months ago by lee.
    • This topic was modified 3 years, 5 months ago by lee.
    #280723

    Hi,

    I’ve enabled Author Box via Kadence customize page.
    When I hover over the author’s name the linked site is as follows:

    So my question is:

    i) Instead of that, I want to link it to my About Page instead (
    How can I do that?

    ii) If not, where can I access to edit the content there?

    Regards,
    KC

    In forum: Pinnacle Theme

    In reply to: Change cart icon

    #280722

    Hi there!

    Thanks for reaching out to us and apologies for the delay in getting back to you.

    There is no built-in option to change the cart icon. However, you can use custom CSS code to change it. What you’ll need to change is this part – https://share.getcloudapp.com/Z4uD9Key.

    Since we use fonts for our icons here, you can follow these steps:

    In the above code, I used the “kt-icon-cart4” icon.

    I hope this helps. Let us know if we can assist you further.

    Regards,
    Karla

    #280721

    Hi, Arjan!

    I apologize for the delay in getting back to you.

    I tried replicating the issue on my test website by creating a product template and using variation swatches of the Kadence Shop Kit plugin. However, the attribute names are showing when I hover over them – https://share.getcloudapp.com/mXu2Qp0O.

    I also inspected the page and I do not see text on the labels – https://share.getcloudapp.com/Jru8ZDk5. Could you send us a page link where they are working fine?

    Product attributes should have names and those names will be used for the variation swatch labels. Please try the following troubleshooting steps to try and pinpoint the cause of the issue:

    I hope this helps. Let us know if we can assist you further.

    Kind regards,
    Karla

    #280718

    Hi there!

    I apologize for the delay in getting back to you.

    I tried viewing the website you sent but I see this error – https://share.getcloudapp.com/z8uQR6XL. Please could you send us the correct page links so we can inspect them? It is possible that there are padding, margin, or excess blocks that create those large spaces.

    On the other hand, could you go to Theme Options > Page/Post Settings and see the value of the Paragraph bottom spacing option? This is so far the only theme option related to the spacing that I can think of that can affect your content. Here’s a screenshot for your reference – https://share.getcloudapp.com/geuyKbqk.

    I hope this helps. Let us know if we can assist you further.

    Regards,
    Karla

    #280712

    Hi, NB.

    It is hard trying to figure out the issue on your side if we cannot replicate it on ours. If you can give me a publicly accessible staging website, that would be great.

    On the other hand, aside from the menu item not having an actual link, the only setting I can think of that affects your parent menu items is the Disable Link option. However, this is only available if you have enabled the Ultimate Menu feature of the Kadence Theme Pro addon. Here’s a screen recording for your reference – https://share.getcloudapp.com/Kou18ZDl.

    If you do not have this too, please give us a page URL where we can inspect your website syles. There might be some CSS styles that prevents the parent menu items from being clicked.

    Let us know if we can assist you further.

    Regards,
    Karla

Viewing 20 results - 2,921 through 2,940 (of 53,646 total)