Forum Replies Created

Viewing 30 posts - 21,841 through 21,870 (of 61,934 total)
  • Author
    Posts
  • Hi,

    The css code should look something like this.

    .product_animation {
       -webkit-animation: avia_msonry_show 1s 1s linear;
       animation: avia_msonry_show 2s 1s linear;
    }

    // https://www.w3schools.com/css/css3_animations.asp

    Best regards,
    Ismael

    Hey mvb1989,

    Thank you for using Enfold.

    Edit the page and then set the “Layout” > “Header visibility and transparency” to “No transparency”.
    You can change the header color scheme in the General Styling > Logo Area panel.
    Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Cant find the color to change #1006012

    Hi,

    Post the login details in the private field and we’ll look for it. Did you check the Quick CSS field or the style.css file?

    Best regards,
    Ismael

    in reply to: adding space between gallery thumbnails #1006011

    Hey Transform-You,

    Thank you for using Enfold.

    Use this css code to create space between the gallery items.

    #top #wrap_all .avia-gallery-1 .avia-gallery-thumb a {
        padding: 10px;
    }

    Best regards,
    Ismael

    in reply to: Nonce error on file upload #1006008

    Hi,

    Are you using the instagram widget? Try to disable the scheduled file check temporarily. Just add this code in the functions.php file:

    add_filter('avf_instagram_activate_cron', 'avf_instagram_disable_cron', 10); 
    function avf_instagram_disable_cron() {
    	return false;
    }

    Best regards,
    Ismael

    in reply to: Video not loading on mobile devices? #1005995

    Hi,

    We would like to check the dashboard. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Symmetrical portfolio #1005990

    Hi,

    Please create a site backup and then we’ll try to regenerate the thumbnails using the plugin.
    Yes, you can delete the images via FTP.

    Best regards,
    Ismael

    in reply to: Can't change CSS style of the elements… #1005987

    Hey rideal,

    Thank you for using Enfold.

    The File Compression settings inside the Performance panel are enabled. We disabled the options temporarily. Please try to change the styles again.

    Best regards,
    Ismael

    in reply to: image can't load #1005983

    Hi,

    The images load fine when I check. It takes a while but they eventually load. Try to add this script in the functions.php file.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	$(document).ready(function() {
               $('#top div .avia-gallery img').addClass('avia_start_animation');
    
            var int = window.setInterval(function(){
                $(window).trigger('resize');
                $(window).trigger('av-content-el-height-changed');
    	    }, 2000);
    	
            $(window).load(function () {
                setTimeout(function() {
                    clearInterval(int);
                }, 2000);
            });
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Did you install any third party extensions prior to the issue? Please try to deactivate the plugins and then activate them one at a time to find the conflict.

    Best regards,
    Ismael

    in reply to: Close button for the tabs #1005974

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Logo that need to take all the wide of the screen #1005973

    Hey lrdh,

    Thank you for using Enfold.

    Have you tried adding the image as background in the General Styling > Logo Area panel?

    Best regards,
    Ismael

    in reply to: Permalinks don't work anymore #1005972

    Hi,

    Thank you for the update.

    I managed to access the dashboard but I can’t find any pages leading to 404. The portfolio items are displaying properly as well. Is this fixed?

    Best regards,
    Ismael

    in reply to: Integrating Google Custom Search #1005968

    Hey andreaskalt,

    Thank you for using Enfold.

    You can add the plugin’s shortcode in a text widget to display it in the sidebar. Unfortunately, you can’t implement it in the theme’s header search icon but you can add the plugin’s search form as a widget inside the header.

    // https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area

    Best regards,
    Ismael

    in reply to: youtube eingebundenes Video läuft nicht auf tablet #1005957

    Hey fumsel,

    Thank you for using Enfold.

    The color section video background is disabled on mobile devices by default. You have to add a static fall back image. Edit the color section and look for the “Custom Background Image” option.

    Best regards,
    Ismael

    in reply to: Breadcrumbs adsense #1005954

    Hi,

    Awesome! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Incorrect Google Index #1005951

    Hi,

    You have to “disallow” it, not allow. And you have to re-crawl the site.

    Best regards,
    Ismael

    in reply to: Header page title for Portfolio pages only ? #1005886

    Hi,

    You can try the “ava_after_main_container” hook. That hook is located right after the main container.

    add_action('ava_after_main_container', 'ava_after_main_container_mod', 10);
    function ava_after_main_container_mod() {
        echo 'ADD ANYTHING HERE';
    }

    Best regards,
    Ismael

    in reply to: Self-Hosted Video Background Pt. 2 #1005879

    Hi,

    nope, you’ve just sent me the Logo which is working as charm now thanks to the guys.

    No, I didn’t. Please check the screenshot again. We adjusted the code on the Quick CSS field. Please purge the cache before checking the page.

    
      #top .avia-slideshow-inner,  #top .avia-slide-wrap, #top .avia-slideshow li  {
        min-height: 50vh !important;
       }
    
    #top .avia-slideshow li {
        background-size: cover;
        background-position: center center;
    }
    
    #top  .av_slideshow_full li img {
        visibility: hidden;
    }
       
      .avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title {
         font-size: 24px !important;
      }
       
      #top .avia-caption-content p {
         font-size: 15px !important;
      }

    We also included this script in the functions.php file:

    add_action('wp_footer', 'ava_custom_mobile_slide_background');
    function ava_custom_mobile_slide_background(){
    	?>
    	<script type="text/javascript">
    		(function($) {	
                var isMobile = false;
    
                if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement)
                {
                    isMobile =  true;
                }
                else
                {
                    isMobile =  false;
                }
    
                console.log(isMobile);
    
                if(!isMobile) return;
               
                $('.avia-fullwidth-slider div li').each( function(e) {
                    $(this).css('background-image', 'url('+ $(this).data("mobile-img") + ')');
                });
    
                 $('.avia-fullwidth-slider div li').on( 'click', function(e) {
                    var link = $(this).find('img').parent('a');
                    link.trigger('click');
                });
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    Hi,

    I modified the config-templatebuilder > avia-shortcodees > av-helper-slideshow.php file line 609 and removed the fall back image background.

    $html .= "<".$tags[0]." data-rel='slideshow-".avia_slideshow::$slider."' class='avia-slide-wrap {$fallback_img_class}' {$linkdescription} >{$caption}";
    

    Let us know if it’s working on mobile. Don’t forget to purge the cache prior to checking.

    Best regards,
    Ismael

    in reply to: Errors showing in google search console #1005856

    Hi,

    Are they marked as “server errors” or just “404s”? Please mark all errors as fixed and then wait for a few days before running the the crawl again. See if the same errors arise. If they do, try to 301 redirect them to the home page or to any existing page of your choice.

    // https://yoast.com/wordpress-robots-txt-example/

    Best regards,
    Ismael

    in reply to: Google Maps API is Broken and Returning Errors #1005853

    Hi,

    Yes, they implemented a new price for each API and you’re required to setup a billing account now.

    // https://cloud.google.com/maps-platform/user-guide/pricing-changes/

    Is a credit card or billing account required?
    Even though your first $200 of monthly usage is free, all Google Cloud Platform services require a credit card and billing account, to cover any amount you spend over this free credit. If you are billed, we’ll credit your account for the first $200 of monthly usage. If you choose not to add a billing account, there is a risk that if your usage exceeds $200 in a given month, your Maps API implementation will be degraded or other API requests will return an error. If your estimated usage will be above $200 a month and you don’t have a credit or debit card to set up a billing account, a local Google Maps Partner may be able to help.

    Best regards,
    Ismael

    in reply to: Social Share links go to http:// instead of https:// #1005852

    Hey NicoleH,

    Thank you for using Enfold.

    Those links will still redirect to a secure connection when you click them but we’ll forward it to the team. You can edit the includes > helper-social-media.php file for now. Look for thsee codes around line 147:

    				'facebook' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://www.facebook.com/sharer.php?u=[permalink]&t=[title]"),
    				'twitter' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "https://twitter.com/share?text=[title]&url=[shortlink]"),
    				'gplus' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "https://plus.google.com/share?url=[permalink]" , 'label' => __("Share on Google+",'avia_framework')),
    				'pinterest' => array("encode"=>true, "encode_urls"=>true, "pattern" => "http://pinterest.com/pin/create/button/?url=[permalink]&description=[title]&media=[thumbnail]"),
    				'linkedin' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://linkedin.com/shareArticle?mini=true&title=[title]&url=[permalink]"),
    				'tumblr' 	=> array("encode"=>true, "encode_urls"=>true, "pattern" => "http://www.tumblr.com/share/link?url=[permalink]&name=[title]&description=[excerpt]"),
    				'vk' 		=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://vk.com/share.php?url=[permalink]"),
    				'reddit' 	=> array("encode"=>true, "encode_urls"=>false, "pattern" => "http://reddit.com/submit?url=[permalink]&title=[title]"),
    				'mail' 		=> array("encode"=>true, "encode_urls"=>false, "pattern" => "mailto:?subject=[title]&body=[permalink]", 'label' => __("Share by Mail",'avia_framework') ),
    

    Best regards,
    Ismael

    in reply to: Close button for the tabs #1005850

    Hey ideance,

    Thank you for using Enfold.

    Add this script in the functions.php file.

    add_action('wp_footer', 'ava_custom_script_close_tab');
    function ava_custom_script_close_tab(){
    	?>
    	<script type="text/javascript">
    		(function($) {	
                function removeHash () { 
                    history.pushState("", document.title, window.location.pathname + window.location.search);
                }
    
                $('.tabcontainer .avia-button').on('click', function(e) {
                    e.preventDefault();
    
                    var section = $(this).parents('.av_tab_section');
                    var title = section.parents('.tabcontainer').find('.tab_titles');
                    var fake = section.find('.tab');
                    var tab = $(this).parents('.tab_content');
    
                    fake.removeClass('active_tab');
                    title.find('div[data-fake-id="'+ fake.data("fake-id") + '"]').removeClass('active_tab');
                    tab.removeClass('active_tab_content');
    
                    removeHash();
                });
    		})(jQuery);
    	</script>
    	<?php
    }

    That script will close the active tab section when you click the button.

    Best regards,
    Ismael

    in reply to: Socket bottom right link remove link and hover #1005846

    Hey accutherm,

    Thank you for using Enfold.

    You can use this css code to disable the link.

    #socket .menu a {
        pointer-events: none;
    }

    Best regards,
    Ismael

    Hi,

    Awesome! Glad it is solved. Please feel free to open a new thread if you need anything else.

    Best regards,
    Ismael

    in reply to: Changing font colors on mobile devices #1005843

    Hey TRIPLEMEG,

    Thank you for using Enfold.

    This css code should help.

    #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul .sub-menu a {
        color: red;
    }

    Best regards,
    Ismael

    in reply to: Header page title for Portfolio pages only ? #1005842

    Hey eberswine,

    Thank you for using Enfold.

    I’m not really sure what you’re trying to do here. Can you explain it a bit further? Or provide a screenshot.

    Best regards,
    Ismael

    in reply to: Avia layout builder not loading correctly #1005840

    Hey melintrip,

    Thank you for using Enfold.

    The site is running on a very old version of the theme, 3.5.4, which is not compatible with the latest WordPress version. You have to upgrade to version 4.4.1.

    Best regards,
    Ismael

    in reply to: Media files wont upload, get HTTP error. #1005837

    Hey!

    I successfully uploaded a smaller image (460KB) but it failed on a larger image (1.56MB). This is the error on the console.

    async-upload.php:1 Failed to load resource: the server responded with a status of 500 (Internal Server Error)

    Please try to increase the memory limit to at least 256M.

    Cheers!
    Ismael

Viewing 30 posts - 21,841 through 21,870 (of 61,934 total)