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
Topic: Search Bar Colour
December 26, 2023 at 1:11 pm #286877Hello
I’ve added a search bar to my blog page using the standard search block in WordPress. However, the background colour is black. How do I change this to white? I can’t seem to find a setting anywhere to do so for the whole bar.
Thanks, Paul
In forum: Kadence ThemeIn reply to: Mobile sidebar menu text color
December 26, 2023 at 7:03 am #286870Hi there,
Thanks for the screenshot.
You need to go to the Design tabs of the Off Canvas container and Mobile Navigation widget in the customizer page.
To go to the customizer page: WP Admin > Appearance > Customize.
Here’s a video for reference: https://share.zight.com/BluqLjg2
Let me know if you need further assistance.
Best,
ChitoIn forum: Kadence ThemeI’m using Kadence and Polylang free with a multi-language site.
I’ve been trying to change the site logo based on the language of the current page but haven’t gotten it to work.So far I discovered that I can change the logo URL with this in a code snippet:
add_filter( 'kadence_logo_url', 'polylang_get_multilang_logo' );
function polylang_get_multilang_logo( $value ) {if ( function_exists( 'pll_current_language' ) ) {
$logos = array(
//'en' => wp_get_attachment_image('XXXX', 'full'),
//'he' => wp_get_attachment_image('YYYY', 'full'),
'en' => '/wp-content/uploads/Logo1.png',
'he' => '/wp-content/uploads/Logo2.png',
);
$default_logo = $logos['en'];
$current_lang = pll_current_language();
if ( isset( $logos[ $current_lang ] ) )
$value = $logos[ $current_lang ];
else
$value = $default_logo;
}
return $value;
}Is there something similar to kadence_logo_url for changing the actual logo image not the URL it links to?
I also tried to use add_filter( ‘get_custom_logo‘, ‘polylang_get_multilang_logo’ );
But that isn’t fired for some reason.In forum: Kadence ThemeDecember 22, 2023 at 5:11 am #286857Hi there,
I visited the page, but it’s now displaying product categories — see screenshot: https://share.zight.com/GGudPyAO
I also checked the second page of a category page, but I didn’t see the issue — see screenshot: https://share.zight.com/7KunBXRo
Have you already sorted this?
Let me know if you need further assistance.
Best,
ChitoIn forum: Kadence Blockshello.
Thank you so much for creating the kadence block.
I think it’s a great plugin.I have one question.
First, I created a total of 5 images into a carousel using the kadence blocks gallery.This is what I plan to implement from now on. Please refer to the photo.
How do I make the activated image zoom in so that it looks a little larger, and the remaining non-activated images, such as prev, next, etc., look smaller?I’m also curious about how to implement the <current page number / final page number> button below the carousel.
Of course, pressing < and > will move you to the previous or next chapter.
I know I need to use JavaScript, but I can’t link it at all because I don’t know what JavaScript the gallery uses.
I would appreciate your reply.
In forum: Kadence ThemeIn reply to: Change Style Orderby Dropdown Shop Kit
Hi there!
I sent a response about the style for the WooCommerce plugin’s
orderbydropdown in your previous email:“Change Style Orderby Dropdown Shop Kit
The sort dropdown will use each browser’s default style for a dropdown. Based on the screenshots, you want to style the dropdown options (<option></option>). However, this can be hard. Theselecttag itself can be styled but the options aren’t.Some need to change the HTML structure to be able to change styles better. But the WooCommerce sort dropdown is a default, and we don’t change its structure.
You can go to this page for reference in dropdown customizations – https://www.sliderrevolution.com/resources/css-select-styles/.
“I also found this post and I think it can also help you style the sort dropdown – https://wpbeaches.com/styling-woocommerce-default-dropdown-sort-select-field/
Note: add the code snippets using a plugin instead of editing your functions.php file. It will be easier to disable/enable it.I hope this helps, and let us know if we can help you further.
Regards,
KarlaIn forum: Kadence BlocksIn reply to: video background on mobile
Hi there!
I checked your page on my actual device (iPhone & Safari browser). The background video autoplay – https://share.zight.com/8LulG0GY
Some devices have accessibility settings so videos aren’t playing in their mobile browsers. Could you confirm which browser are you using?
In an iPhone, videos will not play if you have the low power mode on – https://developer.apple.com/forums/thread/709821.
I hope this helps, and let us know if we can help you further.
Regards,
KarlaIn forum: Virtue ThemeIn reply to: Content background color change on 1 or 2 pages
In forum: Kadence ThemeDecember 21, 2023 at 1:31 pm #286846Hey there,
You can do this using the Customizer Settings. You can go to your Customizer -> Post/Pages Layout -> Single Post Layout. You can set the Featured Image Position to Behind to make the Featured Image appear behind the post.
Here is a video of how you can do that for reference: https://share.zight.com/X6uXkb7G
I hope this information was helpful to you. Please let us know if we can help you further.
In forum: Kadence ThemeDecember 21, 2023 at 11:33 am #286843Hi,
Thanks for posting this question here. Actually, I also have a similar question. I have a website similar to your niche (tattoo artwork). I have also installed the paid Kadence theme and paid Kadence blocks. Now, I want to display featured images and page settings like this article (https://www.bodyartguide.com/evil-eye-tattoo/). Currently, the site has this page view and featured image view: “Forearm Tattoo Cost.
In forum: Virtue ThemeIn reply to: Content background color change on 1 or 2 pages
In forum: Ascend ThemeIn reply to: Printed pages
Hi, Annette!
The theme styles we do and support are those that are used for actual page viewing.
Print styles are separate from these CSS files. As much as we want to help you with this, printing styles are not part of our theme functionalities/features.
On the other hand, did you use the plugin that Hannah suggested before? I saw this free plugin too – https://wordpress.org/plugins/printfriendly/. You may try it and see if it will help with styling the page printing.
I hope this helps, and let us know if we can help you further.
Regards,
KarlaIn forum: Virtue ThemeIn reply to: Infinite Scroll on Custom Post Type
Hi, Marco!
I’m sorry for the delay in getting back to you.
This topic is for the Virtue theme and I can see you’re using our Kadence theme. I just want to clarify that these themes are different from each other. Here’s a comparison of our themes – https://www.kadencewp.com/theme-comparison/
The page you provided is not an archive page and I see you’re using the Gutenberg Query Loop block to show posts. This block will follow the number of posts per page from its Display Settings. Refer to the following links:
– https://jetpack.com/blog/wordpress-query-loop-block/
– Screenshot – https://share.zight.com/BluqjpokI hope this helps, and let us know if we can help you further.
Regards,
KarlaIn forum: Virtue ThemeIn reply to: Hidden Anchor Issue with Sticky Header
December 20, 2023 at 7:39 am #286818Hi there,
I’m here to help.
Can you please send here the page in question privately? Check the “Set as private reply” option below.
Best,
ChitoIn forum: Virtue ThemeIn reply to: Content background color change on 1 or 2 pages
December 20, 2023 at 7:37 am #286816Hi Colin,
I’m willing to help.
Can you please send here the links to the pages privately? Let me know as well the background color for each page.
Best,
ChitoIn forum: Kadence BlocksIn reply to: Kadence tab block and search result
December 20, 2023 at 7:29 am #286814Hi there,
I tried this on my test site, but I was seeing the content inside the Tabs block on the search results page — here’s a video for reference: https://share.zight.com/v1uBo7v1
If you’re using the Kadence theme, the Search widget has a function to search only for products — see screenshot: https://share.zight.com/v1uBo7lx
Kindly check that setting if you’re expecting to see results for other pages as well.
Make sure as well that you don’t have a plugin or custom codes that affect the search function.
If you’d like to see the content inside the Tabs block on the search results page, the Kadence theme has an option in Customizer > Search Results > Excerpt to show full content — see screenshot of the setting: https://share.zight.com/4guWQqxj
Here’s how it looks on the search results page: https://share.zight.com/GGudngNx
Let me know if you need further assistance.
best,
ChitoIn forum: Virtue ThemeIn reply to: Toolbar Text(Adj)
December 19, 2023 at 5:37 am #286798Hi Rudi,
Thanks for the screenshot.
It looks like the setting you’re pointing to in the screenshot is not from Kadence. You can toggle the Settings in the upper-right corner of the page to see the block settings — see screenshot: https://share.zight.com/wbuBo7DN
Let me know if you need further assistance.
Best,
ChitoIn forum: Kadence ThemeIn reply to: not able to change header colour
Hi @M.
Apologies for the late response.
Are you trying to change the header row background color?
If you are trying to change the header row background color and the Row Background Color is not being applied, specifically on the home page, kindly Enable Transparent Header in Customizer > Header > Transparent Header and select a Row Background Color (When Transparent Header).
Here is a screencast for how to achieve this:
https://share.getcloudapp.com/o0uOogDOI hope this helps. Please let us know how we can help further.
Cheers,
EzeIn forum: Kadence ThemeDecember 19, 2023 at 1:48 am #286781Hi there,
Thanks for the link to your website.
I checked the header and it’s already responsive. Here’s a video: https://share.zight.com/YEuJg1NY
What I only noticed are the following:
* make the mobile hamburger icon more visible by changing the color. Select the Trigger widget on mobile header and go to its Design tab.
* change the slide-out mobile menu background color from black to your brand color. See screenshot of the setting: https://share.zight.com/WnuX2G4eAs for the desktop, some websites put a button on the right side of the header. You could perhaps replace Legal Pages dropdown with a button and link it to a page or section that you want to redirect users — see screenshot: https://share.zight.com/L1uyo7xO
Also, since it’s a TV website, perhaps you can add a topbar notice using the header top row.
Overall, the design of your website depends on your requirements.
If there’s a specific you want/need to achieve, just let me know and I’ll gladly assist further.
Best,
ChitoIn forum: Kadence ThemeIn reply to: Set a background image only for the product pages
Thank you for providing the CSS.
However, there is a built-in theme feature to add a background image to all single product pages.
To achieve this:
1. Navigate to the theme Customizer > WooCommerce > Single Product Layout
2. Click on the DESIGN tab
3. Scroll down and add an image to the Content BackgroundHere is a screencast for your reference:
https://share.getcloudapp.com/KouK0eQkI hope this helps. Please let us know how we can help further.
Cheers,
Eze -
AuthorSearch Results


