Forum Replies Created

Viewing 30 posts - 21,871 through 21,900 (of 67,485 total)
  • Author
    Posts
  • in reply to: Responsive imagen #1130804

    Hi,

    Thank you for the update.

    We can adjust the background size property with css but it will distort the image. Have you tried to set the background position to “Center center” instead of the “Top left”?

    Best regards,
    Ismael

    in reply to: Enfold contact form #1130803

    Hey stefan,

    Thank you for using Enfold.

    Yes, you can use the contact form element to create input fields in a row. And if you want to display a message after the user send the form, set the element’s “What should happen once the form gets sent?” to the first option (Display a short message on the same page).

    Best regards,
    Ismael

    Hey Caiser_Souze,

    Thank you for using Enfold.

    Are you trying to adjust the publish date? That option works properly on our end — we can select a date in the calendar. Please try to deactivate the plugins temporarily.

    Best regards,
    Ismael

    in reply to: distance images top and bottom #1130801

    Hi,

    Thank you for the update.

    The ngg gallery has a default top margin. You can adjust that with the following css code.

    .ngg-galleryoverview {
        margin-top: 0px;
    }
    

    Default value is 40px.

    Best regards,
    Ismael

    in reply to: trouble with the_content(); and Advanced Layout Editor #1130798

    Hi,

    Thank you for the update.

    We were actually referring to the last return statement but if it works that way, then you can leave it as it is.

    Best regards,
    Ismael

    in reply to: Changing Header Color for only one Page #1130797

    Hi,

    Thank you for the update.

    You can change the default color of the top bar or header meta on pages with transparent header by prepending the “av_header_transparency” selector to the #header_meta selector. To change the color on scroll, just remove the av_header_transparency and apply a different color.

    Best regards,
    Ismael

    in reply to: Masonry Galley loading issue – Enfold #1130796

    Hi,

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1130795
    in reply to: IE issues #1130794

    Hi,

    Thank you for the update.

    It’s possible that the animation doesn’t start properly on those browsers. Try to add this css code.

    .js_active .av-minimum-height .container {
        opacity: 1;
    }

    Please don’t forget to remove the cache.

    Best regards,
    Ismael

    in reply to: Change Tab Section with images on Mobile #1130792

    Hi,

    Thank you for the update.

    I’m not really sure what you’re seeing wrong in that screenshot. The content is there. Please note that the user have to click on the last tab title that is visible in the page in order to access the next tabs.

    Best regards,
    Ismael

    in reply to: DEMO IMPORT #1130791

    Hi,

    Thank you for the update.

    The changes are reflected immediately as soon as we removed the cache. We added two text blocks at the very bottom of the gallery page.

    You have to click the “Cancella la cache” button every time you make any changes to the page or the site.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. You may need to install a third party extractor software like WinRAR to properly open the file. The default archive utility doesn’t seem to recognize that the compressed file is password protected, so it doesn’t ask for it and hence the error.

    Best regards,
    Ismael

    in reply to: Maintenance Mode & IP Address support? #1130789

    Hi,

    i still don’t understand what the purpose of wanting that option would be; my curiosity would appreciate an explanation of that, but not necessary.

    It sets the header status to 404, so the maintenance and 404 page won’t get crawled or index by the search engine. It was requested by a lot users previously. You can change that behavior using the “avf_404_supress_status_code” filter.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay.

    You can adjust the vertical position of the menu container with this.

    #header_main_alternate {
        z-index: 2;
        top: -25px;
    }
    

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Problem with SEO Yoast and Enfold theme. #1130253

    Hi,

    Thank for you the update.

    I disagree with the idea that these tools are useless for those who understand SEO.

    No one said that the tool is useless and we explicitly stated that the builder is not fully compatible with the plugin. And we also admitted earlier that as of this moment, there are no plans on making the builder fully compatible with the analysis tool.
    // https://kriesi.at/support/topic/problem-with-seo-yoast-and-enfold-theme/#post-1119454

    Thank you for the info. As we’ve said earlier, there are certain limitations to how the analysis detects content in the builder. Unfortunately, there is no plan on making the builder fully compatible with the analysis tool, at least not as of this moment.

    However, this doesn’t mean that by using the Advance Layout Builder you won’t be able to structure pages that are fully readable by or optimized for search engines. You can, but unfortunately, without the help of the analysis tool.

    Best regards,
    Ismael

    in reply to: Events Calendar Pro – Admin Menu Bug #1130250

    Hi,

    Thank you for the update.

    The login account above is invalid. Are you sure that the account is the same for “staging1” and “staging4” site?

    Best regards,
    Ismael

    in reply to: Sort Restaurant Menu Items #1130248

    Hi,

    This is somehow possible with the portfolio grid, masonry or the magazine element because these elements can display actuals posts, so you can sort them by category. Unfortunately, this is not possible with the catalogue element because the items that you add there manually can’t be grouped into categories.

    Best regards,
    Ismael

    in reply to: Partner/Logo Element #1130246

    Hi,

    Thank you for the update.

    It also loads when the browser is resize. Do you have any plugin that contains a lazy load function? Please try to disable that temporarily. You can also try this script in the functions.php file.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    		$(window).trigger('av-content-el-height-changed');
    	}, 2000);
    	
    	$(window).on('load', function() {
    		setTimeout(clearInterval(int), 1000);
    	});
    })(jQuery);
    </script>
    <?php
    }

    Best regards,
    Ismael

    in reply to: trouble with the_content(); and Advanced Layout Editor #1130245

    Hi,

    I’m not sure how to implement the conditional function you referred to, but it doesn’t seem like that would solve this issue, right?

    Actually, it would. In the functions.php file, inside the “exec_sc_only” filter, look for this line.

    return true;
    

    Wrap it inside conditional functions like so.

    if(!is_admin() && is_page(24)) {
        return true;
    } 
    

    That should prevent the filter from executing the shortcodes on the admin page. Replace 24 with the actual ID of the page where you have the search filter. You can also use an array of IDs as value in case you want to enable it on more than one page.

    if(!is_admin() && is_page(array(24, 45, 75))) {
        return true;
    } 
    

    Best regards,
    Ismael

    in reply to: Unable to use Classic Editor #1130243

    Hi,

    Thank you for the update.

    Those meta info are related to the page “Layout”. You don’t have to adjust or copy them manually. If you want to copy the content of the page, save it as a template.

    Best regards,
    Ismael

    in reply to: Help with Post Link Format #1130241

    Hi,

    Can helper-post-format.php be overridden in child theme?

    You can remove or disable the default “avia_link_content_filter” filter and create your own.

    
    remove_filter( 'post-format-link', 'avia_link_content_filter', 10, 1 );
    add_filter( 'post-format-link', 'avia_link_content_filter_mod', 10, 1 );"
    function avia_link_content_filter_mod() {
       // your own mods here
    }
    

    Just copy the content of the default filter, then do your own modifications.

    Best regards,
    Ismael

    in reply to: Logo on different pages #1130240

    Hi,

    Thank you for the update.

    We modified the value of the is_page function in the filter a bit.

    if(is_page(array(22, 991, 994)))
    

    Best regards,
    Ismael

    in reply to: Blog single post #1129964

    Hi,

    Thank you for the update.

    We added this code in the functions.php file to re-enable the comment.

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

    We’re not really sure what overrides that filter or what sets the “comments_open” to false.

    Best regards,
    Ismael

    in reply to: Change Tab Section with images on Mobile #1129959

    Hey Bernd,

    Thank you for using Enfold.

    Where are you testing it? The content of the tab section displays fine on iPhone devices in an Edge emulation.

    Best regards,
    Ismael

    in reply to: Code Block broke my Website #1129955

    Hi,


    @logancc
    : Please open a new ticket and post the necessary details in the private field. We’ll check it there.

    Best regards,
    Ismael

    in reply to: Can't add new pages to top menu #1129953

    Hey garyhsueh,

    Thank you for using Enfold.

    The site is still running on an older version of the the theme, 4.0.7. You have to upgrade it to version 4.5.7 manually via FTP.

    // https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    Hey webWahine,

    Thank you for using Enfold.

    That’s the default select element style of the browser or OS, so you can’t change that. You can adjust its style a bit (background, text color, etc) but you can’t replace the icon without adding additional scripts.

    Best regards,
    Ismael

    Hey Bernd,

    Thank you for using Enfold.

    There is no option for that in the slider. You may need to hide the current slider and display another on mobile view.

    Best regards,
    Ismael

    in reply to: Help with Post Link Format #1129839

    Hey jberg1,

    Thank you for using Enfold.

    Can you give us a link to the page with the blog posts? Try to edit the helper-post-format.php file and remove line 268.

    $current_post['title'] = $link;
    

    And this code around line 278:

    $current_post['title'] = $link[0];
    

    This will prevent the filter from overriding the default title.

    Best regards,
    Ismael

    in reply to: Problem with the Screen Options not working good #1129838

    Hi,

    Thank you for using Enfold.

    There are 3 copies of Enfold in the themes directory not including the child theme. Please delete the older versions, try to re-save the theme options and update the page. You can also set the builder to debug mode so that we can see the shortcodes.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

Viewing 30 posts - 21,871 through 21,900 (of 67,485 total)