Vincent Dubroeucq
Forum Replies Created
-
Yes, thanks a lot for your help !
Hello,
Thanks for your help. I didn’t see the new feature.
Yes, Stripe Payment is up to date, and the cause was the order attribution feature.
I de-activated it and it worked fine.
However, this feature may be useful. I suspect it didn’t work because of cookies. It uses sbjs_*** cookies to work, and those may be blocked by the Complianz plugin installed on my site.
I’m not sure how to make it work properly. The documentation tells us to use the WP Consent API. But I’m not sure how it works.
The feature may be useful. If I can make it work, that’s good!
Thanks for your help !
Forum: Themes and Templates
In reply to: [Kawi] How to hide featured images in single posts?No problem !
Forum: Themes and Templates
In reply to: [Kawi] How to hide featured images in single posts?Hello !
Thanks for using my theme !
Did you try a simple
.single-post
.hero-image{ display: none; }
?Forum: Themes and Templates
In reply to: [Kawi] Header For Category BLOGHi,
If you want to change the markup for the navbar title/logo, that’s in thekawi_site_branding()
function.
Copy-paste the function code (located ininc/template-tags.php
) in your child theme’sfunction.php
file.
Then customize it as needed.
Hope that helps !Forum: Themes and Templates
In reply to: [Kawi] Header For Category BLOGHello,
thekawi_site_branding
function displays the logo, and can be overridden in your child theme.
Hope that helps !Forum: Themes and Templates
In reply to: [Kawi] Header For Category BLOGThanks ! You too !
Forum: Themes and Templates
In reply to: [Kawi] Header For Category BLOGHello !
Thanks for using my theme !
You can use a default background header image via a setting in the Customizer.
Alternatively, you can override thekawi_hero_image()
function in your child theme, to account for category pages.
Just copy-paste the function in your child theme, and add your logic handling category featured images.
Hope that helps !Forum: Themes and Templates
In reply to: [Kawi] Live slideshow/rotating header imageHi !
Thanks for using my theme !
It looks like you chose to have a full width header image. The image is actually a background image, and the image source is written dynamically with<style>
tags.The PHP governing this display setting is the function
kawi_head_styles()
ininc/customizer.php
.If you need to modify it, I recommend you copy the function in your child theme, and rename it. Then unhook the function from the parent theme (
kawi_head_styles
) to hook yours instead.Hope that helps !
Forum: Reviews
In reply to: [Kawi] Light & accessible themeThanks a lot for your support !
I hope you’ll enjoy it long term !
Thanks !Forum: Reviews
In reply to: [Kawi] Great Theme easy to customizeThanks a lot ! I’m happy you’re happy with it !
Forum: Reviews
In reply to: [Kawi] Supper easy to customize and totally free.Thanks a lot !
Glad it helps you !Forum: Themes and Templates
In reply to: [Kawi] Help with Kawi theme modificationLe souci est réglé !
Forum: Themes and Templates
In reply to: [Kawi] Help with Kawi theme modificationBonjour,
Les sous-menus configurés via l’administration standard des menus apparaissent au hover, normalement.
Ce n’est pas le cas ?Forum: Themes and Templates
In reply to: [Kawi] Help with Kawi theme modificationHi,
Thanks for the message, and sorry for the late response.
Adding aposition:sticky; top: 0;
in your child theme’sstyle.css
file should do the trick.The theme can add a filter on the hero image. You can find it in the Customizer settings.
If you want to layer something on top of a body background image, just use a
background-image
property on thebody
element, using multiple background images, one of them being a gradient (gradients are considered background images).Hope that helps !