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!
I added the account widget to the header, allowing users to log in via a popup. While it functions well on successful logins, it redirects to the default WordPress login page after a failed attempt. It would be great if the failed login error message could appear in the popup itself after a failed login. Is there a way to accomplish this?
Thank you in advance.In forum: Kadence ThemeIn reply to: Updating failed. You are probably offline.
AnonymousAugust 27, 2024 at 11:24 am #290989Hi there,
Does this happen for a specific page/post only? And it doesn’t happen for other pages? If it happens on some pages/posts only, then it could be a content related issue.
Try this.
– Duplicate the page/post
– Make changes and save
– See if the issue persists on the new duplicate
– If it does, remove content block by block and see if removing a specific block fixes this
– If it doesn’t, use the duplicate and trash the originalI found this article. Go through the suggested steps, you might find this helpful: https://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-updating-failed-publishing-failed-error/
If the issue still persists, can you go through all of this so we can rule out the usual culprits? You may skip the parts you’ve already tried: https://www.kadencewp.com/blog/how-to-troubleshoot-your-website/
Let us know how we could help you further.
Kind Regards,
Michael TaroIn forum: Kadence ThemeIn reply to: Default Featured Image
AnonymousAugust 27, 2024 at 11:18 am #290988Hi Thomas,
Currently, Kadence doesn’t have a built-in method in place to do this.
We have an existing feature request for this, but I don’t have a firm timeline on when or if that might be developed.
Here’s the link to the feature request so you can vote and comment on additional information, that will help the development team better understand the importance of adding this feature: https://feedback.kadencewp.com/p/default-featured-images-for-pages-posts-and-custom-post-types
We appreciate your continued patience and understanding regarding this matter.
Kind Regards,
Michael TaroIn forum: Kadence ThemeIn reply to: Footer disappeared
In forum: Virtue ThemeHi,
I would like to add text below the page/ post title but above the body (such that it does not show up in post summary/ SEO page summary). Further, this text will be hyperlinked to the respective regional page.
One option that comes to my mind is adding this text as a subtitle – but then is it possible to hyperlink subtitles?How do i go about this, please guide.
Thanks
YogiIn forum: Kadence ThemeAugust 26, 2024 at 11:53 pm #290977Hello Kadence Support Team,
I am looking to customize the appearance of my category pages and need assistance with changing the colors of the pagination buttons. Specifically, I want to modify the color of the pagination buttons to better align with my site’s design.
Here are the details:
Website URL: Animal Nicknames
Current Issue: I want to change the color of the pagination buttons on my category pages. The default color does not fit with my site’s color scheme, and I would like to adjust it to match my theme.
Could you please provide guidance on how to achieve this? If custom CSS is required, any specific code snippets and instructions would be greatly appreciated.Thank you in advance for your help!
For your reference picture is attached.
Best regards,
Fenella Langley-
This topic was modified 1 year, 7 months ago by
fenellalangley.
In forum: Kadence ThemeAugust 26, 2024 at 11:02 pm #290973Hi pawel-0878,
Do you have access to the Kadence Pro plugin? This will allow you to create a conditional header so you can have a different set of header navigation for the Privacy Page which requires the link to the homepage as an absolute link.
Here’s a reference on how to use the conditional header: https://www.kadencewp.com/blog/conditional-headers
Another option is using a conditional menu plugin: https://wordpress.org/plugins/conditional-menus/
You can:
1. Create a menu for the other pages of your website like the policy privacy page and set the links to have an absolute link. See Video: https://share.zight.com/RBuR7Zp6
2. Create a menu for the homepage and set the links under the homepage as anchor links. See Video: https://share.zight.com/8Luey1zJ
3. Install the Conditional Menu plugin. See Video: https://share.zight.com/kpuvQWGj
4. Set the correct menu for the pages using the condition. See Video: https://share.zight.com/GGue8zgPHere’s an example of how that would work: https://share.zight.com/E0uO8ZpL
Let us know how it works out, and we’re happy to offer further help.
Best regards,
Teejay.In forum: Kadence ThemeTopic: Changing Sticky Header width
Hi. I’m trying to change the width of a sticky header to 75vw to match the rest of the content on my website.
I’ve been told there aren’t any settings to enable this but that I can use css. I’ve tried css from both Chat GPT and a facebook group user, which work ok when the page is static but as soon as I start scrolling the header returns to full width.
Can you advise on correct css to use?
ThanksIn forum: Kadence ThemeAugust 23, 2024 at 11:05 am #290957Hi, is it possible for me to set different templates for web and mobile frontpage using the kadence pro version?
What i mean is i will create one template set for desktop and one for mobile.
I do not want to edit the desktop version to be mobile responsive.
In forum: Kadence ThemeAugust 23, 2024 at 1:19 am #290953Thanks Teejay. Issue is, that when I add policy privacy page it will not redirect to homepage
In forum: Kadence ThemeAugust 23, 2024 at 1:01 am #290952Hi pawel-0878,
It seems that the issue you’re experiencing is that all your menu links are showing as active on your website.
This could be happening because you’ve added absolute URLs for each menu item.
For example: https://domain.com/#about
Even though this links to a specific section on the same page, it’s still being recognized as a link to the homepage.
To resolve this, try editing the menu item links to only include the anchor ID.
For example: #about
If the problem continues, could you share the link to your website so we can investigate further?
Please let us know; we’re here to help!
Best regards,
Teejay.In forum: Virtue ThemeIn reply to: Related Posts Number of Items
August 22, 2024 at 3:21 pm #290950Hi Christina,
The Endlessly Loop Related Carousel setting just changes the behavior of the carousel when it reaches the end and goes back to the first item. Endlessly loop just makes it appear that the carousel slides continuously instead of going back to the first slide.
Currently, there is no built-in option to change the type of element that displays the related post from a carousel to a grid. However, you can add a custom snippet that will limit the number of items to show in the carousel to match the number of columns you set in the customizer so that it will not add the scroll function.
Try this code snippet using 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( 'kadence_related_posts_args', 'customize_related_posts_args' ); function customize_related_posts_args( $args ) { $args['posts_per_page'] = 3; return $args; }Please see this screen recording for reference: https://share.zight.com/OAuvzJZ2
I hope that helps answer your inquiry. If you have further questions, please let us know, and we’ll be happy to help out.
Best regards,
ArchitaIn forum: Membership ForumsIn reply to: Kadence Pro Slider
August 22, 2024 at 11:12 am #290948Hi Chito, we have the Kadence Blocks – PRO Extension (Version 1.4.33) and Kadence Blocks – Gutenberg Blocks for Page Builder Features (Version 3.2.50) activated. It has worked fine before upgrading to WordPress 6.6
In forum: Virtue ThemeIn reply to: Related Posts Number of Items
In forum: Kadence ThemeHi Kenneth,
Glad you reached out, happy to help.
To troubleshoot this, please check your Page Layout Setting in the theme Customizer > Posts/Pages Layout > Page Layout.
To specifically adjust the page layout of the new page, kindly modify the Page Settings in the Editor.
Here is a screencast for your reference:
https://share.zight.com/lluA1G2jYou can also copy your existing page title and add it to your new page. Here is a screencast for your reference:
https://share.zight.com/X6ujJw0dI hope this helps. Please let us know how we can help further.
Cheers,
EzeIn forum: Kadence ThemeAugust 21, 2024 at 2:30 pm #290932Hi There,
I’m glad you reached out. I’d be happy to help.
I reviewed your website, and it appears you are using Kadence Theme version 1.2.7. Here’s a screenshot for reference: https://share.zight.com/yAuexRbW.
Did you revert to a previous version? If not, please update to version 1.2.9 as it resolves the customizer issue. You can check the changelog here: https://www.kadencewp.com/kadence-theme/changelog/.
If the issue persists, could you please check for any console errors while trying to load the second page? Here’s how you can view console log errors: How to View Console Log Errors.
[500 Internal Server Error]
500 errors (500, 502, 503, etc.) are typically server errors. More information can be found here: 500 Error Troubleshooting.Could you check with your hosting team if there are any error logs available? This could help us identify the root cause of the issue.
For initial troubleshooting, please follow the steps listed in this article: How to Troubleshoot Your Website. This will help rule out common causes of WordPress issues so we can focus on other potential problems.
Additionally, try flushing your permalinks by going to Settings > Permalinks and clicking the Save Changes button without modifying anything.
Please let me know if you have any additional questions. I’m here to help.
Best Regards,
ArchitaIn forum: Kadence ThemeIn reply to: Inserting a text after the date
August 21, 2024 at 11:38 am #290930hook are this:
kadence_after_entry_metain page or with function:
do_shortcode(‘[code]’).In forum: Kadence ThemeAugust 21, 2024 at 10:11 am #290926Hello,
I have similiar issues. When building onepage all links in navigation menu are linking to sections with #. So when I open website all of them are underlined and seem as active. Can You help me and tell what I do wrong?
Regards
In forum: Virtue ThemeAugust 21, 2024 at 9:41 am #290925Hello guys!
I am currently working on a website using the Virtue theme, and I’m running into some issues with customizing the header layout. I want to make a few changes, but I’m not sure how to go about it.
Specifically, I’m looking to adjust the placement of the logo and navigation menu. Ideally, I’d like the logo to be centered with the navigation menu below it, spanning the full width of the page. I’ve tried tinkering with the theme settings, but I can’t seem to get it to look the way I want.
I’m comfortable with basic CSS if that’s necessary, but I’d prefer to do this within the theme’s settings if possible. Has anyone had experience customizing the header layout in Virtue? Are there specific settings or custom code snippets that could help achieve this design?
Also, I’m curious if there’s a way to make the header sticky while ensuring it resizes nicely on mobile devices. I’ve noticed that when I make the header sticky, it sometimes overlaps content or doesn’t scale properly on smaller screens.
I also check this: *Login to see link Any advice or guidance on these issues would be greatly appreciated! I’m looking forward to hearing how others have tackled similar challenges with the Virtue theme.
Thanks in advance!
In forum: Kadence BlocksAugust 21, 2024 at 8:24 am #290924So I am not sure if this is the place to be to report a potential bug but here goes.
I am building my website and took Pro specifically to have certain blocks available (being AuDHD, it is easier to have pre-made blocks rather than figuring out how to do it myself). So, I used the Media and Text 34 block. It has 3 info boxes. After much clicking to select the right thing, I finally get the option to add a a column to it so I can insert another info box (mind you: trying to select the right area to even add a column was a flipping nightmare compared to other blocks!). I start changing the icons to images, all works fine until I get to the 4th one (the one I created myself). I change the media type from ‘icon’ to ‘image’ (like the other 3) click to add an image and that is when the problem starts! I can open the library, I can even download/add images to the library but I cannot click ‘select’ to actually add it. The whole section (the bar below the images that contains the ‘select’ option seems cut off (see screenshot). It’s not like the bar itself is there and the button is missing/not working, no it is actually cut off.
But here’s the kicker: after this happens, I can no longer add or replace ANY image anymore! If I click on a random image I have added and click to replace it, that bar, that holds the ‘select’ button is just gone. Removing the block with the info boxes and trying again, does not help. Removing the block AFTER I saved and published, does not resolve after refreshing the page.
This last time, I saved and published each block AFTER I was satisfied, so I just refreshed the page WITHOUT saving the block (so disregarding anything done after the last save/publish) and then refreshing DOES solve the issue.
In the meantime, I have figured out how to create that block myself. One by one, I changed the icons to images, and added an image. When I got to the last one, lo and behold…NO PROBLEM! The select bar is there and I can add/replace any image I want. This seems to indicate that the problem lies with the block itself. I have no idea how to actually report it for someone to have a look at but who knows, maybe this can help others or someone knows the issue (and it is something I am doing wrong).
-
This topic was modified 1 year, 7 months ago by
-
AuthorSearch Results




