Forum Replies Created

Viewing 30 posts - 26,221 through 26,250 (of 67,534 total)
  • Author
    Posts
  • Hi,

    You can request for that feature in the request page but I don’t think it will get that much attention at this moment because the developers are busy with the upcoming WP 5.0 update.

    // https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    in reply to: After Update to 4.5: Highlights are oversized! #1030145

    Hi,

    Thanks for the update.

    You can also add this css code if you don’t want the image to overflow outside the image container.

    .av-hover-grow {
       overflow: hidden;
    }

    Best regards,
    Ismael

    Hi!

    Thanks for the info. This filter should remove that text:

    function avf_form_autorespondermessage_mod($message) {
    $message = str_replace('Your Message:', '', $message);
    return $message;
    }
    add_filter('avf_form_autorespondermessage', 'avf_form_autorespondermessage_mod', 10, 1);
    

    You can also replace it with another text by adjusting the second value of the “str_replace” function.

    Best regards,
    Ismael

    in reply to: Problem mobile Variante #1029806

    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: Toolset and Enfold #1029805

    Hey Simon Howe,

    Thank you for using Enfold.

    The plugin should work properly with the theme but there are certain conflicts that we won’t be able to solve unless both parties (Enfold and Toolset) agrees on how and when the plugin or the theme is initialized.

    Related thread: https://kriesi.at/support/topic/custom-post-type-not-appearing-in-posts-dropdown-in-portfolio-grid-element/#post-762820

    That issue may not concern you if you’re not going to activate the custom post type selection for the builder elements.

    // add the custom post types to the builder elements
    add_theme_support('add_avia_builder_post_type_option');
    add_theme_support('avia_template_builder_custom_post_type_grid');
    

    Best regards,
    Ismael

    Hi,

    No, it’s not the only reason why your rank is changing. It’s cause by a lot of factors and the theme is just a minor part of that. You should consult with a SEO professional if you want to understand more how ranking works and how to improve it.

    Best regards,
    Ismael

    in reply to: Apartments booking form – Enfold contact form with tag? #1029800

    Hi,

    Where should it send the user? The “data-guestline-form” attribute is correctly applied to the form. Please contact the script author for additional help.

    Best regards,
    Ismael

    in reply to: How to change blog post like this theme #1029799

    Hi,

    1.) You should be able to change the blog layout in the Enfold > Blog Layout panel. Look for the blog style and the blog layout settings.

    2.) I can only see one breadcrumb in that page. Please provide a screenshot of the issue.

    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: Hide default image on article slider #1029796

    Hi,

    Which css did you use? Please open a new ticket and post the necessary details there. We’ll close this one now.

    Best regards,
    Ismael

    in reply to: Search error #1029793

    Hi,

    Still not working. Please contact your hosting provider and then open a new ticket here once the issue with the login has been resolved.

    Best regards,
    Ismael

    in reply to: masonry gallery item's title show error with wpml #1029792

    Hi,

    Thanks for the update. I’m not really sure what the problem is but you can use the following css codes to fix it temporarily.

    .gallery_en + div {
        display: none;
    }
    
    html[lang=ja] .gallery_en + div {
        display: block;
    }

    Best regards,
    Ismael

    Hi,

    Again, that snippet is for the single post pages. It’s not going to work on the search results page. Did you add any modifications the search page templates? The posts thumbnails should not be displayed on the search results page by default.

    Best regards,
    Ismael

    in reply to: tab section and load more #1029781

    Hi,

    I can reproduce on firefox but only the load more button gets cut off. This script should help resize the tab height when the load more button is clicked.

    add_action('wp_footer', 'ava_custom_script_tab_resize');
    function ava_custom_script_tab_resize(){
    	?>
    	<script type="text/javascript">
            (function() {
               $('.av-masonry-load-more').on('click', function() {
                setTimeout( function() {
                    $(window).trigger('av-content-el-height-changed');
                }, 1000);
               });
            })();
    	</script>
    	<?php
    }

    If it doesn’t work as expected, try this:

    add_action('wp_footer', 'ava_custom_script_tab_resize');
    function ava_custom_script_tab_resize(){
    	?>
    	<script type="text/javascript">
            (function() {
               $('body').on('av_resize_finished', function() {
                    $(window).trigger('av-content-el-height-changed');
               });
            })();
    	</script>
    	<?php
    }
    

    Best regards,
    Ismael

    in reply to: image link not working #1029777

    Hi!

    You can use bit.ly to shorten the url of the “coursereport” link/page, so it’s hidden until the actual page is loaded or fetched.

    // https://bitly.com/

    Regards,
    Ismael

    in reply to: Responsive issue with Layerslider #1029776

    Hi,

    I’m sorry for the late response. I can’t reproduce the issue on my end. Where are you testing it? Please provide a screenshot using imgur or dropbox.

    Best regards,
    Ismael

    in reply to: Masonry element and WP-Rocket LazyLoad #1029775

    Hi,


    @elskeletto1
    : Please create a new thread with the site url and login credentials. We’ll check it there.

    Best regards,
    Ismael

    in reply to: Cookies Consent Message in several languages #1029749

    Hi,

    Thanks for the info. I think this is working properly. I can’t send the form when the checkbox is not ticked or enabled.

    Best regards,
    Ismael

    in reply to: live preview #1029747

    Hey Emmanuel Alen,

    Thank you for contacting us. I’ll forward this thread to Kriesi. Please wait for his response.

    Best regards,
    Ismael

    Hey compudean,

    Thank you for using Enfold.

    The theme has native configurations for TEC but none for the plugins listed above. Nevertheless, those plugins should work properly with the theme but they might require some modifications and/or adjustments, especially the template files.

    Best regards,
    Ismael

    Hi,

    Are you referring to the slider’s Screen Options panel? Please provide a screenshot of the option. Make sure that the site is running on Enfold v4.5 and WordPress 4.9.8.

    Best regards,
    Ismael

    in reply to: Sort Posts by 'ACF' custom field – Date #1029743

    Hi,

    You may need to add separate blog posts element and select one category for each element. Unfortunately, altering the query based on the conditions that you want is a bit complicated.

    Best regards,
    Ismael

    in reply to: Contact form invalidation and validation border color #1029734

    Hi,

    Thanks for the info.

    You can use the following css codes to change the validation border colors.

    
    /** valid**/
    #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area, #top #wrap_all .valid .select{
        border:1px solid #9AA600;
    }
    
    /** error **/
    #top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select {
        border: 1px solid #DF653E;
    }

    Best regards,
    Ismael

    in reply to: Contact Form Not Using Custom Email Subject #1029732

    Hi,

    Thanks for the info.

    Can we access the file server? Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: Featured Image #1029730

    Hi,

    By default, the featured image should display on single post pages because it is included in the includes > loop-index.php file or template. Are you using the advance layout builder before?

    Best regards,
    Ismael

    Hi,

    I can’t reproduce the issue on IE11 Windows 8. Can you give us a screenshot of the issue?

    Best regards,
    Ismael

    Hey markusperl,

    Thank for you the info. I’ll forward this to the dev team.

    Best regards,
    Ismael

    in reply to: image link not working #1029085

    Hi,

    That’s an odd issue. Have you tried shortening the url with bit.ly?

    Best regards,
    Ismael

    in reply to: Enfold 4.4.1 & Gutenberg #1029084

    Hi,

    “You will, however, have the option to choose between the theme’s builder or Gutenberg.”

    The advance layout builder is still not compatible with Gutenberg, so you have to choose between the two. Once the Gutenberg plugin is active, you’ll have the option to edit the page/post with the classic editor or advance layout builder and the gutenberg builder. You won’t be able to switch between these editors but our developer are searching for a way around it.

    This is what you’ll see on the pages panel when Gutenberg is active:

    // https://imgur.com/a/llRLEKo

    Best regards,
    Ismael

    in reply to: Having trouble using a different social icon #1029080

    Hi,

    @Bradasser: The site is using a very old version of the theme. You have to upgrade to version 4.5 manually via FTP. Please open a new thread once you’re done with the update.

    Best regards,
    Ismael

    Hi,

    Can you give us a screenshot of that issue? Are you referring to the email message? This might help:

    // https://kriesi.at/support/topic/text-translation-in-confirmation-email/#post-1012340

    Replace the “Your message” text with nothing if you want to remove the default text info.

    Best regards,
    Ismael

Viewing 30 posts - 26,221 through 26,250 (of 67,534 total)