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'
-
AuthorSearch Results
-
In forum: Kadence ThemeThis reply has been marked as private.October 26, 2022 at 11:31 am #280817In forum: Kadence Theme
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,
DaneOctober 26, 2022 at 10:12 am #280814Hello,
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
In forum: Pinnacle ThemeIn reply to: Variations swatches labels not showing
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.
In forum: Kadence ThemeHi,
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,
BonnIn forum: Kadence ThemeIn reply to: Clickable parent pages in menu
In forum: Kadence BlocksIn reply to: Can’t reset row layout padding to no value
In forum: Kadence BlocksHi 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 ThemeIn reply to: Homepage Design
October 22, 2022 at 7:47 am #280751Hi 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,
ChitoIn forum: Kadence ThemeIn reply to: Large Layout Shifts
October 21, 2022 at 1:08 pm #280748Are 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 ThemeTopic: Homepage Design
October 21, 2022 at 12:18 pm #280747I 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: *Login to see link
In forum: Virtue ThemeIn reply to: Cart page is not responsive
October 21, 2022 at 9:52 am #280745Hi 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,
ChitoIn forum: Virtue ThemeIn reply to: Show only specific category links in category page
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,
BonnIn forum: Kadence BlocksHi 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,
BonnIn forum: Virtue ThemeHi 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
In forum: Kadence ThemeOctober 20, 2022 at 9:51 pm #280723Hi,
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 (*Login to see link
How can I do that?ii) If not, where can I access *Login to see link to edit the content there?
Regards,
KCIn forum: Pinnacle ThemeIn reply to: Change cart icon
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:
- Go to this page
- Inspect the content for the icon you want to use – https://share.getcloudapp.com/xQuxJ7dy.
- Then, add this to Theme Options > Custom CSS:
.menu-cart-btn .kt-icon-basket2:before { content: "\e0cf"; }
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,
KarlaIn forum: Pinnacle ThemeIn reply to: Variations swatches labels not showing
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:
- https://www.kadencewp.com/blog/how-to-troubleshoot-your-website/
- https://www.kadencewp.com/kadence-theme/knowledge-base/troubleshooting/temporarily-deactivating-plugins/
- https://www.kadencewp.com/kadence-theme/knowledge-base/troubleshooting/clearing-your-website-cache/
I hope this helps. Let us know if we can assist you further.
Kind regards,
KarlaIn forum: Virtue ThemeHi 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,
KarlaIn forum: Kadence ThemeIn reply to: Clickable parent pages in menu
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 -
AuthorSearch Results


