Forum Replies Created

Viewing 30 posts - 18,151 through 18,180 (of 67,463 total)
  • Author
    Posts
  • in reply to: Customize php files in enfold-child #1223026

    Hi,

    Sorry for the delay. Those are framework files, so you won’t be able to override them in the child theme. What exactly are you trying to change? We might be able to use the available filters or hooks in the files to do it.

    Best regards,
    Ismael

    in reply to: Use SVG as the logo… #1223024

    Hi,


    @webdesignphx
    : Looks like you already figured out how to resize the logo properly. If you need more help, please don’t hesitate to create a new thread .

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Thank you for the info. Looks like the inline styling of the av-milestone-date is incorrect, even though they are set properly in the backend.

    font-size: ,px;
    

    We’ll forward this thread to our channel and we’ll probably provide a fix in the next patch.

    Best regards,
    Ismael

    Hi!

    Sorry for the delay. Could you maybe post a screenshot of the issue so that we can understand it better? Please use imgur or dropbox for the screenshot.

    Did you also set the front page in the Settings > Reading panel? Please try to reset the settings there to default and only define the front or home page in the Enfold > Theme Options.

    Best regards,
    Ismael

    Hi,

    Thank you for these updates. Glad to know that it’s fixed. We’ll close the thread now, but please don’t hesitate to open another if you need anything else.

    Have a nice day ahead.

    Best regards,
    Ismael

    in reply to: Burger-Menu / How can I change the position? #1222949

    Hi,

    Sorry for the delay. The screenshot looks kind of odd. Why is the menu in the middle of the page?

    If you want to adjust the vertical position of the menu overlay, try to use this css code.

    .html_av-overlay-side .av-burger-overlay-scroll {
    	left: auto;
    	right: 10%;
    }
    

    You might have to adjust the right position on different screens.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We are trying to login again to the site but the connection is timing out — we can’t access it.

    And regarding the snippet above, looks like this line becomes empty in the last breadcrumb trail.

    $link_text = ! empty( $matches[1] ) ? $matches[1] : '';
    

    Did you happen to check the value of that variable?

    Best regards,
    Ismael

    in reply to: Social icon in mobile menu #1222941

    Hi,

    Sorry for the late reply. You can use this new script to move the social icons inside the mobile menu.

    function ava_custom_script_mod_social()
    {
    ?>
    	<script>
    		(function($) {
    			$(document).ready(function() {
    				var burger_wrap = $('.av-burger-menu-main a');
    				var social = $('.social_bookmarks');
    				var mobile_social = $('.mobile_social_bookmarks').length;
    
    				if (mobile_social) return;
    
    				$(burger_wrap).on('avia_burger_list_created', function() {
    					setTimeout(() => {
    						social.appendTo('#av-burger-menu-ul').addClass("mobile_social_bookmarks");
    					}, 500);
    				});
    			});
    		})(jQuery);
    	</script>
    <?php
    }
    add_action('wp_footer', 'ava_custom_script_mod_social', 10000);

    You might need to add a few css modifications.

    Best regards,
    Ismael

    in reply to: Home page video using `Fullwidth Easy Slider` #1222939

    Hi,

    Sorry for the delay. Is there a staging or development version of the site that we can access without changing anything on our machine?

    To resize the video, edit the slide, go the Styling > Video Settings, the set the Video Size to the second option. This option will force the video to stretch if necessary and cover the slider container.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. Try to use this css code to adjust the width of the image in the second gallery.

    #top #wrap_all #flex-gallery .avia-gallery-big {
    	width: 100%;
    	padding: 7px 0;
    }
    

    Default width is 50%. The css code will also adjust the padding around the item.

    Best regards,
    Ismael

    • This reply was modified 5 years, 9 months ago by Yigit.

    Hi,

    Sorry for the delay. Did you install a cache or minify plugin? Try to disable those plugins temporarily, remove the cache and check if the changes displays in the preview. And what is the current PHP version in your server? Please try to upgrade to 7.3 or later versions.

    Best regards,
    Ismael

    in reply to: Ajax Search function not working #1222933

    Hi,

    Have you tried adding a unique category to the posts without links? We can modify the includes > loop-search.php file and check if that category exists and if it does, we can then replace the get_permalink with the link of the portfolio grid page.

    echo "<{$heading} class='post-title entry-title {$css}'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".get_the_title()."</a></{$heading}>";
    

    The code to get all categories already exists in that file around line 75, so all we need to do is check if the custom category exists.

    $taxonomies  = get_object_taxonomies(get_post_type($the_id));
    

    We can also use custom fields.

    // https://www.advancedcustomfields.com/

    Best regards,
    Ismael

    in reply to: Zoom effect on images (category page) #1222755

    Hi,

    We can’t find the item that you posted in the screenshot. Did you remove it? And we can’t reproduce the issue on other items.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Fullscreen Slider Jumping On Mobile After last Update #1222749

    Hi,

    Sorry for the delay. We can’t seem to reproduce the issue on Firefox Windows 10. Do you have a screenshot or a short clip of the issue?

    This is how we see the site: https://imgur.com/a/cHtEmy7

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. The image doesn’t display because the lazy loading plugin is disabled. You have to move the value of the data-src attribute to the actual src attribute of the image.

    <img class="avia_image" title="" alt="Santuario Argegna in Garfagnana" width="1920" height="1280" src="https://www.garfagnanadream.it/wp-content/uploads/2020/05/santuario-argegna-garfagnana-3-scaled.jpg" />
    

    Best regards,
    Ismael

    in reply to: Slider don't work well #1222738

    Hi,

    Very sorry for the delay. Did you add this text anywhere in the site?

    
    <Anterior>Posterior
    123
    

    This text is what probably causes the layout to break, but we can’t find it anywhere in the site.

    Please check @Rikard’s screenshot above: https://imgur.com/a/t2XJjTB

    Best regards,
    Ismael

    in reply to: Optimizing images: Should I use more than 1 version? #1222733

    Hi,

    The srcset option has been put on hold for other priorities, but rest assured that you will still be able to fully optimize the site without it. Please check this article for more info.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow

    Best regards,
    Ismael

    in reply to: Layerslider only on mobile #1222713

    Hi,

    Sorry for the delay. We configured the sliders’ mobile settings accordingly and created a test page. (see private field)

    Best regards,
    Ismael

    in reply to: Instagram Feed not working #1222657

    Hi,

    Yes, sorry about that. Unfortunately, we can no longer use the old widget because of how they implemented the authentication.

    Thank you for understanding.

    Best regards,
    Ismael

    in reply to: WooCommerce 4+ Mobile Cart is Empty Issue #1222656

    Hi,

    Where do you see that error? We can’t reproduce it on our end. This is what we see in the cart page after adding an item in it.

    Screenshot: https://imgur.com/a/maQaTzW

    And on a different note, the cart icon is missing because of a CDN or CORS issue. Not really sure what caused that but you can ask your CDN provider to properly configure the server.

    SEC7120: [CORS] The origin ‘https://migdaliapace.com&#8217; did not find ‘https://migdaliapace.com&#8217; in the Access-Control-Allow-Origin response header for cross-origin font resource at ‘https://secureservercdn.net/166.62.108.43/c23.fa4.myftpupload.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/fonts/entypo-fontello.ttf&#8217;.

    CSS3119: No fonts available for @font-face rule

    Best regards,
    Ismael

    in reply to: Third-party-request vs. GDPR #1222651

    Hi,

    Thank you for the update.

    They will not be classified as non-essential cookies nor they will be automatically be blocked by the theme. Users have to manually turn them on and off using the custom privacy toggle, which is why it’s important to inform your users about the cookies.

    Best regards,
    Ismael

    in reply to: GTM Cookies and third party cookies #1222649

    Hi,

    Thank you for the info.

    The theme only has limited control over which cookies or scripts it can block and that includes the snippet added in the Google Analytics, maps from the builder, fonts, embedded videos or the spam protection. Since the FB Pixel and GA tracking are added in a different manner, the theme will not be able to detect them. You have to add it back to the Google Analytics field, or you will have to create a custom script that will manually block those cookies.

    Best regards,
    Ismael

    in reply to: Mailchimp Signup button problem. #1222646

    Hi,

    Thank you for the update.

    Can we have access to the site? We would like to check the subscription form in the builder. Please post the login details in the private field.

    Best regards,
    Ismael

    Hi,

    You should add the comments template right after this line:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'fullsize' ? 'entry_without_sidebar' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );
    

    And before the closing php tag. Also, make sure that the syntax of the filter is correct. There’s a missing “a” in the snippet you’ve posted above.

    add_filter('comments_open', function() {
        return true;
    }, 9999);
    

    Best regards,
    Ismael

    in reply to: Retina ready or not ready? #1222642

    Hi,

    Did you try adjustinng the size of the Large thumbnail in the Settings > Media panel as suggested above?

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. The date of the posts are now displaying properly in the archive or category pages. Did you figure out the issue?

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We’ll forward these changes to our channel and hopefully add it in the next patch.

    Thank you for your patience.

    Best regards,
    Ismael

    Hey Mischa S.,

    Sorry for the delay. We tried to check the site on MS Edge (working on a windows machine, so no safari) but we can’t see the issue. The slider looks fine. Can you provide a screen cast of the issue on Safari?

    Did you add a license key for the layer slider plugin? The play by scroll feature requires product activation.

    Best regards,
    Ismael

    in reply to: Alternate Menu for Mobile – not working #1222111

    Hi!

    Sorry for the delay. There is a modified version of the includes > helper-main-menu.php file in the child theme. Is it from the latest version of the theme? Please try to get a fresh copy of the file from the parent theme folder, then add the modifications again. Or disable it temporarily.

    Best regards,
    Ismael

    Hi!

    Sorry for the delay. The product image switches to another item when we select a different variation. Is it working properly now?

    Did you set the Enfold > Shop Options > Product Gallery to the second option (Woocommerce 3.0 gallery)?

    UPDATE: Looks like the site is using a different theme now. Anyway, we tried to login to the second site but the credentials didn’t work. Please check it carefully or provide another account.

    Cheers!
    Ismael

Viewing 30 posts - 18,151 through 18,180 (of 67,463 total)