-
AuthorSearch Results
-
May 27, 2018 at 4:16 pm #962795
In reply to: Hotspot Tooltip Background Color on Mobile
Hey Kirstie,
Try this code in the General Styling > Quick CSS field:.av-hotspot-fallback-tooltip-inner,.av-hotspot-fallback-tooltip-count,.av-hotspot-fallback-tooltip-count .avia-arrow { background-color: #fff !important; }Best regards,
MikeMay 25, 2018 at 6:40 pm #962334Topic: Tooltip not working in Tablet/Mobile
in forum Enfoldendregan
ParticipantHi there,
The icon tooltip feature doesn’t seem to be working for touch devices.
I’ve tried looking for a solution to this one but all of the topics/answers on here were not helpful and didn’t resolve the situation.
Testing on
– iPad Pro 10.5″
– iPhone 7I figured it may be a missing piece of code that enables touch devices or we’re missing something for that one?
Thanks for your help!
-
This topic was modified 7 years, 7 months ago by
endregan.
May 24, 2018 at 7:16 pm #961798Topic: Hotspot Tooltip Background Color on Mobile
in forum EnfoldMJM
ParticipantHello,
I was wondering if there was a way to change the color of the background for the tooltip list that shows up for hotspots on mobile. I would like the background to be white so it doesn’t blend in with the background of the page. Thanks!
May 14, 2018 at 8:01 pm #956643HI Basilis,
Thank you very much.
I found out for myself, this code works:function add_custom_tooltip(){ ?> <script> jQuery(window).load(function(){ jQuery('a').removeAttr('title'); }); </script> <?php } add_action('wp_footer', 'add_custom_tooltip');Cheers Torsten
May 11, 2018 at 6:12 pm #955385Topic: Styling for HotSpot ToolTips
in forum Enfoldtonyshanks
ParticipantI just re-purchased support. I want to make the tooltips more in-line with the text, less padding … can you provide me CSS to edit?
See use:
May 11, 2018 at 9:10 am #955101mynick
ParticipantDear Enfold users,
In the new elegant demo they use a page as footer which opens a lot of possibilities. But how do you create the social media icons listed in a row? It even shows a tooltip when u hover over it… Couldnt find this anywhere :o
Can anyone help?
May 10, 2018 at 1:58 pm #954555In reply to: Headline Rotator
Dear Support,
I’m sure, that is a misspelling of code and defined css code.
For my understanding is this a bug. Other elements like text block or slide show have similar options and at this elements the markup working fine and as expected.I have added screenshots
The inherit-rule for font size breaks the rule. All other elements like text block have font-size: 100 %, but no font-size inherit.
Only: Font:inherit; is there. But not font-size!!!
And about responsive headings and longer words, we had discussed 2 years ago. A h1 at a 28″ display should have another style as a h1 at a 430px mobile. But it’s ok now. At every client, i must copy the same manual css responsive code.And I’m not happy about that: This three Topics are mentioned since 2014. And nothing is happen.
10 month ago. The Dev of “Tooltip pro” has mentioned, Enfold have some open div-strings in your code and “tooltip pro” close this automatically – caused to work fine at all themes around the world. Vice versa, both are not compatible and makes error. A small fix was delivered by the dev and it were easy to implement this. Nothing is happen. This occur at my side and at two of my clients which are also use Enfold.https://kriesi.at/support/topic/sidebar-issue-when-using-cm-tooltip-glossary-pro-plugin/
I must also make a compliemnt for the new minification of code. Most of my enfold clients running now at good levels. Only if they use Coutube videos, than the values are rotten again. Caused by youtube code. I can only mention again: please load only a static picture from youtube embeeded video and load script only, when a viewer like to watch the video.
Please take a look at “lazy-load for videos” from kevinI have tried to use this in combination with enfold. But it works not fine. But the loading time of the page was a hald (reduced from 4s to 1.8). Only with the plugin.
Best
S.
May 8, 2018 at 8:11 pm #953523Topic: Uncaught TypeError: $.AviaTooltip is not a constructor
in forum EnfoldSamCKayak
ParticipantVM6081 shortcodes.js:36 Uncaught TypeError: $.AviaTooltip is not a constructor
at HTMLDocument.<anonymous> (VM6081 shortcodes.js:36)
at i (VM6064 jquery.js:2)
at Object.fireWith [as resolveWith] (VM6064 jquery.js:2)
at Function.ready (VM6064 jquery.js:2)
at HTMLDocument.K (VM6064 jquery.js:2)Yes, we cleared cache. Any ideas?
Sam
May 8, 2018 at 12:37 pm #953335In reply to: Enfold support for CM Tooltip Glossary
Marcin Dudek
GuestHey,
I’ve added the link to the file with the changes I made in the Private Content section.
Basically, the idea is to be able to filter the output of the Avia Builder to display the tooltips in the content.Thanks,
MarcinMay 4, 2018 at 7:21 am #951392In reply to: Layerslider not showing after update to [4.3.1]
I did an new Visual Element.
add following codes in your child theme:
functions.php
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }ad shortcodes/slideshow_layerslider.php in your childtheme:
<?php /** * Advanced Layerslider * * Display a Layerslider Slideshow * @modified 4.2.1, 4.2.7 * @modified_by Günter */ if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly if( ! Avia_Config_LayerSlider()->is_active() ) { return; } if ( ! class_exists( 'avia_sc_layersliderB' ) ) { class avia_sc_layersliderB extends aviaShortcodeTemplate { static $slide_count = 0; /** * Create the config array for the shortcode button */ public function shortcode_insert_button() { $this->config['self_closing'] = 'yes'; $class->config['forced_load_objects'] = array( 'layerslider' ); // fallback only to make sure we load in case user overwrites this class and direct checks for shortcode might fail $this->config['name'] = __('Modified Layerslider', 'avia_framework' ); $this->config['tab'] = __('Media Elements', 'avia_framework' ); $this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-slideshow-layer.png"; $this->config['order'] = 10; $this->config['target'] = 'avia-target-insert'; $this->config['shortcode'] = 'av_layerslider'; $this->config['tooltip'] = __('Display a Layerslider Slideshow', 'avia_framework' ); $this->config['tinyMCE'] = array('disable' => "true"); //$this->config['drag-level'] = 1; } function extra_assets() { //load css wp_enqueue_style( 'avia-module-slideshow-ls' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css' , array('avia-layout'), false ); //load js wp_enqueue_script( 'avia-module-slideshow-ls' , AviaBuilder::$path['pluginUrlRoot'].'avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js' , array('avia-shortcodes'), false, TRUE ); } /** * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className * * * @param array $params this array holds the default values for $content and $args. * @return $params the return array usually holds an innerHtml key that holds item specific markup. */ public function editor_element($params) { //fetch all registered slides and save them to the slides array $slides = Avia_Config_LayerSlider()->find_layersliders( true ); if(empty($params['args']['id']) && is_array($slides)) $params['args']['id'] = reset($slides); if(empty($params['args']['id'])) $params['args']['id'] = ""; $element = array( 'subtype' => $slides, 'type'=>'select', 'std' => $params['args']['id'], 'class' => 'avia-recalc-shortcode', 'data' => array('attr'=>'id') ); $inner = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />"; if(empty($slides)) { $inner.= "<div><a target='_blank' href='".admin_url( 'admin.php?page=layerslider' )."'>".__('No Layer Slider Found. Click here to create one','avia_framework' )."</a></div>"; } else { $inner .= "<div class='avia-element-label'>".$this->config['name']."</div>"; $inner .= AviaHtmlHelper::render_element($element); $inner .= "<a target='_blank' href='".admin_url( 'admin.php?page=layerslider' )."'>".__('Edit Layer Slider here','avia_framework' )."</a>"; } $params['class'] = "av_sidebar"; $params['innerHtml'] = $inner; return $params; } /** * Frontend Shortcode Handler * * @param array $atts array of attributes * @param string $content text within enclosing form of shortcode element * @param string $shortcodename the shortcode found, when == callback name * @param array $meta * @return string $output returns the modified html string */ public function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = array() ) { $atts = shortcode_atts( array( 'id' => 0 ), $atts, $this->config['shortcode'] ); $output = ""; avia_sc_layersliderB::$slide_count++; $skipSecond = false; $params = array(); /** * Get selected slider or last slider */ $slider = Avia_Config_LayerSlider()->get_default_slider( $atts['id'] ); if( ! empty( $slider ) ) { $atts['id'] = $slider['id']; $slides = json_decode( $slider['data'], true ); $height = $slides['properties']['height']; $width = $slides['properties']['width']; $responsive = ! empty( $slides['properties']['responsive'] ) ? $slides['properties']['responsive'] : ''; $responsiveunder = ! empty( $slides['properties']['responsiveunder'] ) ? $slides['properties']['responsiveunder'] : ''; $params['style'] = " style='height: ".($height+1)."px;' "; } else { /** * Force an error message in frontend for admins */ $atts['id'] = 0; } $params['class'] = "avia-layerslider main_color avia-shadow ".$meta['el_class']; $params['open_structure'] = false; //we dont need a closing structure if the element is the first one or if a previous fullwidth element was displayed before if(empty($meta['index'])) $params['close'] = false; if(!empty($meta['siblings']['prev']['tag']) && in_array($meta['siblings']['prev']['tag'], AviaBuilder::$full_el_no_section )) $params['close'] = false; if(!empty($meta['index'])) $params['class'] .= " slider-not-first"; $params['id'] = "layer_slider_".( avia_sc_layersliderB::$slide_count ); $output .= avia_new_section($params); if(class_exists('LS_Shortcode') && method_exists('LS_Shortcode', 'handleShortcode')) //fix for search results page - only works with latest LayerSlider versions { $output .= LS_Shortcode::handleShortcode( $atts ); } else if(function_exists('layerslider_init')) //fix for search results page - only works with older LayerSlider versions { $output .= layerslider_init( $atts ); } $output .= "</div>"; //close section //if the next tag is a section dont create a new section from this shortcode if(!empty($meta['siblings']['next']['tag']) && in_array($meta['siblings']['next']['tag'], AviaBuilder::$full_el )) { $skipSecond = true; } //if there is no next element dont create a new section. if(empty($meta['siblings']['next']['tag'])) { $skipSecond = true; } if(empty($skipSecond)) { $output .= avia_new_section(array('close'=>false, 'id' => "after_layer_slider_".avia_sc_layersliderB::$slide_count)); } return $output = preg_replace("#</div>.*?</div>.*?</main>.*?</div>.*?</div>#","",$output); } } }Then you will have a Modified Layerslider. You can use this code in any playcement, like 2/3 or 1/3 rows. And its working too. But this is also a very unnice solution to update it everywhere as the main slider shortcode not working anymore. Somewhere is a “if used load the js for the slider” and it doesn’t recognise the shortcode as a slider.
I cant find that stuff yet.Would be awesome if Kiersi would beta test such stuff and not releasing such a big update, without any good support. Is somebody alive in this board except customer complaining?
PS: I don’t know if it is working with all LAyout possibilities. PErhaps the avia_new_section function dioes the closing of all section which needts to be removed, instead of my replace… But your feedback will show me if its working everywhere or not.
-
This reply was modified 7 years, 8 months ago by
BlutVampir.
May 3, 2018 at 3:11 pm #950821In reply to: gTranslate causes problems with Hotspot Images
Hi Rikard, thank you. I have not tried both plugins the same time. I just tested both separately. but both had the same influence on the Hotspots. Further I found, that if I am not logged into the WordPress Backend, the Hotspot Tooltips work as they should. So: actually this would be OK for me.
best regards and thank you very much
ChristianMay 3, 2018 at 10:48 am #950640Topic: javascript error showing up in chrome console
in forum Enfoldgoch
ParticipantNot sure if it’s important or not, but just to let you know, I’ve noticed two errors showing up in the chrome developer console :
A) in avia.js :
Uncaught SyntaxError: Unexpected string avia.js?ver=4.3.1:973B) in avia.js shortcodes.js :
Uncaught TypeError: $.AviaTooltip is not a constructor
at HTMLDocument.<anonymous> (shortcodes.js?ver=4.3.1:36)
at i (jquery.js?ver=1.12.4:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
at Function.ready (jquery.js?ver=1.12.4:2)
at HTMLDocument.K (jquery.js?ver=1.12.4:2)May 1, 2018 at 3:50 am #949307In reply to: adjust z-index in product page elements
Hi,
How did you add the icon? It’s inside the add to cart form.
<div class="tinv-wraper woocommerce tinv-wishlist tinvwl-before-add-to-cart"> <input type="hidden" name="product_id" value="1683"> <a class="tinvwl_add_to_wishlist_button tinvwl-icon-heart icon-white no-txt button tinvwl-position-before" data-tinv-wl-list="[]" data-tinv-wl-product="1683" data-tinv-wl-productvariation="0" data-tinv-wl-producttype="simple" data-tinv-wl-action="addto" rel="nofollow"></a> <div class="tinvwl-tooltip">Βάλτο στη λίστα</div> </div>Best regards,
IsmaelApril 29, 2018 at 8:59 am #948574In reply to: Multiple Questions!
Hi,
If you go to any page on the site (there are not many yet) look in the blue footer and you will see them – they are three mono coloured logos, png files: one reads NHBRC, Property24 and PrivateProperty. They are in column 2 and 3. If still not clear see links below for dropbox explanation image.That css code you gave does nothing.
Also I want to address THESE images, not ALL images please. The fact that the same type of image (png) files, in duplicated containers, behave differently is not referenced anywhere.
From documentation link: if I add this css code then rollover icon/white overlay disappears from ALL images on the site (I do want them in other areas like gallery and portfolio), I just want to address these three by themselves in the footer:
/* Remove image overlay with circle and arrow */
.image-overlay {
display: none !important;
opacity: 0 !important;
}Also, if I use this code the tool tip now shows filename as well, not the link.
—update—
I have managed to remove the tooltips with this function. But is it possible to make the tooltip read something that I can enter somewhere, like “goto xxx”?function remove_title_attr(){
?>
<script>
jQuery(window).load(function(){
jQuery(‘#wrap_all a’).removeAttr(‘title’);
jQuery(‘#wrap_all img’).removeAttr(‘title’);
});
</script>
<?php
}
add_action(‘wp_footer’, ‘remove_title_attr’);-
This reply was modified 7 years, 8 months ago by
patricknh. Reason: update to above
April 28, 2018 at 11:01 am #948310Topic: Image rollover behaviour wrong
in forum Enfoldpatricknh
ParticipantHi,
I have three images with links in the “footer” (using feature “page as footer”) – on rollover one displays a white overlay and blue arrow icon (dont want that!) and other two just show a tooltip with the image file name (dont want that either!) I want some other kind of indication that it is a link, more subtle – where are the choices for this and if an icon/overlay where are the settings for that?Why are the rollovers different even though all are same image “element” and all are png? (I even re-did them as clones but the rollover behaviour didn’t change at all)
April 26, 2018 at 10:47 am #947179Topic: gTranslate causes problems with Hotspot Images
in forum Enfoldvectorcriz
ParticipantDear Enfold-Team,
first of all: after years using Enfold I am still happy with it! Great update 4.3! Thanks a lot!
Now my question: I use the “Image with Hotspot” a lot in my site. Now I want also use a google Translator Plug in such as gTranslate or Google Language Translator. First view everything worked fine. But the Tooltips of the Hotspots are not opening if e.g. gTranslate is activated, they just flicker on mouseover. It is not possible to read or open the tooltip.
Have you ever tested a Google translation PlugIn which works fine with enfold’s “image with Hotspot”?
Or maybe you ca give me a hint how to fix this issue?Thank you in advance!
April 26, 2018 at 10:03 am #947151Topic: Multiple Questions!
in forum Enfoldpatricknh
ParticipantHi guys, I have a few problems I’m trying to solve or understand with this theme. While I can find many similar questions on the forum I find the answers so specific to that user’s website as to be useless in helping me understand how to solve my issue!
I hope you’ll bare with me if I put things into one post for now rather than spam you with multiple topics (or is that the preferred way?)
1. How do I control the top/bottom spacing (padding or margin) of a layout block?
2. How do I style the text and padding inside a particular (not all) button
3. I have a page as footer (new feature) and cannot get the facebook widget right. When the screen sizes to mobile it has a big white background to the right? I am not sure I am including it properly (widget area) but seem to have no control over this white. Is there a shortcode method or some other method?
4. How do I vertically align images?
5. I have three images with links in the “footer” (page as…) – on rollover one displays a white overlay and blue icon (dont want that!) and other two just show a tooltip with the image file name (dont want that either!) I want some other kind of indication that it is a link, more subtle – where are the choices for this and if an icon/overlay where are the settings for that? Why are the rollovers different even though all are same image elements and all are png? (I re-did them as clones but the rollover behaviour didn’t change)
6. How do I switch off the breadcrumbs – again, many similar questions, surely this is a basic element that has off/on? I cannot find that setting!
7. How do I add a link in the copyright socket? If I add an tag it just gets truncated right there at the start of the tag.I am a designer and lately very used to using Divi theme/builder which gives far superior and comprehensive options to style each and every element and line of text as well as apply custom css to the particular item or module etc. However I find your standard items like portfolio etc much better out the box but then I’m frustrated at the lack of styling control and customisation options. I find it extremely difficulty to understand what to address/target in the css for the item from a web inspector view of the element – there is just so much data I don’t really understand what I need to identify to target. This is what I see in all the replies you guys provide, but as I said it is so specific to that user that its useless to me and this forum has lots of answers but lacks knowledge and learning opportunity because of your excellent but very specific answers.
If I’m not going about asking this stuff properly please feel free to correct me as to a better way.
Thanks!
Pat
April 26, 2018 at 9:51 am #947147I Have found this code in a older post
function add_custom_tooltip(){ ?> <script> jQuery(window).load(function(){ jQuery('a').removeAttr('title'); jQuery('img').removeAttr('title'); }); </script> <?php } add_action('wp_footer', 'add_custom_tooltip');This works fine, but:
Now the description under the enlarged picture in the lightbox is gone.
Is there an workaround?Cheers Torsten
April 24, 2018 at 4:45 am #945659In reply to: Spacing, Backgrounds, Buttons and more!
Hi,
Try this css to hide the captions:.avia-tooltip.avia-tt {display: none !important;}For transparent spacing in your gallery, I change the code to:
#top div .avia-gallery img { border-style: none!important; border-width: 0px!important; background-color: transparent; }Please check.
For your footer width, please try this code that changes the width from 100% to 80%, making the items closer:#footer .container {width: 80%!important; }For the background of the menu, please try:
.html_av-overlay-side #top .av-burger-overlay-scroll { background:url(//static.campbellhillsguestranch.com/themes/CampBell17/images/layout/leatherBG.jpg) no-repeat right top !important; }To add the social icons to the footer, please try adding this code to a HTML widget in your footer:
<ul class="noLightbox social_bookmarks icon_count_5"><li class="social_bookmarks_youtube av-social-link-youtube social_icon_1"><a target="_blank" href="https://www.youtube.com/channel/UCsaXEoWO2zFOaD5h3QjRCGg" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Youtube"><span class="avia_hidden_link_text">Youtube</span></a></li><li class="social_bookmarks_facebook av-social-link-facebook social_icon_2"><a target="_blank" href="https://www.facebook.com/campbellhillsguestranchkamloops/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook"><span class="avia_hidden_link_text">Facebook</span></a></li><li class="social_bookmarks_instagram av-social-link-instagram social_icon_3"><a target="_blank" href="https://www.instagram.com/campbell_hills_guest_ranch/" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram"><span class="avia_hidden_link_text">Instagram</span></a></li><li class="social_bookmarks_gplus av-social-link-gplus social_icon_4"><a target="_blank" href="https://plus.google.com/+Campbellhillsguestranch" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Gplus"><span class="avia_hidden_link_text">Gplus</span></a></li><li class="social_bookmarks_mail av-social-link-mail social_icon_5"><a href="mailto: (Email address hidden if logged out) " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Mail"><span class="avia_hidden_link_text">Mail</span></a></li></ul>Best regards,
MikeApril 20, 2018 at 4:51 am #944412In reply to: Add Ajax Search to Header meta
Hey Roel,
Thank you for using Enfold.
Yes, this is possible. Just duplicate the default search icon filter and modify it a bit. Add it in the functions.php file.
/* Header Meta Search Icon */ if(!function_exists('avia_append_header_meta_search_icon')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_header_meta_search_icon', 9997, 2 ); add_filter( 'avf_fallback_menu_items', 'avia_append_header_meta_search_icon', 9997, 2 ); function avia_append_header_meta_search_icon( $items, $args ) { if (is_object($args) && $args->theme_location == 'avia2') { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown menu-item-avia-special"> <a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; } return $items; } }Best regards,
IsmaelApril 19, 2018 at 11:35 am #944049In reply to: Enfold Theme Hotspots Help
Hey TheMyersRobertsCollective,
Thank you for using Enfold.
You can set the tooltip to display on click instead of mouse enter but you have to modify the js > shortcodes.js file and js > avia.js file. In the avia.js file, look for this code around line 2269.
element = $(target),If the event is “click”, set the element to the parent of the target container.
element = this.options.event == "click" ? $(target).parent() : $(target),And in the shortcodes.js file, look for this code around line 36.
new $.AviaTooltip({'class': "avia-tooltip", data: "avia-tooltip", delay:0, scope: "body"});Add or set the “event” option to “click”.
new $.AviaTooltip({'class': "avia-tooltip", data: "avia-tooltip", delay:0, scope: "body", event: 'click'});Remove browser cache prior to testing the page. Please note that this modification will affect every tooltip element in the page.
Best regards,
IsmaelApril 17, 2018 at 7:45 am #942985In reply to: Can I get selected pages from the 2017 Enfold demo?
Hi,
Shortcode for the home page:
[av_layerslider id='4'] [av_layout_row border='' min_height_percent='' min_height='0' color='main_color' mobile='av-flex-cells' id='3 col intro' av_element_hidden_in_editor='0'] [av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display=''] [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue862' font='entypo-fontello' title='A real Time-Saver' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)'] Enfold is a powerful Theme that comes with an easy <strong>drag and drop admin interface</strong>. Set up new sites in no time! [/av_icon_box] [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display=''] [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8b9' font='entypo-fontello' title='Free updates & support' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)'] 180.000 customers can't be wrong. We offer incredible support and <strong>free updates</strong> for all our themes! [/av_icon_box] [/av_cell_one_third][av_cell_one_third vertical_align='top' padding='70px,50px,70px,50px' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display=''] [av_icon_box position='left_content' icon_style='av-icon-style-no-border' boxed='' icon='ue8dd' font='entypo-fontello' title='No Rocket Science' link='' linktarget='' linkelement='' font_color='' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#bbbbbb' custom_border='' admin_preview_bg='rgb(255, 255, 255)'] Whether you have never touched a line of code or are a WordPress-Ninja, this theme is built for users of <strong>all skill levels</strong>… [/av_icon_box] [/av_cell_one_third] [/av_layout_row] [av_layout_row border='' min_height_percent='' min_height='' color='main_color' mobile='av-flex-cells' id='Best Rated' av_element_hidden_in_editor='0'] [av_cell_one_half vertical_align='middle' padding='150px,0px,150px,150px' background_color='#f8f8f8' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat' mobile_display=''] [av_one_full first min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display=''] [av_heading tag='h1' padding='20' heading='More than 100.000 users and the best rating on Themeforest' color='custom-color-heading' style='blockquote modern-quote' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] Enfold is the best rated top seller on <a href="https://themeforest.net/?ref=Kriesi" target="_blank">Themeforest</a>. There is no other theme with that many sales that has an average rating of 4.85. Heck, you will be hard pressed to find <strong>ANY</strong> product on the web with that many sales and a rating that good ;) [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon] [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon] [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon] [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon] [av_font_icon icon='ue808' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='#e2bc12'][/av_font_icon] [av_hr class='invisible' height='42' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_button label='Get it now' link='manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi' link_target='' size='large' position='left' icon_select='yes' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='dark' custom_bg='#444444' custom_font='#ffffff' admin_preview_bg='rgb(255, 255, 255)'] [/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align='middle' padding='500px,0px,500px,0px' background_color='#f8f8f8' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/01/mockup.png' attachment='298' attachment_size='full' background_attachment='scroll' background_position='bottom left' background_repeat='no-repeat' mobile_display='av-hide-on-mobile'] [/av_cell_one_half] [/av_layout_row] [av_section min_height='' min_height_px='500px' padding='default' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Intro' color='main_color' custom_bg='' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_heading tag='h1' padding='20' heading='A theme packed with great features' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_image_hotspot src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/multi_apple-1.jpg' attachment='376' attachment_size='full' animation='bottom-to-top' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile'] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='13.7,27.8'] Beautiful new demos with each release [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='21,69.9'] Free Stock Pictures included in all demos [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='48.6,85.3'] Retina ready and responsive - works great on devices of any size [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='87.1,40.1'] Amazing Theme Options for unlimited colors and styles [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='63.2,11.3'] Powerful Visual Layout Editor [/av_image_spot] [/av_image_hotspot] [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] Enfold is the best rated top seller on Themeforest for a reason. It comes with <strong>a lot of great features and demos</strong>, but at the same time we always try to keep things as simple and intuitive as possible, so that users with little WordPress or theming experience have no problem using it as well. [/av_textblock] [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] In addition to that, we offer high quality support in our forum around the clock. 40.000 registered users and more than <strong>120.000 entries</strong> show that we care that your site runs as smooth as possible. You got a question? Don't hesitate to get in touch :) [/av_textblock] [/av_one_half] [/av_section] [av_masonry_gallery ids='352,350,355,353,354,351' items='6' columns='6' paginate='none' size='fixed' gap='large' overlay_fx='active' container_links='active' id='' caption_elements='title' caption_styling='' caption_display='on-hover' color='custom' custom_bg='#35383c'] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='' bottom_border_style='' id='Feature List' color='main_color' custom_bg='#35383c' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_heading tag='h1' padding='0' heading='Can’t get enough?<br/>Here are even more features!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='45px' custom_margin_bottom='45px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)'] [av_one_third first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display=''] [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)'] [av_iconlist_item title='Clean and modern Design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Drag and Drop Template Builder' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Ajax Instant Search' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Translation ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='WooCommerce ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='WooCommerce Bookings Support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='WPML ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Responsive design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Child theme support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [/av_iconlist] [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display=''] [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)'] [av_iconlist_item title='Retina Ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Events Calendar Integration' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='2D + 3D Layerslider Slideshow' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Video Support + Slideshows' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Unlimited Color Options' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Unique unlimited sidebars' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Portfolio Pages & Ajax Portfolios' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Free Lifetime Updates' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Contact Form Builder' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [/av_iconlist] [/av_one_third][av_one_third min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='bottom-to-top' mobile_display=''] [av_iconlist position='left' iconlist_styling='av-iconlist-small' custom_title_size='18' custom_content_size='' font_color='custom' custom_title='' custom_content='' color='custom' custom_bg='' custom_font='#ffffff' custom_border='' admin_preview_bg='rgb(34, 34, 34)'] [av_iconlist_item title='Easy One Page Design' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='More than 2 dozen Demos' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Single click Demo import' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Top Notch Support' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Regular Updates and Improvements' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Strong SEO foundation' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Compatible with major SEO plugins' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='bbPress Forum ready' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [av_iconlist_item title='Parallax Effects' link='' linktarget='' linkelement='' icon='ue871' font='entypo-fontello'][/av_iconlist_item] [/av_iconlist] [/av_one_third] [/av_section] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='border-extra-arrow-down' bottom_border_diagonal_color='#ffffff' bottom_border_diagonal_direction='' bottom_border_style='' id='Demos' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/isometric-1.jpg' attachment='447' attachment_size='full' attach='scroll' position='center left' repeat='contain' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_one_half first min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='50px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display=''] [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='no_margin' custom_margin='aviaTBcustom_margin' margin='0px' margin_sync='true' padding='50px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='rgba(255,255,255,0.85)' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='left-to-right' mobile_display=''] [av_heading tag='h1' padding='20' heading='A growing library of more than 2 dozen demos' color='custom-color-heading' style='blockquote modern-quote' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] Our demos are one of a kind: we only offer<strong> full concept demos</strong> with multiple pages that show whole projects, unlike others who only include a single page and call that a demo ;) You can import them with <strong>a single click</strong>, they are easily adaptable to your needs and you can chose from a variety of layouts and niche designs. In addition to that you can also use the <strong>demo images used in our demo for your own project</strong>! [/av_textblock] [/av_one_half] [/av_section] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Visual Editor' color='main_color' custom_bg='#f8f8f8' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_heading tag='h1' padding='20' heading='Our great Visual Layout Editor just got better:<br/>Now with live previews!' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#000000' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello'] [av_image_hotspot src='https://kriesi.at/themes/enfold-2017/files/2017/02/layout_editor.jpg' attachment='3001' attachment_size='full' animation='bottom-to-top' hotspot_layout='numbered' hotspot_tooltip_display='av-permanent-tooltip' hotspot_mobile='aviaTBhotspot_mobile'] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#22689e' custom_font='#ffffff' custom_pulse='#22689e' hotspot_pos='22.1,29'] <strong>Step 1:</strong> Add an element to the visual editor canvas [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-xlarge-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='custom' custom_bg='#22689e' custom_font='#ffffff' custom_pulse='#22689e' hotspot_pos='63.8,8.3'] <strong>Step 2:</strong> Edit the element to your likings. A visual preview will be shown to the right for most content elements. [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-centered' tooltip_width='av-tt-large-width' tooltip_style='main_color av-tooltip-shadow' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='39.7,78.6'] <strong>Step 3:</strong> Rinse and repeat, until you got a great website ;) [/av_image_spot] [/av_image_hotspot] [av_hr class='invisible' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_one_half first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] There are several approaches when it comes to content editing but we consider our Advanced Layout Editor one of the best. We prefer a backend editor to one that is placed on the frontend, because there is less clutter and the layout process is usually much easier. [/av_textblock] [/av_one_half][av_one_half min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [av_textblock size='' font_color='' color='' admin_preview_bg='rgb(255, 255, 255)'] However, there are merits to a frontend editor. The biggest one is that you can see how the element your are editing looks like at any given time. This is why we have implemented a live preview window for our content elements. So now you got the best of both worlds: easy layout building and visual content editing :) [/av_textblock] [/av_one_half] [/av_section] [av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Newsletter' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg' attachment='480' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.9' overlay_color='#35383c' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_heading tag='h1' padding='20' heading='Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up' color='custom-color-heading' style='blockquote modern-quote modern-centered' custom_font='#ffffff' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(34, 34, 34)'][/av_heading] [av_one_fifth first min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [av_contact (Email address hidden if logged out) ' title='' button='Subscribe' on_send='' sent='Thanks for subscribing! ' link='manually,http://' subject='' autorespond='' captcha='' hide_labels='aviaTBhide_labels' form_align='' color='av-custom-form-color av-light-form' admin_preview_bg='rgb(34, 34, 34)'] [av_contact_field label='Name' type='text' options='' check='is_empty' width='element_third' multi_select='' av_contact_preselect=''][/av_contact_field] [av_contact_field label='E-Mail' type='text' options='' check='is_email' width='element_third' multi_select='' av_contact_preselect=''][/av_contact_field] [/av_contact] [av_textblock size='' font_color='custom' color='#cecece' admin_preview_bg='rgb(34, 34, 34)'] <p style="text-align: center;">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p> [/av_textblock] [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='fade-in' mobile_display=''] [/av_one_fifth] [/av_section] [av_section min_height='' min_height_px='500px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Plugin Header' color='main_color' custom_bg='#f1f1f1' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_hr class='invisible' height='40' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_heading tag='h1' padding='0' heading='Deep integration for market-leading plugins.<br/>And of course working out of the box with thousands more...' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)'][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='70px' custom_margin_bottom='5px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [/av_section] [av_tab_section transition='av-tab-slide-transition' padding='large' tab_pos='av-tab-above-content' tab_padding='none' initial='5' id='Plugins' av_element_hidden_in_editor='0' av_admin_tab_active='2' bg_color='#f1f1f1' color='#919191'] [av_tab_sub_section tab_title='bbPress Forums' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3004' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/bbpress-ipad.jpg' attachment='541' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Easily build and manage your community with the bbPress forum plugin' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] <strong>bbPress</strong> is a forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress powered site. [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about bbPress' link='manually,https://bbpress.org/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue80b' font='entypo-fontello' color='custom' custom_bg='#8dc770' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Yoast SEO for WP' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3012' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Optimize your site for search engines with Yoast SEO for WordPress' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] <strong>Yoast SEO</strong> allows you to easily optimize your WordPress site with one plugin for all search engines. It allows for real time content analysis of your blog entries and has many more features to streamline your site. A premium version of the plugin is also available. [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about Yoast SEO' link='manually,https://yoast.com/wordpress/plugins/seo/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue803' font='entypo-fontello' color='custom' custom_bg='#0075b3' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://kriesi.at/themes/enfold-2017/files/2017/01/yoast-ipad.jpg' attachment='3204' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Gravity Forms' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3007' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/gravity-ipad.jpg' attachment='543' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Build great forms with GravityForms' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] Although Enfold has a great and simple form builder for everyday contact forms, sometimes what you need is something more sophisticated with a lot more options. Thats where <strong>GravityForms</strong> shines! [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about GravityForms' link='manually,http://www.gravityforms.com/' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue849' font='entypo-fontello' color='custom' custom_bg='#365666' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Slider Revolution' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3009' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Use Slider Revolution for beautiful slides' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] Although the plugin is not included as part of the theme (other than the Layerslider Plugin, which is) the theme will show an extra template builder element for the Slider Revolution Plugin for easier integration with our layouts. No Matter with Layer Based Slider you prefer, we got you covered! [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about Slider Revolution' link='manually,https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380?ref=Kriesi' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue891' font='entypo-fontello' color='custom' custom_bg='#c50000' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/revslider-ipad.jpg' attachment='546' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Woo Commerce' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3010' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/woo-ipad.jpg' attachment='522' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Open your own WooCommerce Online Store' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] <strong>WooCommerce</strong> is now the most popular eCommerce platform on the web, so you can rest assured you're in good company. Build beautiful and functional stores without any hassle by using our Enfold Theme in conjunction with WooCommerce. [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about WooCommerce' link='manually,https://woocommerce.com/?ref=84' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='custom' custom_bg='#a46497' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Layer Slider Plugin' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3008' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Use LayerSlider for amazing custom animations. The plugin is the only one included in the theme' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] Our goto slider when it comes to complex layer-based animation sliders. The Plugin is included as part of the theme but no worries, if you don't use we wont load it, to take care of your server resources. [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about the LayerSlider' link='manually,https://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin/1362246?ref=Kriesi' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue84e' font='entypo-fontello' color='custom' custom_bg='#312853' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/layerslider-ipad.jpg' attachment='544' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Mailchimp Newsletter' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3005' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/mailchimp-ipad-1.jpg' attachment='545' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Mailchimp Newsletter Integration' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] Not technically a plugin but only the most popular newsletter service there is. And Enfold allows you to create subscription forms out of the box. Just enter your <strong>Mailchimp</strong> API key and start collecting subscribers! [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about Mailchimp' link='manually,https://mailchimp.com' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue836' font='entypo-fontello' color='custom' custom_bg='#f58eac' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='The Events Calendar' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3006' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Manage and organize events with this amazing plugin' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] A solid, feature-rich calendar and events management suite that’s scalable from soup to nuts. Also comes with a Pro version and a ton of extensions. Definitely check it out! [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about the Evens Calendar' link='manually,http://mbsy.co/6cr37' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue84e' font='entypo-fontello' color='custom' custom_bg='#1173b3' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][av_one_half min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/events-ipad.jpg' attachment='542' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title='Multi Language' vertical_align='middle' icon_select='image_top' icon='ue800' font='entypo-fontello' tab_image='3011' tab_image_style='' color='#333333' background_color='' src='' attachment='' attachment_size='' background_attachment='scroll' background_position='top left' background_repeat='no-repeat'] [av_one_half first min_height='av-equal-height-column' vertical_alignment='av-align-middle' space='' margin='0px' margin_sync='true' padding='0px' padding_sync='true' border='' border_color='' radius='0px' radius_sync='true' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/wpml-ipad.jpg' attachment='547' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='no-animation' admin_preview_bg='rgb(255, 255, 255)'][/av_image] [/av_one_half][av_one_half min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_heading tag='h1' padding='0' heading='Create sites with multiple languages with Enfold and WPML' color='' style='blockquote modern-quote' custom_font='' size='30' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)' av-desktop-hide='' av-medium-hide='' av-small-hide='' av-mini-hide='' av-medium-font-size-title='' av-small-font-size-title='' av-mini-font-size-title='' av-medium-font-size='' av-small-font-size='' av-mini-font-size=''][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] WPML allows running fully multilingual websites with WordPress, making it easy to translate WordPress pages, posts, tags, categories and themes. And since our Themes are optimised for <strong>WPML</strong> the whole experience gets even better! [/av_textblock] [av_hr class='invisible' height='20' shadow='no-shadow' position='left' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_button label='Learn more about WPML' link='manually,http://bit.ly/kwpml' link_target='_blank' size='large' position='left' icon_select='yes-right-icon' icon_hover='aviaTBicon_hover' icon='ue859' font='entypo-fontello' color='custom' custom_bg='#307a9b' custom_font='#ffffff' admin_preview_bg=''] [/av_one_half][/av_tab_sub_section][/av_tab_section][av_section min_height='' min_height_px='500px' padding='huge' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Testimonials' color='main_color' custom_bg='' src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg' attachment='480' attachment_size='full' attach='fixed' position='center center' repeat='stretch' video='' video_ratio='16:9' overlay_enable='aviaTBoverlay_enable' overlay_opacity='0.9' overlay_color='#35383c' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_heading heading='What our customers say' tag='h1' style='blockquote modern-quote modern-centered' size='40' subheading_active='' subheading_size='15' padding='0' color='custom-color-heading' custom_font='#ffffff' admin_preview_bg='rgb(34, 34, 34)'][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#ffffff' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg='rgb(34, 34, 34)'] [av_testimonials style='slider_large' columns='2' interval='5' font_color='custom' custom_title='#ffffff' custom_content='#e8e8e8' admin_preview_bg='rgb(34, 34, 34)'] [av_testimonial_single src='' name='Macky Mac' subtitle='' link='' linktext=''] Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. [/av_testimonial_single] [av_testimonial_single src='' name='Franco Moriti' subtitle='' link='' linktext=''] Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. [/av_testimonial_single] [/av_testimonials] [/av_section] [av_section min_height='' min_height_px='500px' padding='no-padding' shadow='no-border-styling' bottom_border='no-border-styling' bottom_border_diagonal_color='#333333' bottom_border_diagonal_direction='' bottom_border_style='' id='Support' color='main_color' custom_bg='#ffffff' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='' av_element_hidden_in_editor='0'] [av_hr class='invisible' height='70' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_heading tag='h1' padding='0' heading='Real support by real people' color='' style='blockquote modern-quote modern-centered' custom_font='' size='40' subheading_active='' subheading_size='15' custom_class='' admin_preview_bg='rgb(255, 255, 255)'][/av_heading] [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-fat' custom_width='50px' custom_border_color='#000000' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='no' custom_icon_color='' icon='ue808' font='entypo-fontello' admin_preview_bg=''] [av_one_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [/av_one_fifth][av_three_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [av_textblock size='' font_color='' color='' admin_preview_bg=''] <p style="text-align: center;">We offer the best support and service you can imagine. Use our support forum if you have any questions and our team will respond. We have thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p> [/av_textblock] [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat' animation='' mobile_display=''] [/av_one_fifth][av_image src='https://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg' attachment='582' attachment_size='full' align='center' styling='no-styling' hover='' link='' target='' caption='' font_size='' appearance='' overlay_opacity='0.4' overlay_color='#000000' overlay_text_color='#ffffff' animation='bottom-to-top' admin_preview_bg=''][/av_image] [/av_section]Best regards,
RikardApril 16, 2018 at 4:40 pm #942646Topic: Wordfence and enfold not playing nice together
in forum Enfoldenigmaverse
ParticipantBeen going back and forth with Wordfence. I’ve got a script error that is preventing modal windows in Wordfence, thus preventing me from fixing other issues. This error only shows when Enfold is the active theme… no issues when Enfold is deactivated.
Uncaught ReferenceError:
load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12 Uncaught ReferenceError: jQuery is not defined
at load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
at load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
(anonymous) @ load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
(anonymous) @ load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14 Uncaught TypeError: a.widget is not a function
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14April 16, 2018 at 12:30 am #942353In reply to: Enfold Website-Suche
Hey ergebnisreich,
You can change line 124 of functions-enfold.php and change
?s=for a #
final line will be:
<a href="#" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a>Or you can disallow or block search pages or every url with the search query in the robot.txt file.
User-agent: * Disallow: /search Disallow: /*?s=Another option is to Change the Search-URL of WordPress
Best regards,
MikeApril 15, 2018 at 12:22 am #942100In reply to: Tool-Tip for Iconbox
Hi,
You can try add a JS rule, that can try all the videos inside the web site and add a tooltip, but that would require to hire a freelancer, who would be responsible to help you out for the problem.
Best regards,
BasilisApril 13, 2018 at 9:30 pm #941673if you activate the debug mode you can see the enfold shortcodes generated down the layout window.
If you only pull one image with hotspots in it – configure everything you like – you can see the shortcode like this :[av_image_hotspot src='https://webers-testseite.de/wp-content/uploads/DSC5417-1030x616.jpg' attachment='30814' attachment_size='large' animation='no-animation' hotspot_layout='numbered' hotspot_tooltip_display='' hotspot_mobile='aviaTBhotspot_mobile' custom_class=''] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='11,51.5'] Kirschblüte in Bonn - Friedrichstraße [/av_image_spot] [av_image_spot tooltip_pos='av-tt-pos-above av-tt-align-left' tooltip_width='av-tt-default-width' tooltip_style='main_color' link='' link_target='' hotspot_color='' custom_bg='' custom_font='' custom_pulse='' hotspot_pos='50,29.6'] Kirschblüte in Bonn - Friedrichstraße [/av_image_spot] [/av_image_hotspot]you can enter this in a tab text field (best on text editor not visual one) – these tabs you can pull in a tab of a tab-section
this is a diligence task – but it is possible !
( PS i tried to do it tab in a tab – but this messes up )April 13, 2018 at 1:55 pm #941500In reply to: Tool-Tip for Iconbox
Hey Ismael,
thanks for the quick feedback!Mhhh, “overwritten on updates” does not sound comfortable …
I wanted to use the tooltip for a hint on links to Youtube videos … under the new European Data Protection Regulation, which will come on 25 May 2018 (could also be interesting for “enfold” and corresponding adjustments).
But then I will use first only local videos…By the way … high praise to your work … whenever I search for solutions, I find these in your posts!!!
So, Mr. Kriesi … hope you get that ;-)See ya
DanielApril 13, 2018 at 11:15 am #941411Hi,
Ah yes. My bad. I forgot about that. You can’t directly add the image hotspot shortcode inside the tabs so you have to generate them on a separate page and then extract the actual hmtl. Example.
<div class="av-hotspot-image-container avia_animate_when_almost_visible av-hotspot-numbered av-mobile-fallback-active avia-builder-el-2 avia-builder-el-no-sibling avia_start_animation avia_start_delayed_animation" itemprop="image" itemscope="itemscope" itemtype="https://schema.org/ImageObject"> <div class="av-hotspot-container"> <div class="av-hotspot-container-inner-cell"> <div class="av-hotspot-container-inner-wrap"> <div class="av-image-hotspot av-display-hotspot" data-avia-tooltip-position="top" data-avia-tooltip-alignment="left" data-avia-tooltip-class="av-tt-default-width av-tt-pos-above av-tt-align-left av-mobile-fallback-active main_color av-tt-hotspot" data-avia-tooltip="This is a tooltip." style="top: 52.3%; left: 29.6%; "> <div class="av-image-hotspot_inner" style=" ">1</div> <div class="av-image-hotspot-pulse"></div> </div> <img class="avia_image " src="HOTSPOT IMAGE URL HERE" alt="Test 3" title="b323e250748487.58da487d9a5e6" itemprop="thumbnailUrl"></div> </div> </div> <div class="av-hotspot-fallback-tooltip"> <div class="av-hotspot-fallback-tooltip-count">1 <div class="avia-arrow"></div> </div> <div class="av-hotspot-fallback-tooltip-inner clearfix"> This is a tooltip. </div> </div> </div>Best regards,
IsmaelApril 12, 2018 at 1:30 pm #940915Topic: Tool-Tip for Iconbox
in forum FAQ & Video Tutorialscheffe
ParticipantHey guys,
is it possible to create a tool tip for an iconbox with a link (identical to icon and title)?
For a single icon there is this possibility of a tooltip …I found an older solution from Elliott (November 17, 2014) that I do not know if it still works:
https://kriesi.at/support/topic/tooltip-on-icon-box/If this solution works, will it be overwritten by updates?
Thank you for your work – awesome theme :-)
April 8, 2018 at 8:45 pm #938874In reply to: disable bubble caption in gallery
-
This topic was modified 7 years, 7 months ago by
-
AuthorSearch Results
-
Search Results
-
Hi there,
The icon tooltip feature doesn’t seem to be working for touch devices.
I’ve tried looking for a solution to this one but all of the topics/answers on here were not helpful and didn’t resolve the situation.
Testing on
– iPad Pro 10.5″
– iPhone 7I figured it may be a missing piece of code that enables touch devices or we’re missing something for that one?
Thanks for your help!
Hello,
I was wondering if there was a way to change the color of the background for the tooltip list that shows up for hotspots on mobile. I would like the background to be white so it doesn’t blend in with the background of the page. Thanks!

Topic: Styling for HotSpot ToolTips
I just re-purchased support. I want to make the tooltips more in-line with the text, less padding … can you provide me CSS to edit?
See use:
Dear Enfold users,
In the new elegant demo they use a page as footer which opens a lot of possibilities. But how do you create the social media icons listed in a row? It even shows a tooltip when u hover over it… Couldnt find this anywhere :o
Can anyone help?
VM6081 shortcodes.js:36 Uncaught TypeError: $.AviaTooltip is not a constructor
at HTMLDocument.<anonymous> (VM6081 shortcodes.js:36)
at i (VM6064 jquery.js:2)
at Object.fireWith [as resolveWith] (VM6064 jquery.js:2)
at Function.ready (VM6064 jquery.js:2)
at HTMLDocument.K (VM6064 jquery.js:2)Yes, we cleared cache. Any ideas?
Sam
Not sure if it’s important or not, but just to let you know, I’ve noticed two errors showing up in the chrome developer console :
A) in avia.js :
Uncaught SyntaxError: Unexpected string avia.js?ver=4.3.1:973B) in avia.js shortcodes.js :
Uncaught TypeError: $.AviaTooltip is not a constructor
at HTMLDocument.<anonymous> (shortcodes.js?ver=4.3.1:36)
at i (jquery.js?ver=1.12.4:2)
at Object.fireWith [as resolveWith] (jquery.js?ver=1.12.4:2)
at Function.ready (jquery.js?ver=1.12.4:2)
at HTMLDocument.K (jquery.js?ver=1.12.4:2)Hi,
I have three images with links in the “footer” (using feature “page as footer”) – on rollover one displays a white overlay and blue arrow icon (dont want that!) and other two just show a tooltip with the image file name (dont want that either!) I want some other kind of indication that it is a link, more subtle – where are the choices for this and if an icon/overlay where are the settings for that?Why are the rollovers different even though all are same image “element” and all are png? (I even re-did them as clones but the rollover behaviour didn’t change at all)
Dear Enfold-Team,
first of all: after years using Enfold I am still happy with it! Great update 4.3! Thanks a lot!
Now my question: I use the “Image with Hotspot” a lot in my site. Now I want also use a google Translator Plug in such as gTranslate or Google Language Translator. First view everything worked fine. But the Tooltips of the Hotspots are not opening if e.g. gTranslate is activated, they just flicker on mouseover. It is not possible to read or open the tooltip.
Have you ever tested a Google translation PlugIn which works fine with enfold’s “image with Hotspot”?
Or maybe you ca give me a hint how to fix this issue?Thank you in advance!
Topic: Multiple Questions!
Hi guys, I have a few problems I’m trying to solve or understand with this theme. While I can find many similar questions on the forum I find the answers so specific to that user’s website as to be useless in helping me understand how to solve my issue!
I hope you’ll bare with me if I put things into one post for now rather than spam you with multiple topics (or is that the preferred way?)
1. How do I control the top/bottom spacing (padding or margin) of a layout block?
2. How do I style the text and padding inside a particular (not all) button
3. I have a page as footer (new feature) and cannot get the facebook widget right. When the screen sizes to mobile it has a big white background to the right? I am not sure I am including it properly (widget area) but seem to have no control over this white. Is there a shortcode method or some other method?
4. How do I vertically align images?
5. I have three images with links in the “footer” (page as…) – on rollover one displays a white overlay and blue icon (dont want that!) and other two just show a tooltip with the image file name (dont want that either!) I want some other kind of indication that it is a link, more subtle – where are the choices for this and if an icon/overlay where are the settings for that? Why are the rollovers different even though all are same image elements and all are png? (I re-did them as clones but the rollover behaviour didn’t change)
6. How do I switch off the breadcrumbs – again, many similar questions, surely this is a basic element that has off/on? I cannot find that setting!
7. How do I add a link in the copyright socket? If I add an tag it just gets truncated right there at the start of the tag.I am a designer and lately very used to using Divi theme/builder which gives far superior and comprehensive options to style each and every element and line of text as well as apply custom css to the particular item or module etc. However I find your standard items like portfolio etc much better out the box but then I’m frustrated at the lack of styling control and customisation options. I find it extremely difficulty to understand what to address/target in the css for the item from a web inspector view of the element – there is just so much data I don’t really understand what I need to identify to target. This is what I see in all the replies you guys provide, but as I said it is so specific to that user that its useless to me and this forum has lots of answers but lacks knowledge and learning opportunity because of your excellent but very specific answers.
If I’m not going about asking this stuff properly please feel free to correct me as to a better way.
Thanks!
Pat
Been going back and forth with Wordfence. I’ve got a script error that is preventing modal windows in Wordfence, thus preventing me from fixing other issues. This error only shows when Enfold is the active theme… no issues when Enfold is deactivated.
Uncaught ReferenceError:
load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12 Uncaught ReferenceError: jQuery is not defined
at load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
at load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
(anonymous) @ load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
(anonymous) @ load-scripts.php?c=1&load[]=utils,jquery-ui-core,jquery-ui-widget,jquery-ui-position,jquery-ui-menu&ver=3705ecc6e8317a1dbdba4005a946f351:12
load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14 Uncaught TypeError: a.widget is not a function
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
at load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14
(anonymous) @ load-scripts.php?c=1&load[]=hoverIntent,common,admin-bar,jquery-ui-mouse,jquery-ui-resizable,jquery-ui-draggable,jquery-ui-button,jquery-ui-dialog,wp-pointe&load[]=r,svg-painter,heartbeat,wp-auth-check,jquery-ui-tooltip&ver=3705ecc6e8317a1dbdba4005a946f351:14Topic: Tool-Tip for Iconbox
Hey guys,
is it possible to create a tool tip for an iconbox with a link (identical to icon and title)?
For a single icon there is this possibility of a tooltip …I found an older solution from Elliott (November 17, 2014) that I do not know if it still works:
https://kriesi.at/support/topic/tooltip-on-icon-box/If this solution works, will it be overwritten by updates?
Thank you for your work – awesome theme :-)
