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 ThemeJanuary 4, 2023 at 7:26 am #281614
Hello,
I am using the Kadence Theme and Shop Kit. I am having problems with products with variations on the product page I created using the shop kit.For example Product A,
While the red color variation is 5USD,
The blue color variation is 6USD.I want the price of the variation I have selected to be shown, but for some reason it looks like this. How can I fix this?
In forum: Kadence ThemeIn reply to: Footer and header settings
January 4, 2023 at 6:58 am #281609Hi there,
Thanks for reaching out!
What translation plugin are you using? It’s possible if you are using WPML plugin.
You can create conditional headers and target the translated pages. Here’s the link for the Kadence Conditional Headers: https://www.kadencewp.com/blog/conditional-headers/
For the footer, you can create templates for translated pages via Kadence Hooked Element. https://www.kadencewp.com/kadence-theme/knowledge-base/pro-addon/how-to-use-element-hooks/
Both functionalities are a premium feature from the Kadence Pro plugin: https://www.kadencewp.com/kadence-theme/premium/
I hope this helps, and let us know how we can assist further.
Kind regards,
ChitoIn forum: Kadence ThemeTopic: Footer and header settings
Hi.
I would like to ask if it is possible to set different header and footer for different subpages?
I have a website in two languages. After switching the page to the second language, the header (menu) and footer are still displayed in the first language. Can it be changed?
I use Kadence + Elementor (free)In forum: Membership ForumsHi there!
I’m sorry for the delay in getting back to you. Kindly open a new topic for new support inquiries in the future.
Visibility Settings
These settings are only available in our blocks, specifically the Row Layout and Section blocks. If you want to hide some widget contents, you can use the Row Layout block. Add the widget content/items inside it.
Button to trigger toggle menu
Could you confirm if it is the mobile menu off-canvas area or if it is the Toggle Widget Area that you want to open?
Line Spacing
Could you give us a page URL so we can inspect which blocks are you using for those texts? By default, each block has bottom margins to ensure that they are spaces in between them.
If you’re using Paragraph blocks, you can click the Shift + Enter keys on your keyboard so the texts will have single spacing. See this post for reference – https://www.wpbeginner.com/beginners-guide/how-to-add-single-double-line-spacing-in-wordpress/.
Also wanted to show that the built-in Line Height setting had 0 effect on it, both in the customizer preview and in the actual site itself
Which block are you using there? Please could you send a screen recording so we can better replicate the issue? You can use CloudApp for capturing screencasts.
Let us know how we can assist you further.
Regards,
KarlaIn forum: Kadence ThemeIn reply to: How to activate Breadcrumbs
January 3, 2023 at 12:24 pm #281594Investigating further, I see that on one of my websites I can make it work only if I enable Page Titles on the Page Layout page. I have 5 websites and this only works on one of them, https://sagensound.ca/. I have resorted to the shortcode method on https://ccgweighing.com/ but on https://iwsystems.ca/ it is still not working. Is this a fault of the theme or WordPress?
In forum: Kadence ThemeIn reply to: How to activate Breadcrumbs
January 3, 2023 at 7:52 am #281592In fact, checking other settings on the Page Layout menu, none of these work either. Even Show Page Title on/off doesn’t work.
In forum: Kadence ThemeIn reply to: How to activate Breadcrumbs
January 2, 2023 at 2:19 pm #281588I read all that and carried out all the setup details. It still will not work for me. I have Yoast premium installed and I enabled breadcrumbs in Yoast, went back to Customize/General and set the breadcrumbs to Yoast. In post/pages layout/page layout enabled the eye icon for Breadcrumb and enabled page title in breadcrumb, made the color white as I have a dark background and still does not come up after publishing. What is wrong?
In forum: Virtue ThemeIs there a way to do this with the Toggle Widget Area, and using an Advanced Button instead of a fixed element icon in the footer?
I tried doing this with the following CSS:
Advanced Button Additional CSS Class: widget-toggle-menu
Custom Code: https://ibb.co/PzLjqg4
I found that the Button ID for the Toggle Widget Area in Inspect was called ‘widget-toggle’ and instead of ‘mobile-toggle’ as shown for the mobile menu version in the above video Chito shared, so I swapped that out, and then changed the Additional CSS Class + corresponding name in the aboce script from ‘mobile-toggle-menu’ to ‘widget-toggle-menu’, but placing the code in either the header nor the script after opening body would make it work
When clicked, the button just acts as a return-to-top-of-page type of trigger, and that is it. Any idea what I should do to make this work on any button I set with the Additional CSS Class in the content of a page, and with the Toggle Menu Widget rather than the Mobile Menu?
In forum: Kadence ThemeIn reply to: Kadence Theme component.php file – bottleneck?
January 2, 2023 at 10:24 am #281585Hey,
I don’t know Code Profiler Pro, or how it measures things. So I got a copy to check it out. I was skeptical about how it would be able to measure the right performance information to draw actionable information from. For example, showing an autoloader as a potential “bottleneck” tells me something about how it’s calculating things isn’t right. As if it’s viewing the amount of time a function is used/called as a net negative by the way it’s presenting the information.The time-consuming things in WordPress are calls to the database to get information like theme options from the options table or posts or post meta. Those calls are all core functions. The options component simply gets the options table through the get option function. Kadence isn’t doing anything custom, so all of the database caching optimization that can be done by optimizing WordPress will improve Kadence because it’s all the core functions. The theme is going to be accessing the options table early in the page load, and once it’s accessed, everything else that has options will get its information from the options table cache and not from the database. So showing that time is spent in a Kadence file is not providing the context for what is happening, and Kadence is using all core functions, so your not getting any real information in those images about what core functions are running.
Also, it appears this plugin is intentionally trying to bypass cache. From the FAQ:
Will Code Profiler work if I have a caching plugin or a PHP opcode cache, or if my website is using a CDN service?
In most cases, Code Profiler will be able to bypass caching from plugins and CDN services, as well as your PHP opcode cache. If there were a problem, it would warn you about it.
This really makes it a plugin looking for outliers in code that is useful for developers that understand all of the contexts of what’s happening on a page load and not as a general guide to the average user. Bypassing cache means things will take longer then what happens for your average users so it’s not a real measure of site performance.
I did some tests on this example site: https://toucan.kadencewp.com/. That site is running woocommerce, subscriptions, ACF etc. So it’s a pretty heavy site in terms of heavy plugins it’s loading. My results show options function as using a lot of time (which makes sense to me based on the above) but not taking as long as your site.
https://share.getcloudapp.com/DOukBzv5
https://share.getcloudapp.com/Apue95rz
https://share.getcloudapp.com/nOu1vGNQI would put all this as generally not that helpful for fine-tuning. If the plugin is bypassing your cache too then it showing that it’s taking less than a second to do database queries each time get_option is called is really reasonable.
I would say that if you have a problem with your site slowing down you want to view this from the perspective of cache running and seeing what is causing it to be slow for your actual users. Using https://gtmetrix.com and breaking things down from there.
does that make sense?
Ben
In forum: Membership ForumsTopic: Kadence theme problem
December 31, 2022 at 12:41 pm #281575Hello,
saad here,
*Login to see link
I am putting any content, whether it is on the home page or any other page, it is not getting updated, Waited for 1 week, maybe there will be an update but it can’t.
When I open more parking menu and in the menu, all pages appear ill-mannered check it out.
I check all plugins it’s working fine. I think there is an issue in kadence theme plz check it and resolve it my ranking down day by day due to this.In forum: Kadence BlocksIn forum: Membership ForumsI’m also looking for a way to make buttons trigger the Toggle Menu I set up, rather than link to another page. I figured it would have to be a custom CSS script, but I don’t see the spot to make one trigger upon click in the Advanced Button settings
I also outlined what I meant by asking how to control the line spacing/spacing between listed posts in the footer
In forum: Kadence BlocksIn reply to: Display dynamic posts based on ACF post object field
December 30, 2022 at 12:08 pm #281572You would need to use some attribute in the passed $args array to distinguish the two blocks on a page. For example, if your second targets a different post type you can add an if statement in your filter.
if ( isset( $args['post-type'] ) && 'custom-type' === $args['post-type'] ) { // Add changes for post grid targeting custom-type posts. }Ben
In forum: Ascend ThemeDecember 30, 2022 at 11:07 am #281570Hi, how can i solve this?
Fatal error: Maximum execution time of 30 seconds exceeded in /homepages/10/d903167191/htdocs/app913573738/wp-includes/nav-menu-template.php on line 213
Im trying to import Shopping Site from Ascend (Ascend Theme is allready installed.)
(now is my site not loading……….)
bugendai.de
In forum: Virtue ThemeDecember 29, 2022 at 6:44 pm #281563Hi, how can i solve this?
Fatal error: Maximum execution time of 30 seconds exceeded in /homepages/10/d903167191/htdocs/app913573738/wp-includes/nav-menu-template.php on line 213
Im trying to import Shopping Site from Ascend (Ascend Theme is allready installed.)
December 29, 2022 at 8:15 am #281559Hi, I’ve received an email from Google:- To start experiencing the new Analytics, add your new Google Analytics tag (gtag.js) to the header of every page of your site.
I’m unsure exactly what to add to the header (I received the G code)- can you please direct me on how to check, as I want to ensure it is in the header of every page?Thanks
MimmieIn forum: Kadence ThemeHi,
Is there a list of shortcodes or a way to display an excerpt in the Dynamic Content feature under Fallback Content please?
I’ve searched the FB page and support forum and docs and I can’t find anything available on “Fallback content”.I’m using Kadence Pro / Elements
When I click Dynamic Content > I add my custom field, however if there is no custom field showing I’d like it to show the pages ‘excerpt’. Is this possible please?Thanks in advance.
In forum: Kadence ThemeIn reply to: Tag Line Not Visible on Main Page?
Hi, Gabi.
The logo item in the header has the link to the homepage. Also, if you chose to show the title and tagline, there are options for the colors of the links. Do the following to make sure the site title color on the homepage remains white:
- Go to Customizer > Header > Logo header item settings.
- Click the Design tab.
- Select white for the “Active color” of the Site Title Hover and Active Colors option.
See this screen recording as a reference – https://share.getcloudapp.com/nOu1vdLB.
I hope this helps. Let us know if we can assist you further.
Regards,
KarlaIn forum: Kadence BlocksIn reply to: Display dynamic posts based on ACF post object field
December 28, 2022 at 2:46 pm #281546Hello again,
Thanks for getting back to me Karla!
My question was if you can somehow target a specific post grid block on the same page, since I have two of them on my single page “Elements” template. See screenshot.
The first post block (marked in green) is correctly pulling the ACF post object from a custom CPT. Great!
The second one (marked in blue) is supposed to get the latest posts from another CPT. But when using the above code (that bonn provided) both post grid queries gets affected with the same supplied arguments. Resulting in “no posts” for the second post grid block.
So was wondering if there is an easy way to target a specific post grid block?
In forum: Kadence Theme -
AuthorSearch Results



