Forum Replies Created

Viewing 30 posts - 46,351 through 46,380 (of 67,597 total)
  • Author
    Posts
  • in reply to: Fullwidth Easy Slider on mobile #522136

    Hi!

    No problem. Glad we could help. If you have any questions, let us know. :)

    Cheers!
    Ismael

    in reply to: German Language Translation via Loco Translate #522134

    Hey!

    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,
    Ismael

    in reply to: Mobile and Gridrow #521445

    Hi 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Buttons, Videos, and Fullscreen #521442

    Hi 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=true
    

    Remove the hover effect with this:

    .single span.image-overlay.overlay-type-image {
        display: none !important;
    }

    Regards,
    Ismael

    in reply to: WPML language switcher doesn't work, repositioning of flag #521441

    Hey 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,
    Ismael

    in reply to: question for mobile view #521440

    Hey!

    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,
    Ismael

    in reply to: Child theme #521438

    Hey!

    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,
    Ismael

    in reply to: IE8 Display Issues #521436

    Hi!

    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,
    Ismael

    in reply to: Social links position moved after update #521430

    Hi!

    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,
    Ismael

    in reply to: Related Posts based on category #521429

    Hey 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!
    Ismael

    in reply to: German Language Translation via Loco Translate #521426

    Hi 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,
    Ismael

    in reply to: bg_container IE 8 Css Error #521422

    Hi!

    Great! Glad you figured that out. :)

    Regards,
    Ismael

    in reply to: Responsive Site not working on Mobile Screens #521421

    Hi!

    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,
    Ismael

    in reply to: Masonry the text of the page is not showing #521420

    Hey!

    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,
    Ismael

    in reply to: Mansonry title on iPad VS desktop #521417

    Hey!

    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,
    Ismael

    in reply to: 3 topics #521416

    Hi!

    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!
    Ismael

    in reply to: Fullwidth Easy Slider on mobile #521415

    Hi!

    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,
    Ismael

    in reply to: Beitragsbild verschwindet #521412

    Hi 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!
    Ismael

    in reply to: lightbox gallery with thumbnails underneath #521411

    Hi 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,
    Ismael

    in reply to: removing padding in mobile view #521410

    Hey!

    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,
    Ismael

    in reply to: Slideshow stops when changing the browser tab for a moment #521408

    Hey 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,
    Ismael

    in reply to: Image alignment within color box #521404

    Hey!

    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,
    Ismael

    in reply to: Brand widget not showing on page with products #521400

    Hey!

    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,
    Ismael

    in reply to: Background Image / Color-Section #521393

    Hey!

    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!
    Ismael

    in reply to: Grid Row Alignment Help #521389

    Hi djshortkut!

    Thank you for using Enfold.

    Set the padding of the cells manually:

    First cell:

    30px 15px 30px 30px
    

    Second cell:

    30px 15px 30px 15px
    

    Third cell:

    30px 30px 30px 15px
    

    Regards,
    Ismael

    in reply to: icons moved in unstructered way #521383

    Hi!

    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!
    Ismael

    in reply to: Changing font in footer for blog posts #521381

    Hi!

    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,
    Ismael

    Hey!

    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!
    Ismael

    in reply to: Mobile friendly page #521378

    Hi!

    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

Viewing 30 posts - 46,351 through 46,380 (of 67,597 total)