Forum Replies Created

Viewing 30 posts - 39,031 through 39,060 (of 66,745 total)
  • Author
    Posts
  • in reply to: ENfold and Qtranslate #695936

    Hi Malene!

    Thank you for using Enfold.

    What is the easiest way to transfer all of it to Polylang?

    I’m sorry but you will have to ask the Polylang or qTranslate team regarding that matter. If you’re planning to use the advance layout builder, you have to duplicate or translate each page manually.

    Cheers!
    Ismael

    in reply to: video slide size #695931

    Hey!

    I can’t see the parameter in the youtube which means that the code is not working or was not installed properly. Please post the login details here so that we can check the site.

    Can you see if it´s correct done? Should it be faster now?

    This will actually make the site slower because you’re forcing the video to play in higher quality.

    Best regards,
    Ismael

    Hey sugarwayltd!

    Thank you for using Enfold.

    I’m sorry but this feature is only available for the masonry (posts) element. Please hire a freelance developer or contact codeable to modify the masonry gallery script. http://kriesi.at/contact/customization

    Or try to modify the width of the masonry gallery items manually. Example:

    #av-masonry-1-item-1168 {
        width: 48%;
    }

    The “1168” part is the id of the image.

    Cheers!
    Ismael

    in reply to: [Enfold + ACF] Google map field froze #695908

    Hey!

    Did the filter work? What if you have a map widget in the page?

    Related thread: https://kriesi.at/support/topic/third-party-google-map-plugin/#post-681515

    The filter is basically the same with yours but it will also disable the map widget api.

    Regards,
    Ismael

    in reply to: Slider Random & Partners Loop #695904

    Hey jisby!

    Thank you for using Enfold.

    1.) We can randomize the groups inside the slider. Please add this in the functions.php file.

    // custom script
    add_action( 'wp_footer', 'ava_custom_script' );
    function ava_custom_script() {
    	?>
    	<script type="text/javascript">
    	(function($) {
    		function a() {
    			$(".avia-content-slider-inner").randomize(".slide-entry-wrap");
    		}
    
    	    $.fn.randomize = function(childElem) {
    	      return this.each(function() {
    	          var $this = $(this);
    	          var elems = $this.children(childElem);
    
    	          elems.sort(function() { return (Math.round(Math.random())-0.5); });
    
    	          $this.remove(childElem);
    
    	          for(var i=0; i < elems.length; i++)
    	            $this.append(elems[i]);
    
    	      });
    	    }
    
    		a();
    	})(jQuery);
    	</script>
    	<?php
    }

    2.) Add two more logos or just remove the last 3 logos completely. Unfortunately, the slider will display items by sets, not individually.

    Best regards,
    Ismael

    in reply to: 2 videos on same page? (only one auto plays) #695901

    Hi einstein999!

    Thank you for using Enfold.

    I’m sorry but the page that you provided do not exist. Please check the url. We created a test page and the videos are loading simultaneously.

    // http://fidelisstudio.com/test/

    We removed the “quality” parameter.

    Regards,
    Ismael

    in reply to: Large screens, desktop and mobile hide show elements #695882

    Hey!

    You should check this list of css media queries for standard devices. https://css-tricks.com/snippets/css/media-queries-for-standard-devices

    Or try to replace it with the following code:

    @media only screen and (min-width:1600px) {
    	.show-on-laptop { display: none !important; }
    }
    
    @media only screen and (max-width: 1600px) {
    	.show-on-large-screen { display: none !important; }
    }
    
    @media only screen and (max-width: 1200px) {
    	.show-on-laptop { display: none !important; }
    }
    
    @media only screen and (min-width: 1024px) {
    	.show-on-mobile { display: none !important; }
    }

    Regards,
    Ismael

    in reply to: Custom Queries #695873

    Hey iHuman!

    Thank you for using Enfold.

    What modifications are you trying to add to the query? Posts elements such as the magazine or blog posts elements have their own filter. Use this filter to adjust or modify the query of the element. Look for the query_entries function in the blog.php or the magazine.php file.

    Best regards,
    Ismael

    Hey turistai,

    Thank you for using Enfold.

    Please replace the css code with this so that it will only affect the desktop view or screens wider than 767px.

    @media only screen and (min-width: 767px) {
      /* Add your Mobile Styles here */
      .attachment-entry_with_sidebar.size-entry_with_sidebar.wp-post-image {
        height: 400px !important;
      }
    }

    Best regards,
    Ismael

    in reply to: How to translate read more text in Blog #694880

    Hi,

    Please replace the code with the following:

    function avf_post_slider_entry_excerpt_mod($excerpt, $prepare_excerpt, $permalink, $entry ) {
    	$permalink = '
    <div class="read-more-link"><a href="'.get_permalink($entry->ID).'" class="more-link">'.__('CHANGE THIS TEXT','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>
    ';
    
    	return $permalink;
    }
    add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_mod', 10, 4);

    Change the text. (CHANGE THIS TEXT)

    Best regards,
    Ismael

    Hi,

    Please look for this code in the Quick CSS field:

    .your-custom-class p {
        padding-left: 27%;
    }

    .. replace it with:

    @media only screen and (min-width: 989px) {
      /* Add your Mobile Styles here */
      .your-custom-class p {
        padding-left: 27%;
      }
    }

    It will only affect screens wider than 989px.

    Best regards,
    Ismael

    in reply to: Disable Cart In Enfold #694876

    Hey grpetz,

    Thank you for using Enfold.

    Please add this in the functions.php file.

    add_action('after_setup_theme','ava_woocommerce_mod', 100);
    function ava_woocommerce_mod() {
    	remove_action( 'init', 'avia_woocommerce_cart_placement', 10);
    }
    

    Best regards,
    Ismael

    in reply to: Background Image on Blog only #694874

    Hi,

    I’m sorry but that is not possible because the content is wrapped inside a single container. This is quite possible with the theme but you have to switch to boxed layout. Go to the General Layout > Layout panel then add this in the functions.php file:

    add_action('wp_footer', 'ava_custom_script');
    function ava_custom_script(){
    ?>
    <script type="text/javascript">
    (function($) {
    	function a() {
    		var blog = $('body').hasClass('blog');
    		if(!blog) return;
    		$('html').css({
    			'background' : 'url(/wp-content/uploads/2013/08/main-bg_tile.jpg) #F5F5F5'
    		});
    	}
    
    	a();
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: Weird footer appearing #694870

    Hi,

    I’m sorry but you cannot add full width elements without pushing the sidebar underneath the main container. Please disable the sidebar if you want to retain the full width portfolio element.

    Best regards,
    Ismael

    in reply to: How to make enfold french #694869

    Hi,

    We set the language settings to “Francais” because the theme doesn’t have the translation files for the “Francais du Canada”. If you find any text that are not translated, please go to the Loco Translation > Themes > Enfold panel then click the “French” language. Search for the string and text, provide the translation then sync the files.

    Best regards,
    Ismael

    in reply to: Layerslider not animating on Chrome or IE #694868

    Hi,

    In the construction demo, the page preloading option is disabled so you can see the animation caption. We disabled the option temporarily.

    // http://arcadisfieldtechsolutions.com/index.php/our-capabilities/

    Best regards,
    Ismael

    in reply to: Breadcrumbs & Enfold Latest news widget #694867

    Hi,

    1.) Please add this in the functions.php file:

    add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 );
    function avia_breadcrumbs_args_mod( $args ) {
    	$args['show_categories'] = false;
    	return $args;
    }

    2.) Did you use the Enfold Combo Widget? Looks like you’re using the Enfold Latest News widget.

    Best regards,
    Ismael

    in reply to: Free quote botton on main page? #694866

    Hi,

    How do I get the Free Quote on the slider button to be larger?

    Increase the font size of the button to make it bigger.

    body div .avia-button {
        font-size: 20px;
    }

    Best regards,
    Ismael

    in reply to: Problem with responsivness #694865

    Hi,

    We are very sorry for the confusion. You should decrease the font size because it is currently set to 20px.

    @media only screen and (max-width: 1024px) and (min-width: 768px) {
        .av-image-caption-overlay-position .av-image-caption-overlay-center {
            padding: 0px 1em !important;
            font-size: 11px !important;
        }
    }

    Or hide the caption altogether.

    @media only screen and (max-width: 1024px) and (min-width: 768px) {
        .av-image-caption-overlay-position .av-image-caption-overlay-center {
            display: none !important;
        }
    }

    Best regards,
    Ismael

    in reply to: portions of Advanced Slider cut-off on SurfacePro #694859

    Hi,

    I’m sorry but I thought that the image was added as a layer. It is the slider background. Please use this css code:

    @media only screen and (min-width: 2000px) {
       #layerslider_8 .ls-bg {
           margin-top: 0 !important;
       }
    }

    It should work here. http://mitchelllindsey.fiveoaksdemo.com/index.php/test/

    Could you please check the actual resolution of the surfacepro device?

    Best regards,
    Ismael

    in reply to: highlight produc #694852

    Hi,

    I’m sorry but this is not possible with the post slider because the items do not contain the “featured” class attribute.

    Best regards,
    Ismael

    Hi,

    Your solution is the same as @Yigit’s and there’s nothing wrong with it. Is it working? If it is working then you should keep the code.

    Best regards,
    Ismael

    in reply to: Banner above header problem on tablets only #694849

    Hi,

    I can’t really reproduce the issue on my end but maybe this will help. Replace the ad container with the following.

    
    <div class="container_wrap" align="center" style="border-top: none;">
    <a href="https://www.bodylab24.de/" rel="nofollow"><img src="http://www.eiweisspulver-test.com/Bodylab728x90.gif" alt="Anzeige"></a></div>
    

    And what is the actual model of your tablet? I’m asking because some mobile device have an issue with gif formatted image.

    Best regards,
    Ismael

    in reply to: Problem woocommerce / languages, mantain same styles #694848

    Hi,

    3.) Yes, the theme is fully compatible with the base Woocommerce plugin but, unfortunately, we can’t assure its compatibility for thousands of add-ons that are available in the market. We also added a note at the very top of the product’s advance layout builder.

    Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions

    Please use the default editor if you want to use the plugin. Or contact the plugin author. We are very sorry for the inconvenience.

    Best regards,
    Ismael

    in reply to: page anchors on mobile devices #694847

    Hi,

    I didn’t notice this before but the site is using a very old version of the theme, 3.5.4. Please update the theme to version 3.8 and WordPress to 4.6.1.

    Best regards,
    Ismael

    in reply to: set image alt tag and title in image media element #694845

    Hi,

    I’m sorry but this is feature is not included in the theme yet. For now, you can try the text block, add the image tag manually.

    Best regards,
    Ismael

    in reply to: Mega menu #694843

    Hi,

    1.) Could you please provide a screenshot of the issue? I can only see 5 items under those categories.

    2.) Make sure that the last 3 items are under the “Customization & Trading”. They are creating another column. Or post the login details here so that we can check the Appearance > Menus panel.

    Best regards,
    Ismael

    in reply to: Mega menu submenu with and hover #694841

    Hi,

    Furthermore i would like to change the width of the dropdowmenu;

    Please disable the mega menu option first because the markup is different from the default dropdown. And add this in the Quick CSS field to change the hover color:

    #top .header_color .main_menu .menu ul li>a:hover {
        color: #272727;
    }

    Best regards,
    Ismael

    in reply to: Layer Slider WP: SkinPath URL problem #694840

    Hi,

    I’m not really sure why this is happening. Did you contact your hosting provider regarding the issue? Do you own the “dszcy6” domain?

    Best regards,
    Ismael

    in reply to: Logo and Menu Item inside and not so far out??? #694839
Viewing 30 posts - 39,031 through 39,060 (of 66,745 total)