benoitadam
Forum Replies Created
-
Yeah I think this is a specific coding thing anyway
Thanks for trying !
Yeah that’s what I tough, best solution for now would be a Radio or Select button then make a display condition
It worked !
Thank you very much !
Would be amazing to add some if/else condition (depending if a case has certain value) but I guess this is probably a Pro feature.
Ok I see, I was able to achieve a better result !
thanks
I signed up with facebook
Whatever, tryed 5 times the captcha, I still get verification error…
I signuped up with Facebook
- This reply was modified 4 years, 1 month ago by benoitadam.
I have some problems signing up with the Capcha stuff, can you increase the Capcha Box size ?
Yes checkbox is marked
I tryed this configuration :
I only get 2 columns like this :
Company (Billing) , -empty-
Client name , 1
Client name , 5
Client name , 6(I have reset everything before doing it)
- This reply was modified 4 years, 1 month ago by benoitadam.
- This reply was modified 4 years, 1 month ago by benoitadam.
Hi,
Ok I did add the 2nd code (as a snippet), I have a new line added at the end of the “Export now” page.
But I still doesn’t understand what to do to export product bought for each client.
For now, nothing has seemed to changed on the CSV export and client are still on the left.
P.S : my client will probably get the pro versions for Scheduled Job if we suceed using the plugin
- This reply was modified 4 years, 1 month ago by benoitadam.
Hey Nithin,
The 1rst code didn’t work because I Forgot <?php ?> in fact 🙂 But I retryed, and is it not Working, the forms send An Ajax error :
The 2nd code work, sends an alert as expected !
Ok I haven’t realised the (+) button, now it’s clear to me thanks 😉
Thanks for the additional note, I’m taking this in consideration !
Forum: Reviews
In reply to: [Mesmerize] Could be betterHey,
For Polylang finally it came from my side ( https://wordpress.org/support/topic/lang-fontpage-uses-page-php-instead-of-head-footer/ )
For additionnal CSS I have no idea… I try to change color class of title for example :
.hero-title { color:red; }but doesn’t do anything
I just tested a bit and the only way to make it apply is like this :
body .hero-title { color:red; }I’m not sure if this is a normal behavior ?
Forum: Plugins
In reply to: [Polylang] Lang fontpage uses “page.php” instead of “head-footer”FIXED.
I change page template to “Elementor Full Width” it did the trick.
Forum: Developing with WordPress
In reply to: add default color to wordpress theme (for background)Also you can use the editor color palette to let user change it :
add_theme_support(‘custom-background’);
add_theme_support(‘editor-color-palette’);- This reply was modified 5 years, 3 months ago by benoitadam.
Forum: Developing with WordPress
In reply to: add default color to wordpress theme (for background)I did on twentytwenty but code was weird.
I found a solution myself :
in style.css
.bg-color-brown{ background-color:#a62829; }Then add the body class like this :
<body <?php body_class('bg-color-brown'); ?>>