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 Blocks
In reply to: How to do it?
Hi, Gosia!
This is a demo for the Info Box block of the Kadence Blocks plugin. You can go to these pages for more information:
- https://www.kadencewp.com/help-center/docs/kadence-blocks/installing-kadence-blocks/
- https://www.kadencewp.com/help-center/docs/kadence-blocks/info-box-block/
Let us know if we can help you further.
Regards,
KarlaIn forum: Kadence ThemeHi there!
Glad I was able to help you sort this out.
If we can help you with another issue, let us know by opening a new topic or submitting a ticket on either of these pages:
Regards,
KarlaIn forum: Kadence ThemeIn reply to: accessibility issue reported in pagespeed
Mine was because a header was bumping into an image. The way I figured it out is I copied the page elements to another duplicate page and ran that through page speed. I started deleting every row element until I figured out it was the top row header. I then started deleting elements one and one until the error disappeared.
Hope that makes sense.
In forum: Kadence ThemeIn reply to: accessibility issue reported in pagespeed
I am having the same problem, only mine is the same in desktop. I have tried deactivating the cache and temporarily deactivating the plugins one by one but could not fix the issue. I also looked for off-screen elements that might cause this but couldn’t find any. https://pagespeed.web.dev/analysis/https-www-scooterpress-org/5ge2uwerna?form_factor=mobile
In forum: Kadence ThemeIn reply to: Google Fonts not displaying on the front-end
October 15, 2023 at 6:26 am #285937“I’ve encountered a similar issue where Google Fonts fail to load locally on new blog posts. Oddly enough, they load correctly on evergreen pages like the homepage and landing pages. However, when inspecting a new post, I notice a 404 error for the .woff files, resulting in the site displaying default ‘serif’ and ‘sans-serif’ fonts.
Disabling the ‘Load Google fonts locally’ option in the Customizer’s Misc settings resolves the problem. Nevertheless, I’d prefer to have the performance benefits of loading fonts locally if this feature is intended to work properly.”
In forum: Kadence ThemeOctober 15, 2023 at 4:56 am #285936I hope someone can help. my site is still showing Out of Stock products and getting this error: You cannot add that amount of “Retro Floral Paisley Print Vest Top – Large” to the basket because there is not enough stock (0 remaining).
I have the hide out of stock items ticked on the woocommerce settings and by reading other threads I have clicked “Regenerate” Product lookup tables as well as “Recount Terms” but its still doing it
Can anyone see what may be causing this error? Thank you
The page I need help with: *Login to see link
In forum: Kadence ThemeIn reply to: Author URL is Redirecting to homepage
October 15, 2023 at 4:41 am #285935I am having the same issue, rank math author archives is enable.
Here is a page where I have the problem:
https://joyfultriathlete.com/zwift-on-a-spin-bike-or-peloton/Can you help?
In forum: Kadence BlocksHoping you can help with some odd behavior on a Kadence Testimonials block.
Test page:
*Login to see linkPlease refer to “V2 Built using Kadence Testimonials (preferred)”
The problem is that the Scroll Arrows are spanning the entire width of the Carousel, rather than being aligned to the Left & Right margins of the Carousel.
Oddly, they appear correctly in the WordPress editing window, and render incorrectly only when viewed from the front end.
(A similar problem also appears on the “V1 Built using Advanced Gallery” above)
Please advise.
Thanks!
In forum: Kadence ThemeOctober 13, 2023 at 9:34 am #285923Just to jump on this, how could I set it so it only shows on XX Author Page since I have multiple authors?
ThanksIn forum: Kadence ThemeIn reply to: BuddyPress and Kadence theme?
October 13, 2023 at 6:33 am #285919Hey Brad,
Can you tell us about your setup? It would also be great if you could share the links to the pages in question.
Best,
ChitoIn forum: Kadence ThemeIn reply to: Blog page pagination buttons linking to Not found
October 12, 2023 at 5:12 pm #285915Thank you guys for the responses. I have been able to resolve it. What caused the issue was adding “blogs” to replace “category” as part of the permalinks to category page archives. I didn’t want “category” to be part of the permalink for my category archive page. Once I removed “blogs” from the permalink for category pages it worked.
In forum: Kadence ThemeIn reply to: Blog page pagination buttons linking to Not found
October 12, 2023 at 4:03 pm #285914I have done everything on this link https://www.kadencewp.com/blog/how-to-troubleshoot-your-website? but still the issue exist.
All the plugins and themes are up to date, I have cleared the cached too, resaved the permalink setting to flush the permalinks, the paginations works well on other archive pages like category and tag pages, but doesn’t work on the blog page.In forum: Virtue ThemeIn forum: Ascend ThemeIn reply to: Change the social button on no follow
October 12, 2023 at 10:51 am #285907And that’s still bad advice – which isn’t surprising since 99% of most “SEOs” have no idea what they are doing. There’s no reason to leak PR to your social pages – set them to nofollow.
In forum: Kadence ThemeIn reply to: Home page to show a list of my CPT rather than posts
October 12, 2023 at 7:29 am #285904Hi there,
Not sure which file you need to override here, but what I can suggest is to set “Your homepage displays” to “Your latest posts” in WP Admin > Settings > Reading and add the below code to your functions.php file.
add_filter( 'pre_get_posts', 'my_get_posts' ); function my_get_posts( $query ) { if ( is_home() && $query->is_main_query() ) $query->set( 'post_type','resource-page' ); return $query; }Let me know if this works for you.
Best,
ChitoIn forum: Kadence ThemeOctober 12, 2023 at 3:31 am #285900Hi, please I am having an issue with the pagination buttons on my blogs page. It shows that I have 4 pages but when I try to navigate to the pages I get not found. I have a category page that also loads post archives and it has the pagination buttons as well, but it works fine on the category page. Here is a link to my website
In forum: Kadence ThemeOctober 12, 2023 at 2:50 am #285899Hi
I’m developing a child theme of Kadence for my site. The site has a custom post type ‘resource-page’. For the home page of my site, I would like to adjust the existing Kadence template which displays a list of posts on the homepage, so that it only displays my Resource-page CPT instead. Which file(s) from Kadence would I need to edit in my child to achieve this?In forum: Kadence ThemeHi there!
So there are two scripts that need to be added to your page for the widget to show properly:
- The first one needs to be inside the
<head>HTML tag of the page. - The second block of code can be added using the Custom HTML code.
I tried this on my website and the widget didn’t show until I added the first script inside the page <head>. I’ve attached a screen recording of how it worked for me.
Could you confirm if you added all the needed scripts? If you have the Kadence Blocks Pro add-on, you should be able to add the first script inside the specific page’s <head> element like how I did on my screen recording.
I hope this helps, and let us know how we can assist you further.
Regards,
KarlaIn forum: Kadence ThemeIn reply to: Featured Image option not found
Hi there!
As previously mentioned, the Featured Image option is from WordPress itself. The Kadence theme declares support for post/page featured images so that option should always show.
If it’s taking time for it to show, try doing the initial troubleshooting steps:
- Make sure that you’re connected to a stable internet connection.
- Temporarily deactivate plugins. Activate them one by one and test which one of them might be causing the slowness.
- Temporarily switch to a WordPress theme (e.g. Twenty Twenty-One)
Here’s a post of how you can do the deactivation of plugins – https://www.kadencewp.com/help-center/docs/kadence-theme/temporarily-deactivating-plugins/
Let us know how it goes.
Regards,
KarlaIn forum: Kadence BlocksIn reply to: Post Grid Carousel Hook?
October 11, 2023 at 1:36 pm #285890This is exactly what I’m looking for as well. I’m even looking for the file mentioned, and it’s likely moved. Can anyone just post an example of how to hook or insert an ACF field directly into the Post Grid/Carousel block (below title, or elsewhere)? Did Alan Dowling figure this out? I have a team page of staff and I need to show the title. I appreciate the block with taxonomy filtering, but if I have to create an element loop without the filtering, that is the next step. Suggestions welcome…
-
AuthorSearch Results


