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 Theme
Hi there,
Kadence does not have a free design pattern. However, I understand you want to make your News page your default blog page. You can easily do this by setting the News page as your default Posts page in your Dashboard > Settings > Reading. This will automatically display all your new and existing posts on your News page in a grid layout. You can customize this layout from the theme Customizer > Posts/Pages Layout > Archive Layout.
Here is a screencast for your reference:
https://share.zight.com/7KuNGP8GHere is a guide on how to customize your page/post layout:
https://www.kadencewp.com/help-center/docs/kadence-theme/how-to-setup-page-post-settings/Alternatively, you can use the Kadence Posts block to display your posts as a grid anywhere on your site:
https://www.kadencewp.com/help-center/docs/kadence-blocks/posts-block/I hope this helps.
Cheers,
EzeIn forum: Kadence ThemeIn reply to: How do I add a featured image to the category pages?
November 7, 2024 at 8:11 am #291797Hi there,
“Are you saying if i’ve got the free version, then i can add a background image, but it will be the same one across ALL archive pages/categories?”
Yes, that’s correct.
“But if i have pro, then i can do different background images depending on the category?”
Yes, you can apply a background image for each category archive page with the Kadence Pro plugin.
You will need to upload an image for the Above Header Background Image setting in each category editor.
Kindly refer to Eze’s screencast for your guide.
Let me know if you’re having any trouble and we’ll be glad to assist further.
Best,
ChitoIn forum: Kadence ThemeIn reply to: How do I add a featured image to the category pages?
In forum: Kadence ThemeIn reply to: Search Results Layout Inconsistencies
Hi, Wilbert!
Glad you reached out to us. I’m here to help.
If you have the Kadence Theme Pro and Kadence Blocks Pro add-ons, you can use these to replace the search results page:
1. Create a Hooked Element to replace the Search Results archive page.
2. Use the Query Loop (Adv) block inside the template so it will be in charge of showing the posts and the “No results” notice.Here’s a video of how I did it on my website – https://share.zight.com/xQuJ8AYk
Let me know if I can assist you further with this.
In forum: Kadence ThemeIn forum: Kadence ThemeIn reply to: How do I add a featured image to the category pages?
Hi there,
You can add a generic background image to all your category Archive Title in the theme Customizer > Posts/Pages Layout > Archive Layout – DESIGN tab > Archive Title Background. Here is a screencast for your reference:
https://share.zight.com/5zuolGJvWith Kadence Theme Pro, you can add an Above Header Background Image to each category, and this will replace the theme Archive Title Background to enable each category to use the set Above Header Background Image. Here is a screencast for your reference:
https://share.zight.com/bLuvPRmoI hope this helps!
Cheers,
EzeIn forum: Membership ForumsIn reply to: Recommended usage of Kadence Advanced Forms + WPML?
Sorry for so many replies. Actively working on this issue, as I’m on a tight deadline with the project.
Fixed the button URL issue. The link has to be defined as dynamic link instead of a fixed value for WMPL to automatically “translate” the URL target. (Source: https://wpml.org/forums/topic/kadence-button-link-doesnt-translate-or-show-in-ate/ )
Still not sure about translating advanced forms. I think having a dedicated form for each language might make most sense (inconvenient to manually translate, but main advantage is to be able to set custom reply messages in different languages, maybe even different internal recipients depenind on language, etc.)
With this approach two issues remain:
- When opening translations of a page that includes an advanced forms I don’t see the advanced form reference in ATE. I could change the form refrence when opening in wordpress editor instead in the corresponding language, but worried it will be overwritten again once content on the original language page changes.
- One of the forms is in a site-wide kadence element that I use as custom post type template (in this instance it is a job post type that includes the advanced form inline). Is it recommended to make Elements translatable? Anxious about introducing more headaches when enabling translations for kadence elements.
In forum: Membership ForumsIn reply to: Recommended usage of Kadence Advanced Forms + WPML?
Yeah… I really do need help.
I tried to revert back to make forms non-translatable:
- Marked post type Advanced Forms non-translatable in WMPL settings
- Merged provided wmpl-config.xml from kadence-blocks and kadence-blocks-pro and saved it in WMPL settings
Still struggling though:
- When opening translations of a page that includes an advanced forms I don’t see the advanced form reference in ATE. I could change the form refrence when opening in wordpress editor instead in the corresponding language, but worried it will be overwritten again once content on the original language page changes.
- Another strange issue with advanced buttons. I have a page with two buttons and the URL is not automatically translated and does not point to the correct translation. Also does not show up in ATE to change the URL manually.
Can you walk me through those two issues please?
In forum: Kadence BlocksNovember 5, 2024 at 2:39 am #291760Hi!
At least two sites I built and using Kadence Blocks, a Vulnerability report from the webost in Denmark/sweden One.com shows up after some time. Useally after a few months to half a year. I dont know why this time table seem to be so consistent, but thats not the issue. The issue of being that Kadence Blocks are reported as vulnerable.
So, below is the report I recieve in the email inbox from the webhost One.com
(Kadence team: see in private comment a link to one of the websites)
” -Vulnerabilities:
Kadence Blocks – Gutenberg Blocks for Page Builder Features v3.2.52MediumXXS errors occur whenever an app contains untrusted data in a new web page without proper validation or leakage, or updates an existing web page with user-supplied data using a browser’s API to generate HTML or JavaAScript. XSS allows hackers to execute scripts in the victim’s browser, which can hijack sessions, deform websites, or redirect the user to malicious sites. ”
Any knowledge to share on why and what this can be causing this vulnerability?
Best regards
Stefan LIn forum: Kadence BlocksIn reply to: Filter Inherited Query by Post Type
November 4, 2024 at 3:08 pm #291755I found multiple ways to do this, but the most elegant so far seems to be using the info from this page:
This gives the ability to change the query for each query loop. Since this link took me too long to find, I am sharing it and my code.
// Custom query for the Query Loops on the department overview, you can see the id in the url of the edit query loop link on the query loop list page. // This is just filtering the query by the taxonomy of the current page. add_filter( 'kadence_blocks_pro_query_loop_query_vars', function( $query, $ql_query_meta, $ql_id ) { $department_overview_query_loops = array(625, 722, 718); if ( in_array($ql_id, $department_overview_query_loops, true)) { $query['tax_query'] = array( array( 'taxonomy' => get_query_var('taxonomy'), 'field' => 'slug', 'terms' => get_queried_object()->slug, ) ); } return $query; }, 10, 3 );Edit: My query loop then just looks like a normal query loop for the post type that I want and this bit of code makes sure that I only get the taxonomy of the archive page I am on.
-
This reply was modified 1 year, 5 months ago by
N Web Team.
In forum: Kadence BlocksIn reply to: Query Loop -> Limit by Taxonomy -> Current Taxonomy
November 4, 2024 at 3:06 pm #291754I had a similar need. I was making a department overview page and wanted to have multiple query loops on the same archive page that showed only the items from that taxonomy.
I could not get it to work with the UI so I resorted to code. After quite a lot of searching, I found this page which does not seem advertised enough.
My code looks like this:
// Custom query for the Query Loops on the department overview, you can see the id in the url of the edit query loop link on the query loop list page. // This is just filtering the query by the taxonomy of the current page. add_filter( 'kadence_blocks_pro_query_loop_query_vars', function( $query, $ql_query_meta, $ql_id ) { $department_overview_query_loops = array(625, 722, 718); if ( in_array($ql_id, $department_overview_query_loops, true)) { $query['tax_query'] = array( array( 'taxonomy' => get_query_var('taxonomy'), 'field' => 'slug', 'terms' => get_queried_object()->slug, ) ); } return $query; }, 10, 3 );In forum: Kadence ThemeFYI, this might be what my choices are supposed to look like. This is from
Creating a Blog Page – Kadence Themes – WordPressBut my only choice is Default Template — I don’t have any of the other choices in the page Template drop-down.
This is all I get:
I want to make this a blog page.
-
This reply was modified 1 year, 5 months ago by
adelef. Reason: added images
In forum: Kadence ThemeI’m just getting started with Kadence. My website for a nonprofit has these main nav sections: Welcome, About, News, Donate, Join.
News should be a blog area. But I cannot find a free Kadence template for a blog page. Kadence By Design Patterns still do not have a single free pattern for blogs. I’ve reloaded it a dozen times. All blog patterns are Pro.There is no free blog pattern in Kadence?
Ideally, I’d like to attach a blog template to a page. Or are my Kadence starter patterns and templates failing to load?
How do I make this News page a blog, with the posts being the news items? Thanks.
In forum: Kadence ThemeI had this identical problem but added to wp-config.php file
define(‘WP_MEMORY_LIMIT’, ‘256M’); @ini_set(‘memory_limit’, ‘512M’); @ini_set(‘post_max_size’, ’50M’); @ini_set(‘max_input_vars’, ‘2500’); @ini_set(‘max_execution_time’, ‘300’);
/* That’s all, stop editing! Happy publishing. */Now I no longer get the error message (as others have shown before) but my Kadence By Design Patterns still do not have a single free pattern for blogs. All blog patterns are Pro.There is no free blog pattern in Kadence?
Ideally, I’d like to attach a blog template to a page. Or are my Kadence starter patterns and templates failing to load?
-
This reply was modified 1 year, 5 months ago by
adelef.
In forum: Kadence BlocksIn reply to: Can’t add or edit page
I am having the same issue. I’m on php version 8.1, but I tried both 8.2 and 8.3. The only plugins installed are Kadence Pro, Kadence Blocks, and Kadence Blocks Pro. I have run through them all and found that if I deactivate Kadence Blocks Pro I can then add new pages, edit pages, and customize. As soon as I activate it again, I lose all three functions. This is a new site on newest version of WP and I have cleared the cache for site and browser just to be sure. Have tried in both Firefox and Chrome – same result either way.
In forum: Kadence ThemeI want to have a background image on a catergory/archive page.
So let’s say i want a background image of food where it says “food & drink”
Is this possible?
In forum: Ascend ThemeNovember 3, 2024 at 3:50 am #291740Hello,
I’m looking for help with an issue on the home-page of my website, the Portugal Travel Guide
On the main category pages (ie Lisbon: *Login to see link the user can keep scrolling through more pages by means of the 1, 2, 3, > option at the bottom, but the home-page doesn’t have this option.
I would like the home-page to offer the same option to visitors.
I suspect it’s probably a quick fix in the WordPress back-office.
Can anyone please help?
Many thanks in advance,
Mark
In forum: Kadence BlocksI’m having issues with pagination, I have a video gallery loading via the video popup block custom posts, I have infinity scroll, my problem is when is loading second page. normally every post should be loaded in a popup, but only first page (1st 15 posts) will work in a popup, second a next page will load the page instead… Also if there is a filter applied and there are new elements loaded that were not loaded in page 1 will fail to do the auto popup.
Any ideas how to fix this issue?
See config in the photoThank you in advance
In forum: Membership ForumsIn reply to: Post Carousel with dynamic selection
Hi there!
Apologies for the delay in getting back to you here.
While there is no built-in option to show posts based on a custom field value, the Post Grid/Carousel block has a filter that you can use in a PHP code snippet to affect the query. The code snippet goes like this:
add_filter( 'kadence_blocks_pro_posts_grid_query_args', function( $args, $attributes ) { if ( ! is_singular( 'CUSTOM_POST_TYPE_SLUG_HERE' ) ) { return $args; } $post_id = get_the_ID(); $args['post__not_in'] = array( $post_id ); // Exclude the current post // Get the custom field value of the current post $custom_field_value = get_post_meta( $post_id, 'your_custom_field_key', true ); if ( ! empty( $custom_field_value ) ) { $args['meta_query'] = array( array( 'key' => 'your_custom_field_key', 'value' => $custom_field_value, 'compare' => '=', ), ); } return $args; }, 20, 2 );This code will detect if the view is your CPT single page. Then, apply the query to the Post Grid/Carousel block found there. The posts should exclude the current post viewed but show other posts with the same custom field value.
There is another block that could give you flexibility with the post grid template. Refer to our docs links here:
– Query Loop (Adv) Block
– Custom Queries for Advanced Query Loop BlockI hope this helps. Let us know if we can help you further.
In forum: Virtue ThemeIn reply to: blog page not working/changing correctly
October 31, 2024 at 11:42 am #291730It sounds like a tricky issue! Since you’ve tried common solutions, here are a few other things that might help:
Theme Overrides: Sometimes, themes have specific global settings for blog layouts. Check Theme Options under Blog Settings or Global Layout Options to make sure they’re not conflicting with your blog page settings.
Custom CSS or Child Theme Issues: If you’re using a child theme or custom CSS, inspect for any code that could be forcing a single-column layout or sidebar. This is especially likely if changes you make aren’t taking effect.
Database Cache Clearing: Since clearing regular cache hasn’t worked, try clearing the database cache through your caching plugin, if you use one. Cached database entries can sometimes hold onto old settings.
Browser Dev Tools Check: Use browser developer tools (F12 in Chrome) to see if there’s any error preventing layout settings from updating, or inspect the sidebar to confirm if it’s actually being hidden.
Reinstall Theme Files: Occasionally, reinstalling theme files can fix issues if a layout template is corrupted. Make sure to backup your site first.
For additional help with layout issues and optimization, check out resources on site performance or try tools like the calculator on frekwencji.pl, which we’ve used for calculating other site metrics.
If none of these help, reaching out to your theme support or community might uncover a recent bug or setting issue. Good luck!
-
AuthorSearch Results




