Thanks for quick reply.
I placed the line below in my child functions.php. Should that be enough?
add_filter( 'upw_enqueue_styles', '__return_false' );
It kind of worked (removed the bottom borders but the padding and large font size remains).
Or am I missing something?
Yep, that should do it. The remaining styling is coming from your theme, so you’ll need to modify it to adjust any further styling.
I have the same problem but I can’t resolve it by adding
add_filter( ‘upw_enqueue_styles’, ‘__return_false’ );
to my child functions.php
The plugin works fine but I need it not to change the style of the page since it messing up some columns in the page.
Thank you
Hello, same here. The styles (mainly button styles in my case) do not resolve when I put
add_filter( ‘upw_enqueue_styles’, ‘__return_false’ );
in my child functions.php.
Any other solutions?
Its the only function in my functions.php file and looks like this…
<?php
add_filter( ‘upw_enqueue_styles’, ‘__return_false’ );
?>
You can see the varying button styles on the home page http://www.intihomes.com They should be light green boxes, not the grey outline boxes you can see in the middle of the page.
Thank you!