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: Virtue Theme
In reply to: How to show page title on blog page only
July 13, 2022 at 2:10 am #274092Thanks – but this setting turns the page title on for ALL the pages. I want the page title to show ONLY on the blog page.
In forum: Virtue ThemeIn reply to: Critical error when updated to php 8
Hi, Francis!
I apologize for the delay in getting back to you.
“But, I want a particular slider to show for each DEVICE used …on the Individual product page & Shop page.”
Could you confirm if you had a developer before that implemented the custom code? It would be better if they will be the ones to update it.The code you had before only has the if statements for the language code, I don’t see any condition detecting the device being used. There is a wp_is_mobile() function and you may try using that in your case.
Alternatively, you can show all sliders and hide them using custom CSS codes.
2. WooCommerce templates
The template notice is just a notice, nothing in the templates would affect your site. The theme templates for WooCommerce should still work properly. I believe the only thing that should be changed there is the version comment – https://share.getcloudapp.com/geuREYAE.I’ve sent a note regarding this to the development team to see if they can push out updates to remove the notice.
I hope this helps and let us know if we can assist you further.
Regards,
KarlaIn forum: Kadence ThemeHi there!
Apologies for the delay in getting back to you.
on the product catalog page, I’m wanting the ‘buy’ button to always direct people to the product page, not off to the affiliate link. Only making the affiliate link with the internal buy button on the product page itself.
This is expected behavior and this is how it should work by default even if you’re not using the Kadence Theme and Kadence Shop Kit. On the other hand, since we do not have a build-in option to change this, you can add a custom code snippet:
add_filter( 'woocommerce_loop_add_to_cart_link', 'ts_replace_add_to_cart_button', 10, 2 ); function ts_replace_add_to_cart_button( $button, $product ) { if (is_product_category() || is_shop()) { global $product; if( $product->is_type( 'external' ) ) { $button_text = __("Buy product", "woocommerce"); $button_link = $product->get_permalink(); $button = '<a class="button" href="'. $button_link .'">' . $button_text . '</a>'; } return $button; } }Here’s a guide you can follow in adding the code to your website – https://www.kadencewp.com/kadence-theme/knowledge-base/advanced/how-to-add-a-custom-filter-or-function-with-code-snippets/.
I hope this helps and let us know if we can assist you further.
Kind Regards,
KarlaIn forum: Virtue ThemeIn reply to: How to show page title on blog page only
July 12, 2022 at 8:32 pm #274085Hello Jillu,
Thanks for getting in touch. You can do this by editing the news/blog page. On the page editor, there is an option to show the page title.
Here’s a screen recording for reference: https://share.getcloudapp.com/4gurN5NZ
I hope this helps answer your questions. If I misunderstood what you’re trying to do or if what I have shown is still not working for you, please let us know, and we’ll be more than happy to continue helping until you get your desired result.
Best regards,
Teejay.In forum: Virtue ThemeJuly 12, 2022 at 10:34 am #274073I have page title turned off but would like to show it on the page set to my news/blog page. Is there a way to turn it on for that page only?
In forum: Membership ForumsHello I’m using the carousel gallery on my site. On mobile devices the dots at the the bottom are covering the bottom of the images instead of showing below the images. This is not happening on desktop. All of the carousel types are having this problem. Any easy fix. I’m no coder. Thanks. Here’s the page: *Login to see link
In forum: Kadence BlocksIn reply to: question on form block – hiding fields after submit
AnonymousJuly 12, 2022 at 8:12 am #274066Hi Phil,
Thank you for reaching out to us.
As of the moment, there is no default option to do that in Kadence. Are you thinking of a form redirection after a submit? Like a redirection to a “thank you” page instead?
If that is what you are referring to, we have an existing feature request similar to what you are asking for. If you want, you could vote on it and post a comment to include your specific use case scenario. Here is the feature request: https://www.kadencewp.com/kadence-blocks/feature-requests/redirect-to-open-in-a-new-window/.
You can also create a new feature request altogether. I highly suggest looking for an existing request like the one I sent, then voting and commenting on it. It already has a couple of votes so its more likely to be considered by the development team.
I hope this helps and let us know if we can assist you further.
Kind Regards,
MichaelIn forum: Kadence BlocksIn reply to: How to undo Section “Flex Align Settings”
July 12, 2022 at 7:26 am #274063Hi Phil,
Thank you for writing.
The Section’s Inner Block Direction is set to Vertical by default upon adding it to your page/post. In your screenshot 1, you have selected the Inner Block Direction for tablet and haven’t selected Vertical or Horizontal but that inherits the option you chose for desktop. The same applies to mobile, there’s no value by default but it inherits the option you chose for tablet (even if you don’t choose one for tablet, the tablet still inherits desktop orientation). Here’s a screen recording: https://share.getcloudapp.com/nOuX17Y6
Unsetting the Inner Block Direction would still fall as Vertical orientation hence that option is not needed, in my opinion.
Let us know how we can help further.
Kind regards,
ChitoIn forum: Kadence ThemeIn reply to: Comments
Hi, Justin.
Thank you for reaching out to us and apologies for the delay in getting back to you.
To confirm, is “Staff” a custom post type(CPT)? If so, please ensure that you’re allowing comments for it. Then, double-check your CPT layout in Customizer > Posts/Pages Layout > [CPT] Layout settings. Make sure that you have enabled the Show Comments? option.
Additionally, make sure that all the staff posts are allowing comments. After all these steps, this is how the comment form will show for the CPT(staff) post – https://share.getcloudapp.com/4gur4eOy.
For reference regarding adding CPTs, you can refer to this post – https://www.kadencewp.com/kadence-theme/knowledge-base/general/how-to-add-a-custom-post-type/.
If this is not what you’re referring to or I misunderstood your question, please do let us know. It would also be great if you can include your website or page URL so we’ll have a clear view of your inquiry or issue.
I hope this helps and let us know if we can assist you further.
Kind Regards,
KarlaIn forum: Kadence ThemeIn reply to: Author Template Pages
Hi, Zach!
Thank you for reaching out to us.
The Kadence Theme uses a hook inside the index.php file which is the default fallback of all the template files in WordPress. For your reference, the template being used by all archive pages is the archive.php file inside the
template-parts/content/folder.If you want to create your own template for the author archive pages, you can override the archive.php file inside your child theme with the same folder path. Then, you can also add an author.php file inside the same folder. Lastly, edit the archive.php file to detect that the current page is an author archive page and display the template.
Here’s a screen recording for your reference – https://share.getcloudapp.com/NQul4jvo.
I hope this helps you with your intended customization. Please note that we recommend hiring a full-time developer if you would like to proceed with further customizations. This way, they’ll be the ones to implement and maintain the code customizations.
Otherwise, using the Kadence Hooked Elements will surely help. Do let us know if we can assist you further regarding this.
Kind Regards,
KarlaIn forum: Kadence ThemeIn reply to: srcset for Kadence theme
Hi, bookie!
Apologies for the delay in getting back to you.
“If I add such a dimension and then when inspecting with Chrome Dev Tools see that the actual image being rendered is only 630 x 440 for example – how much larger do I really need my image to be…considering all devices….”
As previously mentioned, the srcset attributes on WordPress images will allow the browser to choose the correct size based on the space the image is taking on your page and the quality of the screen. Thus, the rendered image size may differ.
It would be hard to give a specific image size so we have this article as a guide regarding this – https://www.kadencewp.com/blog/best-practices-for-images-sizes-and-optimization-in-wordpress/.
Do let us know if we can assist you further.
Regards,
KarlaHello,
I have a strange problem with the “Get Income” and LiteSpeed Cache.
The mobile menu is un clickable in Safari on computer and iPhone.If i turn LiteSpeed Cache off it works fine.
I’ve deactivated all other plugins and only used LiteSpeed Cache and still no mobile menu in Safari.The mobile menu works fine in all other browsers in macOS Catalina and Monterey.
But no mobile menu on Safari, Duck duck go or Firefox on iOS.
At first load on iPhone the menu can work, but as soon you’ve loaded another page the menu is dead.Attached image shows errors in Safari on Catalina desktop.
Does anyone know anything about this?
Thanks!
In forum: Kadence ThemeHi,
Thank you for reaching out to us.
Based on the screenshot that you sent, it seems that you’re wanting to have a sidebar for your site’s archive blog posts layout, is this correct? If so, you may do that by changing the archive layout when you go to Appearance > Customize > Posts/Page Layout > Archive Layout > then scroll down until you see the Archive Layout section and choose the layout that has a sidebar. In your screenshot, it should be “Right sidebar” layout.
After you chose that layout, please pick the “Post Archive Default Sidebar”. For example, you chose sidebar 1, from the Archive layout page, please click the “Back” button twice then go to “Widgets.” Then, you’ll see there the sidebar that you have chosen.
From sidebar 1, please click the “+” sign to add a block that you want to use. You can use “Latest Post” block to display all the latest posts at the sidebar.
Here’s the screen recording on how to design your site’s sidebar, please watch: https://share.getcloudapp.com/p9uOLnYr
Hope this helps.
Should you need further assistance, please let us know, and we’re always here to help!
Cheers,
DaneJuly 11, 2022 at 2:24 am #274039i am using kadence theme for two years I have had issues with designing. As you can see in this URL the design of the page looks awkward how can I make it a beautiful well-looking page in kadence.Any tutorial or some thing else.
In forum: Kadence ThemeJuly 10, 2022 at 6:07 am #274036All! I’ve been moving many sites from elementor+astra to Kadence pro. Loving it (wanted to throw that in) now here’s my only issue so far. — a site that has mixed products for sale directly on site as well as some affiliate products. Using ShopKit 2.0 beta – there are great toggles in the affiliate section of the add-on… however – on the product catalog page, I’m wanting the ‘buy’ button to always direct people to the product page, not off to the affiliate link. Only making the affiliate link with the internal buy button on the product page itself. This is mostly for consistent user experience so users always end up on a product detail page regardless if it’s an affiliate product or not. I’ve searched the forums and looked at all the settings, I don’t see that this is an option within the add-on — so is there something I can do with the Loop or something to always have buy buttons go to product detail page? Many thanks in advance!
July 8, 2022 at 3:58 pm #274032I notice when I’m working with blocks (or at least with the row layout block – I haven’t tested all blocks) that when I’ve had my own margin or padding and I remove it, the change isn’t reflected in the backend (unless I update the page and then refresh the page).
I would assume that when I remove a custom margin or padding, it should go back to whatever the default is.
It’s hard to explain in writing – here’s a screencast: *Login to see link
In forum: Kadence ThemeTopic: Comments
In forum: Kadence ThemeTopic: Author Template Pages
July 8, 2022 at 1:40 pm #274029According to wordpress documentation, the lookup order for an author archive page would detect author.php before archive.php. However, if I create an author.php page in my child template it isn’t called. What would be the proper way to modify or add template within child themes? how do I call for author templates in general?
I have some custom elements hooking into author pages, but need to modify the core template separate from archive.php.
The goal here being to ensure authors still have a page even if they don’t have any articles published to their name. Currently the archive.php requires posts assigned to the archive to display it.
In forum: Kadence ThemeJuly 8, 2022 at 10:36 am #274024Is there any way to show the subcategeories that belong to the current parent category being viewed?
For example is there are a lot of categories such as:
Phones
-iPhone
— iphone 5
— iphone 6
— iphone 7
-Samsung
— Edge
— Galaxy 7
— Galaxy 8So if a user is going to visit Samsung caetgory page, they will only side Edge, Galaxy 7, Galaxy 8 on the sidebar.
Right now if I use Categoies widget I see all the options including iPhone parent when I visit Samsung category.
-
This topic was modified 3 years, 9 months ago by
Rushit Hila.
In forum: Virtue ThemeIn reply to: Critical error when updated to php 8
-
This topic was modified 3 years, 9 months ago by
-
AuthorSearch Results


