Forum Replies Created
-
AuthorPosts
-
Hi!
No problem. Glad we could help. If you have any questions, let us know. :)
Cheers!
IsmaelHey!
Thanks for sharing. I’m not really familiar with the language so I’ll take your word for it. There are not many inquiries regarding this translation plugin but if I remember correctly, every time I translate a string in any language, the plugin will create a new language file inside the informal folder. I have to use that file to override the original language files inside the lang folder. Or maybe I translated the “Dutch” language that time so it created the “informal” folder. Anyway, did you open a ticket in the plugin support forum? I’m sure they can clarify all of this.
Best regards,
IsmaelHi Wils1234!
Thank you for using Enfold.
Add this in the Quick CSS field:
.avia-image-container.avia-align-center { margin: 0 auto 0 auto; }Best regards,
IsmaelOctober 20, 2015 at 9:05 am in reply to: How to modify in child_theme the function avia_breadcrumbs() finished with "s" #521444Hi!
Use the avia_breadcrumbs_trail filter inside the functions.php file. Example:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { $id = avia_get_the_ID(); $category = get_the_category($id); if(isset($category) && is_singular('post')) { // nra: modified to show the page instead the category //category hornos = 8, category plaques = 8, page hornos = 106 , page placas = 109 $catid = $category[0]->term_id; if( $catid == 8 or $catid == 9) { if($catid == 8) { $trail[1] = '<a href="'.get_page_link(106).'">'.get_the_title(106).'</a>'; } elseif($catid == 9) { $trail[1] = '<a href="'.get_page_link(108).'">'.get_the_title(108).'</a>'; } } else { $trail[1] = '<a href="'.get_category_link($category[0]->term_id ).'">'.$category[0]->cat_name.'</a>'; } } return $trail; }Best regards,
IsmaelHi maltaannon!
Thank you for using Enfold.
Please add the iframe=true parameter if you want to open a self hosted video in a lightbox. Something like this:
http://yoursite.com/wp-content/uploads/2015/10/video.mp4?iframe=trueRemove the hover effect with this:
.single span.image-overlay.overlay-type-image { display: none !important; }Regards,
IsmaelOctober 20, 2015 at 8:53 am in reply to: WPML language switcher doesn't work, repositioning of flag #521441Hey entspannt!
Thank you for using Enfold.
1.) How did you add the language flags? Did you remove the theme’s default language switcher? If you want to use the default WPML switcher options, add this in the functions.php file then configure the switcher options in the WPML panel:
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); }2.) Flush the Settings > Permalink options. I don’t see any issue when I check the portfolio item: http://test.entspannt.de/portfolio-item/deine-familie/?lang=en
Best regards,
IsmaelHey!
Sorry for the delay. I checked the site but I don’t see the code anywhere. Please post the login details here, we’ll check it. Or try this instead:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.first { margin-left: 0; width: 32%; float: left; clear: none; } .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd, .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even { margin: 0; clear: none; float: left; width: 32%; } .responsive #top #wrap_all .slide-entry { width: 32%; margin-left: 2%; } }Remove browser cache then reload the page.
Best regards,
IsmaelHey!
Sorry for the delay. Please try to replace the code with this:
remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_before_shop_loop', 1); remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20); remove_action( 'woocommerce_after_shop_loop', 'avia_woocommerce_after_shop_loop', 10); add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_before_shop_loop_mod', 1); function avia_woocommerce_before_shop_loop_mod() { global $avia_config; if(isset($avia_config['dynamic_template'])) return; $markup = avia_markup_helper(array('context' => 'content','echo'=>false,'post_type'=>'products')); echo "<main class='template-shop content ".avia_layout_class( 'content' , false)." units' $markup><div class='entry-content-wrapper'>"; do_action('prdctfltr_output'); /* This is the part you should add to initiate the Product Filter in your Enfold template */ } # # closes the avia framework content container arround the shop loop # add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_after_shop_loop_mod', 1); function avia_woocommerce_after_shop_loop_mod() { global $avia_config; if(isset($avia_config['dynamic_template'])) return; if(isset($avia_config['overview'] )) echo avia_pagination('', 'nav'); echo "</main>"; //end content }Regards,
IsmaelHi!
Sorry for the delay. Try this in the Quick CSS field to fix the logo resize issue:
.avia-msie .logo a img, .avia-msie .logo { max-width: 246px; width: 246px; }IE 8 doesn’t support border radius that’s why you see a boxed icon instead of circle. And you don’t see the actual icons because IE8 partially supports pseudo-elements. You can try to fix this by swapping the font icons with an actual icon image.
Here’s our stand regarding IE8 and Windows XP: https://kriesi.at/support/topic/ie-8-issues-4/#post-373401
Still, Enfold is compatible with the browser with few minor flaws which are to be expected given the fact that IE8 is almost 6 year old piece of software. Also, Envato no longer requires Internet Explorer 8 support from their themes which is why other premium themes such X doesn’t claim IE8 compatibility.
Regards,
IsmaelHi!
Please remove the previous modifications then replace the code on functions.php with this:
//social filter in the template builder add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1); function avia_add_social_toolbar_template_builder($content = "") { if(is_singular('portfolio')) { ob_start(); avia_social_share_links(array(), false); $social = ob_get_clean(); $content = $content . $social; } return $content; }Regards,
IsmaelHey COLORIT!
Thank you for using Enfold.
We are very sorry for the delay. You can replace the code inside the includes > related-posts.php file with this: http://pastebin.com/kY4M38zn#
It should work for the default posts.
Cheers!
IsmaelHi Guenter!
Thank you for using Enfold.
I think this is how the plugin handles the translation. The plugin creates the “informal” folder as a safety precaution to avoid overwriting the original language files. This is not specifically a german translation issue, if you translate different language, the plugin will create a new language file for that language in the informal folder.
Best regards,
IsmaelHi!
Sorry for the delay. I checked the site and the html tag has a missing class called “responsive” that’s why the site isn’t responsive. I noticed that you have a modified version of the header.php file in the child theme folder. Please disable it temporarily, rename it, then check the page again.
Regards,
IsmaelHey!
What do you mean by “brief page text”? Is it the excerpt or the summary? If you want to add a summary in the masonry container, you need to edit the post then enable the Excerpt box in the Screen Options. Add the excerpt or text there.
Regards,
IsmaelHey!
The opacity is set to 70% initially. You can change that with this:
.avia_desktop .av-hover-overlay-active .av-masonry-image-container { opacity: 1; }If you want to prevent the caption from covering the masonry items, adjust the height with this:
.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer { padding-bottom: 150%; }Use css media queries to adjust the property on different screen sizes.
Best regards,
IsmaelHi!
The border is created by the background image. Look at the very top, you’ll see a thin brown line:
http://www.granjaspatagonicas.com.ar/nuevo/wp-content/uploads/2015/10/fdo-pagina.jpg
Cheers!
IsmaelHi!
Try to increase the slider height with this:
@media only screen and (max-width: 768px) { .avia-slideshow-inner, .avia-slideshow-inner img { height: 300px !important; } }This will distort the image a little so if you want to fix the distortion, add this inside the media query:
.av_slideshow_full li img { width: 150% !important; max-width: 150% !important; margin-left: -25%; }Remove browser cache or history before checking the page.
Regards,
IsmaelHi deryorkshireterrier!
Thank you for using Enfold.
I translated the inquiry using google but it’s a bit unclear. From what I understand, you’re having trouble with the imported blog posts. How did you transfer the blog posts?
Cheers!
IsmaelHi Stanko!
Thank you for using Enfold.
I’m sorry but it’s not possible to include the thumbnails under the lightbox preview. This will require customization that is outside the scope of support. You contact codeable for such modifications: http://kriesi.at/contact/customization
Best regards,
IsmaelHey!
Use this in the Quick CSS field in order to decrease the padding:
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .container { width: 98%; max-width: 98%; } }Set the width and max-width to 100% if you want to remove the padding completely. Remove browser cache or history before checking the page.
Regards,
IsmaelOctober 20, 2015 at 7:12 am in reply to: Slideshow stops when changing the browser tab for a moment #521408Hey shaoxuming!
Thank you for using Enfold.
This is actually an old issue but it was originally reported as a safari issue. The testimonial slider works fine on other browsers. Unfortunately, the issue seems intermittent and we can’t reproduce it on our own installations so we haven’t figure out the issue until now. https://kriesi.at/support/topic/testimonials-keep-disappearing/#
Anyway, I check the site on Chrome 46.024, Safari 5.1 and Firefox 41.02., open a new tab, leave it for at least a minute and the sliders didn’t stop working. What I noticed in safari is the “blurred” or “sandy” subtitle text in the testimonial element. Try this in the Quick CSS field:
.avia-testimonial-subtitle { -webkit-font-smoothing: antialiased; }Or adjust the font size only on safari browsers:
.avia-safari .avia-testimonial-subtitle { font-size: 14px; }Regards,
IsmaelHey!
It doesn’t look that way when I checked it on IE11. Please try to add this in the Quick CSS field:
#top .av_header_transparency.av_alternate_logo_active .logo a > img { width: 286px; } #top .av_header_transparency.av_alternate_logo_active .header-scrolled .logo a > img { width: 143px; min-width: 143px; }Regards,
IsmaelHey!
I’m sorry but the Woocommerce Layered Nav and Woocommerce Layered Nav Filter will only work for native woocommerce pages (product archive, shop base page etc). It’s not going to work in a page with a product grid or a page built in the advance layout builder.
Regards,
IsmaelHey!
The background-size property of the image in the color section is set to “cover” which stretches the image to cover the entire container. You may find edges of the images cut off in order to prevent distortion: http://www.w3schools.com/cssref/playit.asp?filename=playcss_background-size&preval=cover
You can add this in the Quick CSS field to contain the image but it will distort it on smaller screens:
.avia-full-stretch { background-size: 100% 100% !important; }You can also try the “contain” value.
Cheers!
IsmaelHi djshortkut!
Thank you for using Enfold.
Set the padding of the cells manually:
First cell:
30px 15px 30px 30pxSecond cell:
30px 15px 30px 15pxThird cell:
30px 30px 30px 15pxRegards,
IsmaelHi!
There’s an unwanted “p” tag between the columns. All you need to do is to move the columns on a different position then move it back. It’s a rare bug in the advance layout builder but can be easily fix by moving the elements. Remove browser cache then reload the page: http://goudriaan.dk/
Cheers!
IsmaelHi!
I accessed the dashboard but I still end up in the maintenance mode. I can’t access the Pages panel. Please set the user to administrator. If you want to set the font of the title to Arimo, try this in the Quick CSS field:
.news-headline { font-family: 'Arimo'; }Regards,
IsmaelOctober 20, 2015 at 6:22 am in reply to: Layerslider update – Bought separate license but it still doesnt work? #521380Hey!
Please override the functions.php file with a fresh copy then add the code again. You have to do this via FTP. Add it at the very bottom of the file. If you have a child theme, create a php file called “functions” then add this:
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */ add_theme_support('deactivate_layerslider'); ?>Please copy the code directly from the forum, not from your email.
Cheers!
IsmaelHi!
I checked the site and it is responsive. Can you please provide a screenshot of the issue? Use imgur or dropbox. On what mobile device are you testing this?EDIT: I only checked it on a browser screen. If you emulate a mobile device, it is not responsive because the site is inside an iframe. Why is that? If you want to make the site responsive inside an iframe, you have to follow the instructions here:
http://www.smashingmagazine.com/2014/02/making-embedded-content-work-in-responsive-design/
https://benmarshall.me/responsive-iframes/Cheers!
Ismael -
AuthorPosts
