Forum Replies Created
-
AuthorPosts
-
Hi Elliot,
The update worked. All that was required was disabling all plugins. Not sure which one was the offending plugin.
Thanks again for the support.
Hi Yigit,
not sure what that means, but it sounds good! ;)
And yes its fixed! Thanks for your support.
same result.. shows change on responsive mode but not on laptop/desktop. I’ve tried 3 laptops.
Hi Yigit, i’ve installed / configured Contact Form 7 as suggested and it worked 1st time.
and I had this problem prior to the latest released update
I have exactly the same problem – my site is not live yet but I setup a news subscribe on coming soon page not realising no emails are being received. Used different emails and empty for wordpress default. But no change. The front end functionality works fine.
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.January 25, 2015 at 5:47 pm in reply to: Masonry Element – make title static and custom text #top .av-current-sort-title #385135Hi and thanks for the pointer.
Do is add this underneath?
echo “<div class=’your-text’>your text goes here</div>”;
hi that didnt work
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hi, any support would be grateful.. desperate to get resolved :)
that worked!
many thanks :)
Hi, I found functions code which removes the product Free text
add_filter( ‘woocommerce_variable_free_price_html’, ‘hide_free_price_notice’ );
add_filter( ‘woocommerce_free_price_html’, ‘hide_free_price_notice’ );
add_filter( ‘woocommerce_variation_free_price_html’, ‘hide_free_price_notice’ );
/**
* Hides the ‘Free!’ price notice
*/
function hide_free_price_notice( $price ) {
return ”;
}For the benefit of others – I just added to child theme function.php
:)
This reply has been marked as private.its fixed itself.
update.. I’ve cleared browser cache and deleted/re-installed fontello install pack. All icons are [] or chinese symbols.
January 15, 2015 at 1:01 am in reply to: Single Product Page – Content Description Area 'Weirdness' ??? #379824This reply has been marked as private.superbly answered!!
January 8, 2015 at 5:21 pm in reply to: Fullwidth sub menu page element – border colour not changing with custom CSS #376896thanks
January 8, 2015 at 3:08 pm in reply to: Fullwidth sub menu page element – border colour not changing with custom CSS #376780thanks for the lightening response!
That worked OK for border. Now the separator between menu page text didn’t change and still remain default theme border colour.
For example, home | about | etc..
Hi Yigit,
Was looking to add a separate div container left of the secondary menu on header.. but I actually prefer, wrap image full width. So thanks for the suggested code. Works well.
Very happy! And thanks for Kriesi support, top notch as always!
Cheers
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hi,
in line 8 the code is slightly different
if(isset($headerS[‘disabled’])) return;
I did however comment this out as suggested.
I then added,
add_filter( ‘wp_head’, ‘enfold_customization_display_cart’ );
function enfold_customization_display_cart() {
$headerS = avia_header_setting();
if( isset( $headerS[‘disabled’] ) ) {
?>
<style type = “text/css”>
#header_main .container {
display: none !important;
}
.dropdown_widget { display: block !important; opacity: 1 !important; }
</style>
<?php
}
}to child theme functions. Caused white screen.
I am already using,
<?php at the start of the functions code
and ?> at the end of my functions code. -
AuthorPosts