Forum Replies Created
- 
		AuthorPosts
 - 
		
			
				
Hi!
Decrease the padding and font size of the menu items.
@media only screen and (max-width: 1200px) { .av-main-nav > li > a { padding: 0 7px; font-size: 11px !important; } }Make sure that the Header > Mobile Menu > Header Mobile Menu activation is set to the second option.
Best regards,
IsmaelNovember 11, 2016 at 12:36 pm in reply to: Various problems – adapt desktop – ipad and mobile #711100Hi!
Yes, please provide a screenshot so that we can understand the issue better. You can upload it on imgur or dropbox. And provide the link to the site so that we can inspect the issue.
Cheers!
IsmaelNovember 11, 2016 at 12:31 pm in reply to: Edits to slider layer work in Preview but not on site #711099Hi!
Thank you for the info. I added a slide to SLIDER 1 and it saved properly.
// http://communityresiliency.net/pages/home/
Please increase the memory limit to at least 128M.
// http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Regards,
IsmaelHey!
Thank you for the update. We’re not really sure why it’s not working on those devices. Maybe, defining the height of the container will help.
body > .container_wrap { height: 96px; }Cheers!
IsmaelHi!
One solution is to decrease the width of the main container so that the background behind it is more prominent or create a background image with smaller clouds.
.responsive .boxed#top, .responsive.html_boxed.html_header_sticky #header, .responsive.html_boxed.html_header_transparency #header { width: 100%; max-width: 70%; }Cheers!
IsmaelHey!
Thank you for using Enfold.
But I don’t want to have a page for each “father”. I just want that clicking on the title (father) I will visualize all his children in the submenu, closing other submenus…
Please provide a link to the site so that we can inspect it. What do you mean by “page for each father”? The menu style is possible but it will take a lot of customization that is outside the scope of support. Please hire a freelance developer or look for the “Ubermenu” plugin.
Best regards,
IsmaelHey!
Please update us once the site is live. Or provide a screenshot or a screencast so that we can see what’s going on in your end.
Best regards,
IsmaelHi Stefan!
Thank you for using Enfold.
Please make sure that the file name is correct, post_meta_infos.php. It is working on our installation. Post the FTP details here so that we can check it.
Best regards,
IsmaelNovember 10, 2016 at 10:10 am in reply to: On iPhone: EVENT info (left side of page) not viewable #710608Hey!
You don’t need to add the css code if disabling the minify plugin fixed the issue. It’s possible that the minification broke the custom style of the events page. I would like to check the latest link but there’s a database error.
Error establishing a database connection
Regards,
IsmaelHey!
Thank you for the update.
I can see the issue now. Please edit js > avia.js, look for this code around line 1723:
new_menu.attr({id:'av-burger-menu-ul', class:''}).appendTo(inner_overlay);.. replace it with:
new_menu.attr({id:'av-burger-menu-ul', 'class':''}).appendTo(inner_overlay);Let us know if it changes anything.
Cheers!
IsmaelHi!
The flags should not be included in the mobile menu by default. Did you add any modifications to the theme? If you want to remove it, please add this css code in the Quick CSS field:
.menu-item-language, .menu-item-language + *, .avia_current_lang { display: none !important; }Best regards,
IsmaelHi elbnetz!
Thank you for using Enfold.
I found this container in the page.
<div class="evo_lightboxes"> <div class="evo_lightbox eventcard eventon_events_list" id=""> <div class="evo_content_in"> <div class="evo_content_inin"> <div class="evo_lightbox_content"> <a class="evolbclose ">X</a> <div class="evo_lightbox_body eventon_list_event evo_pop_body evcal_eventcard"></div> </div> </div> </div> </div> </div>Did you install another lightbox plugin?
Regards,
IsmaelHi EOPRODFX!
Thank you for using Enfold.
I’m sorry but I’m not sure what you meant by that. Could you please provide a screenshot of the “CATEGORY” label?
Best regards,
IsmaelHi!
We turned on the custom css field and then added a class attribute to the image element. Please upload another image with twice the size of the current one (600x800px). We already added the following css code in the Quick CSS field to limit the size of the image.
.daryl_logo img { max-width: 300px; max-height: 400px; }The “daryl_logo” is the custom css class attribute that we applied to the image.
// http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Cheers!
IsmaelNovember 10, 2016 at 9:23 am in reply to: Extra text after additional options on single product page #710593Hi tesseram!
Thank you for using Enfold.
Please add something like this in the functions.php file:
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_after_single_product_summary_extra_text', 2 ); function woocommerce_after_single_product_summary_extra_text() { $output = '<div class="product_extra_text">Add some content here</div'; echo $output; }Regards,
IsmaelHey!
My bad. I forgot to include the css code that’s why the container is flush to the right of the product items. Please remove every modifications that we provided here. Let’s start again by adding this code in the functions.php file:
/* -------------------------------------------------------------- ## >= Additional Text Field Below Category Overview ----------------------------------------------------------------- */ add_action ('woocommerce_after_shop_loop', 'avia_product_text'); function avia_product_text() { global $post; $args = array( 'taxonomy' => 'product_cat',); $terms = wp_get_post_terms($post->ID,'product_cat', $args); $obj = get_queried_object(); $desc = ''; $title = ''; $count = count($terms); if ($count > 0) { foreach ($terms as $term) { if($term->name == $obj->name) { $desc = $term->description; $title = $term->name; } } } if(is_shop() || is_tax('product_cat')) { echo '<div class="product_extra_container">'; echo '<h2 class="product-extra-title">'.$title.'</h2><h3 class="product-extra-desc">'.$desc.'</h3>'; echo '</div>'; } }And then go to the Quick CSS field, add this code:
.product_extra_container { display: block; clear: both; }You can modify the title and description by editing the product categories in the Products > Categories panel.
Best regards,
IsmaelNovember 10, 2016 at 9:15 am in reply to: Problem with header in blog area, switching Layout Typ , Enfold Template #710587Hey!
2.) That is the default template if you use the advance layout builder for posts. You have to add every elements, including the post title or “header” as you put it, manually. You can basically design the layout of the posts as you wish.
3.) There’s a container called “pf-content” added to the markup which is not from the theme. Please set the user role to administrator so that we can check the settings and the plugins.
Cheers!
IsmaelHi!
Please decrease the font size of the icons from 20 to 13 or 15px, it is the font size of the menu items. Add this css code to create a shadow effect.
.sidebar_left { -moz-box-shadow: inset -8px 0 20px -10px rgba(0, 0, 0, 0.2); -webkit-box-shadow: inset -8px 0 20px -10px rgba(0, 0, 0, 0.2); box-shadow: inset -8px 0 20px -10px rgba(0, 0, 0, 0.2); }Best regards,
IsmaelHey jelle!
Thank you for using Enfold.
Please provide a link to the actual page with the gallery. Is this the theme’s gallery shortcode? Edit the element then choose a thumbnail in the “Gallery Preview Image Size” options.
Cheers!
IsmaelHey Monique!
Thank you for using Enfold.
I’m sorry but I’m not sure if I understand your inquiry clearly. Do you want the navigation to filter posts by category? The navigation will filter through every posts as long as they are part of the same category, regardless if it’s a main or sub category. The function is based on the following native functions.
// https://codex.wordpress.org/Function_Reference/get_previous_post
// https://codex.wordpress.org/Function_Reference/get_next_postRelated thread:
// https://kriesi.at/support/topic/arrow-navigation-with-full-slider/#post-664607
Regards,
IsmaelHi!
We edited the blog posts element in the home page and then set the “Lunghezza contenuto del blog” to the third option (Estratto con link Continua a leggere).
Best regards,
IsmaelNovember 10, 2016 at 8:16 am in reply to: Mobile menu disappears when logo is removed in header #710568Hi!
We modified the code in the functions.php file and then added a few css in the Quick CSS field.
@media only screen and (max-width: 767px) { #advanced_menu_toggle, #advanced_menu_hide { right: 20px; display: block; } .responsive #top #wrap_all #header { height: 80px; } }Best regards,
IsmaelNovember 10, 2016 at 8:06 am in reply to: Onepage demo – putting logo and menu on the left and in the container #710566Hi!
Please set the Header > Header Layout > Menu and Logo Position settings to Logo left, Menu right and then add this css code.
.html_header_top #top .main_menu { right: auto; left: 120px; }Adjust the value of the left property to correspond with the width of the logo.
Cheers!
IsmaelNovember 10, 2016 at 7:57 am in reply to: Enfold Testimonials Element fixed height and scrollable #710564Hey!
Please replace the css code with the following:
.custom-testimonial { height: 300px; max-height: 300px; display: block; overflow-y: scroll; overflow-x: hidden; }Cheers!
IsmaelHey!
1.) It’s not using the default thumbnail because you set the blog posts’ preview image size option to “No Scaling”.
// REMOVED
2.) The lightbox is disabled. Please remove browser cache or hard refresh before testing the page. You can check it here.
// REMOVED
// REMOVEDCheers!
IsmaelNovember 10, 2016 at 7:45 am in reply to: Adding Avia Elements to Woocommerce archive-product.php #710560Hey!
We added a “dirty” solution in the functions.php file:
add_action('woocommerce_before_main_content', 'ava_woocommerce_before_main_content'); function ava_woocommerce_before_main_content() { if(!is_tax('product_cat')) return; $resources = '<link rel="stylesheet" id="layerslider-css" href="http://www.vincenzaboutique.it/wp-content/themes/enfold/config-layerslider/LayerSlider/static/css/layerslider.css?ver=5.6.8" type="text/css" media="all"> <script type="text/javascript" src="http://www.vincenzaboutique.it/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/greensock.js?ver=1.11.8"></script> <script type="text/javascript" src="http://www.vincenzaboutique.it/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.transitions.js"></script> <script type="text/javascript" src="http://www.vincenzaboutique.it/wp-content/themes/enfold/config-layerslider/LayerSlider/static/js/layerslider.kreaturamedia.jquery.js?ver=5.6.8"></script>'; $script = "<script data-cfasync=\"false\" type=\"text/javascript\"> lsjQuery(document).ready(function() { if(typeof lsjQuery.fn.layerSlider == \"undefined\") { lsShowNotice('layerslider_6','jquery'); } else { lsjQuery(\"#layerslider_6\").layerSlider({responsiveUnder: 1140, layersContainer: 1140, autoStart: false, startInViewport: false, pauseOnHover: false, firstSlide: 'random', twoWaySlideshow: true, loops: 1, keybNav: false, touchNav: false, skin: 'fullwidth', navPrevNext: false, hoverPrevNext: false, navStartStop: false, navButtons: false, showCircleTimer: false, thumbnailNavigation: 'disabled', lazyLoad: false, yourLogoStyle: 'left: 10px; top: 10px;', cbInit: function(element) { }, cbStart: function(data) { }, cbStop: function(data) { }, cbPause: function(data) { }, cbAnimStart: function(data) { }, cbAnimStop: function(data) { }, cbPrev: function(data) { }, cbNext: function(data) { }, skinsPath: 'http://www.vincenzaboutique.it/wp-content/themes/enfold/config-layerslider/LayerSlider/static/skins/'}) } }); </script>"; $output = $resources . '<div id="layer_slider_1" class="avia-layerslider main_color avia-shadow avia-builder-el-0 el_before_av_section avia-builder-el-first container_wrap sidebar_left" style="height: auto;">'.$script.'<div class="ls-wp-fullwidth-container" style="height: 282px;"><div class="ls-wp-fullwidth-helper" style="width: 919px; height: 282px; left: 0px;"><div id="layerslider_6" class="ls-wp-container ls-container ls-fullwidth" style="width: 919px; height: 282.149px; margin: 0px auto; visibility: visible;"><div class="ls-inner" style="background-color: transparent; width: 919px; height: 282px;"><div class="ls-slide ls-slide-1" data-ls=" transition2d: all;" style="width: 919px; height: 282px;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-wishlist.jpg" class="ls-bg" alt="slider-vincenza-boutique-wishlist"><div class="ls-gpuhack"></div></div><div class="ls-slide ls-slide-2" data-ls=" transition2d: all;" style="width: 919px; height: 282px;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-shop.jpg" class="ls-bg" alt="slider-vincenza-boutique-shop"><div class="ls-gpuhack"></div></div><div class="ls-slide ls-slide-3" data-ls=" transition2d: all;" style="width: 919px; height: 282px;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-3.jpg" class="ls-bg" alt="slider-vincenza-boutique-3"><div class="ls-gpuhack"></div></div><div class="ls-slide ls-slide-4" data-ls=" transition2d: all;" style="width: 919px; height: 282px; left: 0px; right: auto; top: 0px; bottom: auto;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-4.jpg" class="ls-bg" alt="slider-vincenza-boutique-4"><div class="ls-gpuhack"></div></div><div class="ls-slide ls-slide-5 ls-active" data-ls=" transition2d: all;" style="width: 919px; height: 282px; visibility: visible; display: none; left: auto; right: 0px; top: 0px; bottom: auto;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-5.jpg" class="ls-bg ls-preloaded" alt="slider-vincenza-boutique-5" style="padding: 0px; border-width: 0px; width: 806.14px; height: 174.932px; margin-left: 56.4298px; margin-top: 53.5338px;"><div class="ls-gpuhack" style="width: auto; height: auto; padding: 0px; border-width: 0px; left: 0px; top: 0px;"></div></div><div class="ls-slide ls-slide-6" data-ls=" transition2d: all;" style="width: 919px; height: 282px;"><img src="http://www.vincenzaboutique.it/wp-content/uploads/2016/11/slider-vincenza-boutique-6.jpg" class="ls-bg" alt="slider-vincenza-boutique-6"><div class="ls-gpuhack"></div></div></div><div class="ls-loading-container" style="z-index: -1; display: none;"><div class="ls-loading-indicator"></div></div><div class="ls-shadow"></div></div></div></div></div>'; echo $output; $columns = do_shortcode("[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_font_icon icon='ue806' font='entypo-fontello' style='border' caption='Lista dei desideri <br/> WISHLIST' link='manually,http://' linktarget='' size='40px' position='center' color='#b02b2c' custom_class=''][/av_font_icon] [/av_one_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_font_icon icon='ue859' font='entypo-fontello' style='border' caption='ACQUISTO <br/> facile e veloce' link='manually,http://' linktarget='' size='40px' position='center' color='#b02b2c' custom_class=''][/av_font_icon] [/av_one_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_font_icon icon='ue802' font='fontello' style='border' caption='PAGAMENTO SICURO <br/> con Bonifico e PAYPAL' link='manually,http://' linktarget='' size='40px' position='center' color='#b02b2c' custom_class=''][/av_font_icon] [/av_one_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_font_icon icon='ue804' font='fontello' style='border' caption='SPEDIZIONE <br/>24/48 ore' link='manually,http://' linktarget='' size='40px' position='center' color='#b02b2c' custom_class=''][/av_font_icon] [/av_one_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_font_icon icon='ue803' font='fontello' style='border' caption='Rimborso di denaro ad ogni acquisto' link='manually,http://' linktarget='' size='40px' position='center' color='#b02b2c' custom_class=''][/av_font_icon] [/av_one_fifth]"); echo '<div id="av_section_1" class="avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll avia-builder-el-1 el_after_av_layerslider el_before_av_productgrid av-minimum-height av-minimum-height-25 container_wrap sidebar_left" style="background-color: #ec9b84; background-color: #ec9b84; "><div class="container"><div class="template-page content av-content-small units"><div class="post-entry post-entry-type-page post-entry-16"><div class="entry-content-wrapper clearfix">'.$columns.'</div><!-- close content main div --></div></div></div></div>'; }// http://www.vincenzaboutique.it/categoria-prodotto/abbigliamento/collezione/
Cheers!
IsmaelHi!
I logged in to the site but I can’t access the file editor. Please set the user role to “administrator” so that we can check the css codes.
Regards,
IsmaelHi!
In the functions.php, replace the code suggested here with the following:
add_action('after_setup_theme', 'ava_register_footer_2', 10); function ava_register_footer_2() { $number = 5; for ($i = 1; $i <= $number; $i++) { register_sidebar(array( 'name' => 'Footer2 - column'.$i, 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', )); } }Replace the value of the $number variable to coincide with the number of footer columns currently activated.
And replace the whole footer.php file with the following code.
// http://pastebin.com/0ZiZaz0a
Cheers!
IsmaelHi!
How can we change the category? I’m probably missing something because I don’t understand the language. A screenshot will help.
Regards,
IsmaelHi!
We already removed those codes in the functions.php file but you still need to update the theme. And don’t forget to purge the cache afterwards.Could you please provide a screencast of the issue? We can’t reproduce it on firefox. Another thing that can cause this issue is the cdn. Did you subscribe to any cdn provider?
// https://kriesi.at/support/topic/contact-form-bugs/
// https://kriesi.at/support/topic/contact-form-resetting-to-defaults/#post-391712Best regards,
Ismael - 
		AuthorPosts
 
