marius1989
Forum Replies Created
-
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] “Animation in” not workingHey Jules. Thanks for pointing out, I could make it work.
Cheers!Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] “Animation in” not workingHey there.
Sorry for hijacking this, but we are also waiting for an update to make this work again for some weeks.
Is there and ETA for it or maybe in the meanwhile a working code snippet to make it work until the update arrives?
I see @javigaar pointed the problem but couldn’t make it work at my end.Thank you!
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Clear on hide bugHey there. Thanks for your reply.
After your feedback I just tested it with another theme and it works properly.
There might be some conflict with the other theme, I also can’t see any problem on your demo after I wrapped the checkbox and the list item label inside a <label> tag.Thanks again for having a look into my issue. Resolved.
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Clear on hide bugThanks a lot, Jules. Much appreciated!
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] Clear on hide bugps: obviously clear_on_hide only targets “span input [type=checkbox/radio]” and not “span label input[type=checkbox/radio]”.
thanks for your attention.- This reply was modified 5 years, 1 month ago by marius1989.
Thank you so much @natewr
This is the solution I was looking for.Best regards!
Hey. Thanks a lot for your feedback. Really appreciate.
So what do I have to change here?
<div class=”bp-opening-hours”>
<span class=”bp-title”><?php _e( ‘Opening Hours’, ‘business-profile’ ); ?></span>
<?php foreach ( $data->weekday_hours as $weekday => $times ) : ?>
<div class=”bp-weekday”>
<span class=”bp-weekday-name bp-weekday-<?php echo $weekday; ?>”><?php echo $data->weekday_names[$weekday]; ?></span>
<span class=”bp-times”>
<?php foreach ( $times as $time ) : ?>
<span class=”bp-time”><?php echo $time; ?></span>
<?php endforeach; ?>
</span>
</div>
<?php endforeach; ?>
</div>This is the original one. I want to disable Clock Icon + “Opening Hours” above the business hours and also disable the days saturday and sunday (these are the days when the business is closed).
I want to get rid of the red boxes: https://i.imgur.com/6qjXaNR.jpg
Hope you can help me out ??
Thank you in advance.Regards.
- This reply was modified 7 years, 5 months ago by marius1989.