Forum Replies Created

Viewing 30 posts - 27,451 through 27,480 (of 67,565 total)
  • Author
    Posts
  • in reply to: Toolset – Custom Search – Problem with Enfold (AJAX?) #1006434

    Hi,

    The filter works properly when I test it. The reset button works as well. Please purge the cache and then test it again.

    Best regards,
    Ismael

    in reply to: Symmetrical portfolio #1006432

    Hey!

    The portfolio grid looks more consistent after regenerating the thumbnails. (see private field)
    Did you add the filter?

    Best regards,
    Ismael

    in reply to: Child theme #1006430

    Hey scarlet,

    Thank you for using Enfold.

    Did you enable the File Compression option in the Enfold > Performance panel? Please disable it first then save it. Let us know if that changes anything.

    Best regards,
    Ismael

    in reply to: Contact Form –> Mail does not arrive #1006425

    Hey Carsten,

    Thank you for using Enfold.

    Did you check your spam folders? You may need to change the from address to a WordPress email address. Add this filter in the functions.php file.

     function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10); 

    Adjust the domain name. If it doesn’t work, try these troubleshooting steps.

    // https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    Hey Moondreamer21,

    Thank you for using Enfold.

    Add this css code to remove the related posts section.

    .related_posts {
        display: none;
    }

    Best regards,
    Ismael

    in reply to: Dividing Line Between Category Posts? #1006422

    Hey Moondreamer21,

    Thank you for using Enfold.

    Use this css code to create borders between the category posts.

    .archive .template-blog .post_delimiter {
        border-bottom: 1px solid gray;
    }

    Best regards,
    Ismael

    in reply to: Rearrange Contact Form Fields #1006420

    Hey daniur,

    Thank you for using Enfold.

    We need to inspect the actual contact form. Please provide the link to the page.

    Best regards,
    Ismael

    in reply to: New purchase of Enfold #1006419

    Hey Lars Levin,

    Thank you for using Enfold.

    We need you to register an account in the forum before we can answer your questions. Please enter your purchase code in the registration page.

    // https://kriesi.at/support/register/

    Please note that you can only install a regular licensed theme on a single site.

    // https://themeforest.net/licenses/terms/regular

    For example: the item is a website theme and the end product is the final website customised with your content.

    Best regards,
    Ismael

    in reply to: WooCommerce Check Out Page #1006413

    Hey ginnywills,

    Thank you for using Enfold.

    I tested it thrice and the only time I got an error was when I added the “Lemon Herb Chicken”, which is $11 short of the minimum order.

    You may not know, but the minimum order per delivery is $30. Please add other tasty entrees, sides, salads and/or desserts to your cart to meet the minimum $30 for the following delivery day(s):
    Monday

    Screenshot of the checkout page: https://imgur.com/a/ZjNJWgw

    Best regards,
    Ismael

    in reply to: Virus problems – modelistatistik #1006407

    Hey Gökhan,

    Thank you for using Enfold.

    You have to delete the reported files manually and then override your whole WordPress installation with the latest version. They seem to be related to the core files, not the theme. The warnings or notices from the class-framework-widgets.php are not critical but they’re going to be taken care of in the next patch.

    Best regards,
    Ismael

    in reply to: PROBLEMS WITH FULL WIDTH SLIDER #1006405

    Hi,

    Alright. It’s good that you found the problem. If I am not mistaken, those scripts are from the layer slider. Are you using the layer slider?

    Best regards,
    Ismael

    in reply to: Masonry Categories / Sorting / Show Hidden Title #1006403

    Hey DesignUM_International,

    Thank you for using Enfold.

    1.) As you have already noticed, the category sort can only filter existing items. It doesn’t have the ability to load non-existing items. Only workaround thus far is to display all items on the same page and disable the pagination or the load more button. You can also set the “orderby” parameter or settings to “random”.

    2.) The images that you’ve used have various sizes and aspect ratio so they don’t exactly fit together. Try to adjust the number of items or try to be more consistent with your images. Unfortunately, you can’t set the sorting manually.

    3.) Each item has a unique id attribute and you can use that to alter the style of that specific item. Example.

    #av-masonry-1-item-3293 .av-inner-masonry-content.site-background {
        opacity: 1;
        filter: alpha(opacity=100);
    }

    “3293” is the id of the portfolio items and “1” refers to the masonry element.

    Best regards,
    Ismael

    in reply to: Formatting of Mobile Menu Lost After Updating Theme #1006399

    Hi,

    Did you modify any of the theme files in your child theme? Please update those files as well. Or post the login details in the private field so that we could check it.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. You can use this css code.

    #top .header_color a:hover .avia-bullet {
        border-color: #88bbc8;
    }
    
    #top .header_color .main_menu .menu ul li>a:hover {
        color: #333333;
    }
    
    .header_color .main_menu .menu ul li a:hover, .header_color .av-subnav-menu ul a:hover {
        background-color: #f8f8f8;
    }

    Best regards,
    Ismael

    in reply to: Symmetrical portfolio #1006397

    Hi,

    I am currently regenerating 2900++ thumbnails. We’ll give you an update once it is done. Please add this code in the functions.php file.

    /**
     * Set sizes atribute for responsive images and better performance
     * @param  array        $attr       markup attributes
     * @param  object       $attachment WP_Post image attachment post
     * @param  string|array $size       named image size or array
     * @return array        markup attributes
     */
    function avf_responsive_img_sizes( $attr, $attachment, $size ) {
        if ( is_array( $size ) ) {
            $attr['sizes'] = $size[0] . 'px';
        } elseif ( $size == 'widget') {
            $attr['sizes'] = '36px';
        } elseif ( $size == 'square') {
            $attr['sizes'] = '180px';
        } elseif ( $size == 'featured') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'featured_large') {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'extra_large' ) {
            $attr['sizes'] = '1500px';
        } elseif ( $size == 'portfolio' ) {
            $attr['sizes'] = '495px';
        } elseif ( $size == 'portfolio_small' ) {
            $attr['sizes'] = '260px';
        } elseif ( $size == 'gallery' ) {
            $attr['sizes'] = '845px';
        } elseif ( $size == 'magazine' ) {
            $attr['sizes'] = '710px';
        } elseif ( $size == 'masonry' ) {
            $attr['sizes'] = '705px';
        } elseif ( $size == 'entry_with_sidebar' ) {
            $attr['sizes'] = '845px';
    	} elseif ( $size == 'entry_without_sidebar' ) {
            $attr['sizes'] = '1210px';
        }
        return $attr;
    }
    add_filter( 'wp_get_attachment_image_attributes', 'avf_responsive_img_sizes', 30, 3 );
    

    Best regards,
    Ismael

    in reply to: [object][Object] – Fallback Image / iPhone #1006396

    Hey petschka,

    Thank you for using Enfold.

    This thread should help.

    // https://kriesi.at/support/topic/mobile-shows-object-object-instead-of-fallback-picture/#post-959380

    Best regards,
    Ismael

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

    Hi,

    No problem. Let us know if you need anything else. Thank you for using Enfold!

    Best regards,
    Ismael

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

    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: Advanced Layout Editor for Blog Post Page? #1006386

    Hi,

    We modified the code a bit.

    if(is_single() || is_archive()) {
    

    Best regards,
    Ismael

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

    Hi,

    This should help: https://support.google.com/webmasters/answer/181708?hl=en

    Best regards,
    Ismael

    Hi,

    I would like to check it again but I got temporarily locked out of the site due to Wordfence. Would you mind providing a screenshot?

    Best regards,
    Ismael

    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

Viewing 30 posts - 27,451 through 27,480 (of 67,565 total)