Hey!
The theme doesn’t have a shortcode for a newsletter submit. You would need to add it to the header.php directly and customize as needed. Most likely it would need to be done by a freelance developer to keep everything responsive and cross browser compatible.
For a color section, you can remove it from your layout by deleting it in the avia layout builder or you can save the whole page including that element as a template from the Template button on the top right of the ALB. Hiding it with CSS on the front end won’t prevent it from loading.
However if you want to you can try giving the color section a unique ID in the For developers only field which adds an ID to the color section. Then target it by that name:
#colorsectionname {display: none;}
Best regards,
Devin
Hi Peter,
I feel like I am repeating myself here.
1) The blog is here and you see both problems: no sharing buttons and strange comment fields.
http://reduserstress.no/en-spennende-tid-i-reduserstress-no/
2) The sharing function I use is probably JetPack. I didn’t install WordPress for this client just the Enfold Theme and the sharing functions are located under “Settings -> Sharing” (as you can see the buttons are everywhere but not under the blog post)
Did this info help?
Hey!
Please add following code to Quick CSS in Enfold theme options under Styling tab
#top div .widget_shopping_cart .button { float: left; }
Best regards,
Yigit
Hello,
i’m waiting for some answer. I let you see the shop but i have to put the shop offline soon since is not complete :).
I need to change the button behaviour (margin padding and probably minimum width) to avoid the switching.
Any help?
This reply has been marked as private.
Hi Soapmarine!
Once you have created your portfolio items you’ll then go to any regular page. Then click on the Advanced Layout Editor button and drag and drop a Portfolio Grid item into the layout to customize as needed.
Similar to how I create a simple layout in this video: https://vimeo.com/channels/aviathemes/64927358
Regards,
Devin
Hello Devin,
i apology if that sounds like a whining. I love this theme and i’m trying to use it properly.
Considering that words into the buttons are not so long, like “Cassa” instead of “Cart” and i have the exactly same issue on the english version of the shop i guess there is some css that get some conflict.
It is possible to know where to put hands on? :)
I got the scroll issue aswell and i found the solving css
In particular i have problem concerning the Cart on the sidebar, because i want to keep it there.
Any help would be appreciated.
Kind regards
Alex
Hey CloudChoice!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.avia-button.avia-size-small { pointer-events: none; }
Best regards,
Yigit
The border, padding and top menu is still there somehow please use google chrome browser and you will se it.
Think its something about : class”container” or class”sub_menu” and id”header_meta´”
My CSS so far:
/* Font size */
body { font-size: 14px;}
/* Disable Enfold Responsive menu button */
.main_menu .mobileMenu { display:none !important; }
/* Disable top menu */
#header_meta { display: none !important;}
/* Disable top social bookmarks */
#top .social_bookmarks { display: none;}
/* Disable logout link in menu */
.page-item-logout {display:none;}
.bottom_nav_header.social_header #header_main .container {height: 140px; }
#header_main .container_wrap { border-top-style: none; }
//M
Hey theroyalvideographer!
1) I’m not sure which social bookmarks plugin you use at the moment but please try: http://wordpress.org/plugins/simple-share-buttons-adder/ – I know some users already use it with Enfold without any issues. You can even use it for advanced share buttons (post slider, etc.: https://kriesi.at/support/topic/add-share-buttons-to-postslider-php/ ).
2) Can you post a link to the comment form? I need to investigate the css code.
Regards,
Peter
Hello,
i bought your theme to build a website that have the ecommerce aswell. Now i’m building it and i’m encountering several graphic problem as you can see in the image below.

The sidebar has always the same dimension but in the shop homepage the buttons look different, and in the product page buttons get a bad position.
I would like to know how and were i have to change code to have a properly designed eshop.
Thank you
Hi nokostudio!
Maybe Enfold can’t regenerate the dynamic stylesheet. Please use a ftp client and connect to your server. Navigate to wp-content/uploads/dynamic_avia/ and set the folder permission to 777. Then delete the enfold.css file and go to Enfold > Theme Options to regenerate the dynamic stylesheet (hit the green “Save all changes” button).
Regards,
Peter
Hey!
Afaik there’s no api for the slider controls but you can use the trigger() function: https://api.jquery.com/trigger/ to simulate an click event if someone uses your external controls. You can try this code (insert it at the bottom of enfold/js/avia.js):
(function($){
$( ".my-custom-next" ).on( "click", function() {
$( ".next-slide" ).trigger( "click" );
});
$( ".my-custom-prev" ).on( "click", function() {
$( ".prev-slide" ).trigger( "click" );
});
})( jQuery );
and instead of “my-custom-prev” and “my-custom-next” insert the css classes of your external next/prev control buttons.
Cheers!
Peter
Hi!
You can use the “Duplicate” button but then click the “Translate independently” button to make sure that the “original” entry is not connected to the translated entry. Afterwards you can simply switch to the “Advanced Layout Editor” (Enfold will convert the shortcodes to elements automatically) and then you need to go through your elements to translate them. Make sure that:
1) Blog Elements, Portfolio Grids, etc. use the right categories – every language uses different/translated categories with different ids and you can’t simply query the original categories
2) all images/attachments are correct. Afaik WPML allows you to translate the image/meta data of attachments too and this may change the id of an attachment in the database if you switch to another language because every translation has an unique id.
Cheers!
Peter
@Miikey
Hello
It’s not a WordPress plugin, i use AddThis API.
Loot at my source code:
First you will find:
<div class="addthis_toolbox addthis_floating_style addthis_32x32_style" style="z-index:10000; background:none; right:0px;">
<a title="Tweet this" class="addthis_button_twitter"></a>
<a title="Share on LinkedIn" class="addthis_button_linkedin"></a>
<a title="Publicly recommend on Google" class="addthis_button_google_plusone_share"></a>
<a title="Share on Facebook" class="addthis_button_facebook"></a>
<a title="Send to a friend" class="addthis_button_email"></a>
<a title="Add to favorites" class="addthis_button_favorites"></a>
</div>
And at the bottom of the page the Javascript
<!-- AddThis Button BEGIN -->
<script type="text/javascript">
var addthis_config =
{
data_ga_property: 'UA-295478-35',
data_track_clickback: false
}
var addthis_share =
{
email_template: "ag_template",
templates: {
twitter: 'Check out \'{{title}}\' on {{url}} from @Aug_Banking',
}
}
</script>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-52d9130e620475b3"></script>
<!-- AddThis Button END -->
And i have add my own CSS to place those icons where i want…
Hi TravisKempers!
You can use this plugin to translate it http://wordpress.org/plugins/codestyling-localization/
Cheers!
Yigit
@Pako69
Which plugin are you using on this site http://www.augmented-banking.com/ for the share buttons on the right side? It looks very clean and beautiful!
Hi Yigit,
I’m using the Enfold Child theme so I added the below code. I already had a 10, 1 so I added a 10, 2.
Also, you mentioned functions-enfold.php. I think you meant functions.php. I did not find any of this in functions-enfold.php.
Thank you for your help! Jas
add_filter('avf_default_icons','avia_replace_close_icon', 10, 2);
function avia_replace_close_icon($icons)
{
$icons['close'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5');
return $icons;
}
Hi,
Where can we translate the CART in the header section (Next to basket)?
In what file can I find that.
Regards
This reply has been marked as private.
I’ve installed a 3rd party javascript from healcode.com on my site using the avia text editor text module and although the script works correctly on my live site, I cannot gain access to edit the page. It appears as though once I go to edit the page, I quickly get redirected out of the editor within seconds to a white page where it looks like the script is trying to load endlessly – yet never does. Hitting the back button just jumps back to the redirect – an endless loop.
the text editor (debug mode) changes the start of the code from:
<script type="text/javascript">
to
<script type="text/javascript">// <![CDATA[
and at the end from:
</script>
to
// ]]></script>
I’m pretty sure it’s a jquery conflict that is causing the 3rd party js to be commented out. Is there a way to modify the code in the enfold theme or in the avia directory to prevent this blank redirect in admin so that I can edit the page?
-
This topic was modified 11 years, 11 months ago by
codemode.
Hello,
since I’ve updated to the last versions of Enfold, Woocommerce & German Market, I’ve got still a few problems, that havent been there before:

1. How can I disable the price function “from – to”, in products with variations. It’s supposed to appear one main “start price” only.
2. It seems there is a space problem. Product rating overlaps the button shipping costs.
3. How can I remove the last sentence (I guess from German Market). Hasnt been there in the past.
Thank you very much!!
Hey Jasmer!
Please go to Appearance > Editor and open Functions-enfold.php file and find
'close' => array( 'font' =>'entypo-fontello', 'icon' => 'ue814'),
and change it to
'close' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
Regards,
Yigit
Hallo Peter
Danke!
Kannst du mir noch sagen, wie ich beim ‘shopping_cart .button.checkout’ den Text ‘Bezahlvorgang/Zahlungsweisen’ in ‘Zur Kasse gehen’ abändern kann?
Grosses Kompliment für euer Enfold-Theme. Es ist einfach genial.
Beste Grüsse
Stefan
Thanks Josue,
In topic #216130 you say: “you can export the Theme settings right from the theme options panel: with a button that says: Export theme settings”
I do have the latest version of Enfold but I cannot find this button.
Where to find? Can you help me?
Thanks again,
Ariane
Hi!
Please add following code to Quick CSS in Enfold theme options under Styling tab
.page-id-1011 .avia-builder-el-1 .avia_textblock p a { padding: 10px; background-color: red; color: white; }
Regards,
Yigit
Hey!
Go to WPML > Taxonomy Translation – there you can translate all taxonomies including the “Tags” taxonomy. I noticed a “Synchronize Tags assignment in content” button on this page which may help you. I recommend to ask the WPML devs if they can give you some useful tips. They know their plugin better thn we do and maybe I there’s a “duplicate all content” option and I just missed it.
Cheers!
Peter
Hey hanlinsg!
1) This is not easily possible – please hire a freelancer if you want to modify the layout of the single product template. You can contact werkpress here: http://kriesi.at/contact/customization or hire a freelancer here: http://www.microlancer.com/
Note that relocating the “Add to cart” button position causes incompatibility issues with third party plugins for sure. That’s one of the reasons why we decided to stick with the default WooCommerce layout with Enfold. With propulsion we had several problems with third party plugins.
2) Insert this code into the quick css field:
#top div div.product .woocommerce-tabs ul.tabs li a {
display: none;
}
#top div div.product .woocommerce-tabs .panel {
border: none;
background: #ffffff;
}
3) Seems like Josue solved it: https://kriesi.at/support/topic/tab-content-field-unclickable/’
Regards,
Peter
This reply has been marked as private.
Hi,
Postd this in the comments over at themeforeset and Kriesi directed me here:
Thank you for the great Theme! it is one of my favourites!
My client’s website using “enfold” just went live today(Sunday 16.2.14) and the first blog post was published, but there are two problems:
1) The sharing buttons only show up under pages not under the blog page and also not under the blog posts (despite the settings being right – see screenshot)
2) Under the comment section my newsletter plugin ads a field but it lacks some CSS (see screenshot)
Link to the site is http://www.reduserstress.no
Can you help us? Thank you.