Forum Replies Created

Viewing 30 posts - 28,771 through 28,800 (of 67,570 total)
  • Author
    Posts
  • Hi,

    Thanks for the update. I’m still not sure what causes the issue though. I do see this error in the console.

    (index):310 Uncaught TypeError: $ is not a function
    at HTMLDivElement. ((index):310)
    at HTMLDivElement.dispatch (jquery.js?ver=1.12.4:3)
    at HTMLDivElement.r.handle (jquery.js?ver=1.12.4:3)
    at Object.trigger (jquery.js?ver=1.12.4:3)
    at Object.a.event.trigger (jquery-migrate.min.js?ver=1.4.1:2)
    at a.fn.init.triggerHandler (jquery.js?ver=1.12.4:3)
    at Object.load (eval at
    (layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:165377)
    at new t (eval at
    (layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:193805)
    at HTMLDivElement.eval (eval at
    (layerslider.kreaturamedia.jquery.js?ver=6.7.1:13), :1:2060)
    at Function.each (jquery.js?ver=1.12.4:2)

    Did you modify any of theme files? I would like to check the child theme folder but the Appearance > Editor panel is not accessible. Please enable it.

    Best regards,
    Ismael

    in reply to: Blog #980371

    Hi,

    It used to work fine with the advanced builder, we didn’t change anything to the theme.

    I’m not sure how you managed to make it work before but I think the posts were built with the default editor. You can’t display the content of the advance layout builder by default and it’s been that way ever since the theme was created. This is one of the limitations of creating a post using the advance layout builder.

    Best regards,
    Ismael

    in reply to: internal server error when using plugins #980370

    Hey!

    Thanks for the info. I think I found a possible solution. You can use this filter to disable the cronjob from restarting.

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

    The “activate_cron” property is set to true by default or when the WP_CRON is not disabled.

    Regards,
    Ismael

    in reply to: Adding Opt-in to Small Bar Above Logo Area? #980367

    Hi,

    I’m sorry for the late response. We’ve added these css codes on the Quick CSS field to align the opt-in to the left of the header meta container.

    @media only screen and (min-width: 768px) {
    #header_meta h6 a, #header_meta h6 {
        margin: 0 !important;
        font-family: 'Open Sans';
    }
    
    #header #formHTML {
        position: absolute;
        left: 200px;
        top: -13px;
    }
    
    .awbr-grid .awbr-row {
        margin-left: 0;
    }
    }

    It covers the social media icons when center aligned.

    Best regards,
    Ismael

    Hey Michael,

    Thank you for using Enfold.

    The remaining scripts (mediaelements, front.js) are generated by third party plugins (WP-EVS, Guild Member Endorsements). The theme can only merge its own scripts and stylesheets by default. Use this filter in the functions.php file if you want to include every enqueued files in the compression.

    add_filter('avf_merge_assets', function() {
        return array('css' => 'all', 'js' => 'all');
    });
    

    You can find the theme’s merged script here. ( see private field )

    Best regards,
    Ismael

    in reply to: WPML + preview Images not working #980019

    Hey kwanumzen,

    Thank you for using Enfold.

    I can’t edit the portfolio item (Getting to know zen) and check its content. Please set the user to administrator.

    Best regards,
    Ismael

    in reply to: Masonry (Screen Shakes) On Desktop #980014

    Hey Eric!

    Thanks for the update.

    This thread should help.

    // https://kriesi.at/support/topic/masonry-element-flickering-on-load-more/#post-969885

    The loading icon causes a scrollbar to display intermittently on item load so hiding it should fix the issue.

    Best regards,
    Ismael

    Hey Mosaik-Gin,

    Thank you for using Enfold.

    Where did you add the instagram widget? I can’t find it in the footer section or anywhere in the site. Please provide the actual url of the page containing the widget.

    Best regards,
    Ismael

    in reply to: Add text below comment form #980012

    Hey gooflo,

    Thank you for using Enfold.

    You can use the “comment_form_default_fields’ to add more fields to the comment form. Default fields are author, email, url and cookies.

    // https://developer.wordpress.org/reference/hooks/comment_form_default_fields/

    Best regards,
    Ismael

    Hey xxtita,

    Thank you for using Enfold.

    Is it working properly when you disable the plugins? I noticed that the EWWW Image Optimizer and Image Cleanup plugins are enabled so they might be causing the issue.

    Best regards,
    Ismael

    in reply to: Post Category in Masonary Gallery #980006

    Hey torahulparashar,

    Thank you for using Enfold.

    You should adjust the separator value.

    $separator = ', ';
    

    Add comma instead of space. Or replace the whole filter with this one.

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 );
    function avf_masonry_loop_prepare_mod_cat( $key, $entries )
    {
        $categories = get_the_category($key['ID']);
        $separator = ', ';
    	$output = '';
    	$items = count($categories);
    	$i = 0;
        if ( ! empty( $categories ) ) {
            foreach( $categories as $category ) {
    			if($i++ === $items) {
    				$separator = '';
    			}
    			$output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator;
            }
        }
        $key['text_before'] .= trim( $output, $separator );
    
        return $key;
    }

    Best regards,
    Ismael

    Hey adrianrem89,

    Thank you for using Enfold.

    Do you want the header to stick on mobile view? This is possible but not recommended because it creates more issues further along which is why it is disabled on mobile view by default. Why do you need the header to stick?

    Did you enable the css/js compression in the Enfold > Performance panel? Please disable it temporarily while you work on the site.

    Best regards,
    Ismael

    in reply to: Before i make a purchase #980000

    Hey Moses,

    Thank you for considering Enfold.

    A tech blog should be possible with the Enfold theme. The theme contains a few posts elements such as the magazine and post slider so you can use those to display different variations of posts or articles. Unfortunately, we can’t help you with the purchase. You should contact Themeforest about that.

    This is a tech blog created with the theme. https://datenschmutz.net/

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    Do you have a dev or a staging site? We need to inspect the issue first. Do note that we don’t provide support for third party plugin as stated on our support policy. Please keep in touch with the plugin author.

    Best regards,
    Ismael

    in reply to: Background image #979993

    Hey DianaLoola73,

    Thank you for using Enfold.

    how big I have to create the background image,

    Use the size that will work for the standard screen resolutions.

    // https://www.w3schools.com/browsers/browsers_display.asp

    Unfortunately, fixed backgrounds don’t work properly on phones and tablets specially on iOS.

    // https://caniuse.com/#feat=background-attachment

     - iOS has an issue preventing background-attachment: fixed from being used with background-size: cover.
    - Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.
    - Firefox does not appear to support the local value when applied on a textarea element.
    

    Best regards,
    Ismael

    in reply to: Do not load my fonts in the theme #979988

    Hey ImagenGT,

    Thank you for using Enfold.

    You can only upload google fonts on the custom font manager. If you have a non-google custom font, use the font-face rule.

    // https://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Best regards,
    Ismael

    in reply to: Easy Slider Doesn't Work From Mobile #979987

    Hey ballindigital,

    Thank you for using Enfold.

    Displaying the navigation on load should help instead of on hover. For mobile, try this css code to adjust the column width.

    @media only screen and (max-width: 767px) {
    .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 49%;
        margin-right: 1%;
    }
    }
    

    You may need to apply custom css class attributes to those columns.

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Quick CSS on different languages not working #979983

    Hi,

    Thank you for using Enfold.

    We disabled the css/js compression in the Enfold > Performance panel temporarily. Please try to change the settings again.

    Best regards,
    Ismael

    in reply to: Zoom SVG on Gallery #979980

    Hi,

    Thanks for the update.

    Did you remove the svg images? I can’t find them in the page.

    Best regards,
    Ismael

    in reply to: How to Center Footer Nav Menu with Copyright Below? #979963

    Hi,

    Remove the #top.home selector if you want it to be applied to the rest of the page.

    .html_header_top.html_header_sticky #top #wrap_all #main {
        padding-top: 55px!important;
    }
    

    Best regards,
    Ismael

    in reply to: orphan punctuation between posts on blog index page #979960

    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

    Hi,

    Thanks for the update.

    I’m trying to debug the issue but I lost the API key when I refreshed the page. Sorry about that. Please add the API key again in the google services field. It seems like the theme’s av_maps_js_api_check ajax function returns 0 as the $valid_key value even if the map API check is successful causing the error response text to display instead of storing the map key. I’m not really sure yet so we need to inspect the issue further. We’ll check it again once you’ve added the API key again.

    You can actually store the map api key manually in the database as a temporary workaround.

    add_action('init', function {
         update_option( 'av_gmaps_api_key', 'ADD KEY HERE' );
    });

    Adjust the API key then refresh the page once or twice and then delete the function.

    Best regards,
    Ismael

    in reply to: 2 columns grid row for mobile devices #979947

    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: Recent Posts Styling #979945

    Hi,

    I got a forbidden error when I visited that site. Have you tried to configure the theme options and the advanced styling? All the needed styling adjustments should be available there.

    Best regards,
    Ismael

    in reply to: Google reCAPTCHA and Enfold Contact Form #979943

    Hi,

    We can’t recommend the same script before because of DSGVO or GDPR. Please try Sucuri or Wordfence to protect your site from third party scripts or spams.

    // https://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I still get the same error when I modify the file in the Appearance > Editor panel.

    Algo fue mal. Tu cambio no se ha podido guardar. Por favor, inténtalo de nuevo. También es posible que tengas que arreglarlo manualmente y subir el archivo por FTP.

    Please provide the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: internal server error when using plugins #979941

    Hi,

    However I stumbled upon this other thread. It looks like it’s a cron job causing the error.

    Yes, it is the cronjob that’s causing the issue as was mentioned earlier. That cronjob will only be initiated when you add an instagram widget. You can disable cronjob completely by adding this code in the wp-config.php file..

    define('DISABLE_WP_CRON', true);
    

    Or use this hook in the functions.php file to disable a specific cronjob.

    add_action('init', function() {
    	 wp_clear_scheduled_hook( 'av_instagram_scheduled_filecheck' );
    });
    

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    I can’t see the issue on the shop page. Is this fixed? Please try to wrap the footer page content inside a color section.

    Best regards,
    Ismael

    in reply to: Main Menu Drop Down Opacity #979938

    Hi,

    The sub menu color is being set to “#bbbbbb” when hovered so that css code is not being applied.

    #top #wrap_all .av-main-nav ul > li:hover > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul {
        color: #bbbbbb;
        background-color: #ffffff;
    }
    

    Did you toggle the css/js compression in the Enfold > Performance panel? Please provide the login detains in the private field.

    Best regards,
    Ismael

    Hi,

    I can’t give you the IP address but you can find our locations in the following link.

    // https://kriesi.at/about

    Or just disable the security plugin temporarily.

    Best regards,
    Ismael

Viewing 30 posts - 28,771 through 28,800 (of 67,570 total)