Forum Replies Created

Viewing 30 posts - 12,991 through 13,020 (of 66,065 total)
  • Author
    Posts
  • in reply to: Text wrap around Video #1306848

    Hi,

    Thank you for the update.

    You can set the iframe to float to the right.

    iframe {
        float: right;
    }
    

    The css code above will affect every iframe element in the site, so you may need to apply a unique id or class name to the elements that you want to adjust.

    Best regards,
    Ismael

    in reply to: problem with change the font weight in layer slider #1306846

    Hi,

    Yes, you have been banished from the forum. ;D

    The font is actually added at the very bottom of the font dropdown or the font selection. We selected it again and re-save the theme options.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Pictures with people as featured image? Struggling… #1306845

    Hi,

    Glad to know that it is working. Regarding the image alignment, you can replace the css with this one.

    .big-preview.single-big a img {
        width: auto;
        margin: 0 auto;
    }
    

    Best regards,
    Ismael

    in reply to: Layerslider WP Glitching between transitions #1306844

    Hi,

    It is probably not an issue with the theme, only with the layer slider. You can try it with a default theme first, see if the issue persists.

    Best regards,
    Ismael

    in reply to: Update avia-builder-rtl.css when using a child theme #1306843

    Hey sasha,

    Thank you for the inquiry.

    Which specific css are you trying to override? Have you tried using the !important rule to give priority to the css rules in the style.css file?

    // https://css-tricks.com/when-using-important-is-the-right-choice/

    Best regards,
    Ismael

    in reply to: filter custom taxonomies #1306842

    Hi,

    Thank you for the inquiry.

    Did you revert the postslider.php file back to default before adding the latest code? To exclude certain taxonomies, you have to include it in the array in this line.

    $excluded_taxonomies = array_merge( get_taxonomies( array( ‘public’ => false ) ), array(‘post_tag’,’post_format’) );
    

    Include the name of the taxonomy that you want to exclude in this array.

    array(‘post_tag’,’post_format’)
    

    Best regards,
    Ismael

    in reply to: Featured image being cropped #1306840

    Hi,

    Alright. Glad to know that it is now working. Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: scrolling no longer visible with layerslider #1306839

    Hi,

    The theme automatically disables the navigation when there is a full width element in the page such as the layer slider. To alter that behavior, try to add this filter in the functions.php file.

    
    function avia_remove_fullwidth_slider_check($settings)
    {
       $settings['is_fullwidth'] = false;
       return $settings;
    }
    add_filter('avia_post_nav_settings','avia_remove_fullwidth_slider_check', 10, 1);
    

    Best regards,
    Ismael

    Hey waxingmedia,

    Thank you for the inquiry.

    You might have to move the whole avia_woocommerce_parallax_banner function and all the associated hooks or functions in the child theme’s functions.php file. The following threads might help.

    // https://kriesi.at/support/topic/woocommerce-category-description-displayed-in-title-header/#post-1298715
    // https://kriesi.at/support/topic/product-category-pages-full-width-page-banner-and-description-updated/#post-877483

    Best regards,
    Ismael

    Hey Blatze,

    Thank you for the inquiry.

    There are a lot of videos in the home page. Which of them are not supposed to play automatically?

    Best regards,
    Ismael

    Hey Paul,

    Thank you for the inquiry.

    Looks like Flemish is not available for recaptcha, or the API does not have this translation yet.

    // https://developers.google.com/recaptcha/docs/language

    To fix the issue, we might have to set the hl parameter manually in the enfold/framework/js/conditional_load/avia_google_recaptcha_api.js around line 210.

    	switch( this.version )
    			{
    				case 'avia_recaptcha_v2':
    					src += '?onload=av_recaptcha_main_api_loaded&render=explicit';
    					break;
    				case 'avia_recaptcha_v3':
    					src += '?onload=av_recaptcha_main_api_loaded&render=' + this.site_key3;
    					break;
    			}
    

    Replace the code with:

    	var lang = document.getElementsByTagName("html")[0].getAttribute("lang").replace("-", "_");
    
    			switch( this.version )
    			{
    				case 'avia_recaptcha_v2':
    					src += '?onload=av_recaptcha_main_api_loaded&render=explicit&hl=' + lang;
    					break;
    				case 'avia_recaptcha_v3':
    					src += '?onload=av_recaptcha_main_api_loaded&render=' + this.site_key3 + '&hl=' + lang;
    					break;
    			}
    

    Best regards,
    Ismael

    Hey!

    Thank you for the update.

    We tried to enqueue the script by adding this code in the functions.php file but for some reason the site is not loading properly on our end.

    wp_enqueue_script( 'avia-open-access', 'https://openaccessplugin.com/access.js', array( 'jquery' ), $vn, true );
    

    Would you mind checking it on your end?

    Regards,
    Ismael

    in reply to: Combining cookies under 1 opt-in #1306666

    Hey Telepsy_NL,

    Thank you for the inquiry.

    How did you add the Active Campaign script? You might be able to combine the scripts if they are both added in the Enfold > Google Services > Google Analytics field. Enabling the analytics script via the privacy options should also enable the other.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like the menu item is now displaying properly in the home page, even when we are not logged in. How did you fix it?

    Best regards,
    Ismael

    in reply to: WooCommerce Product Catalog displayed as blog archive #1306664

    Hi,

    Thank you for the inquiry.

    You might have accidentally set the product page as blog page in the Enfold > Theme Options, or in the Settings > Reading panel. Please check the settings to make sure that the product page is not selected.

    If you want to use the advance layout builder to create the content of the shop page, please check the following documentation.

    // https://kriesi.at/documentation/enfold/woocommerce-shop/#custom-woocommerce-shop-overview-with-advanced-layout-editor

    Best regards,
    Ismael

    in reply to: Yoast Seo and Avia Layout Builder #1306618

    Hi,

    It seems like you do not have back links according to the analysis tool because it cannot scan the builder content, but the links are there. This issue should not affect the front end and crawlers should be able to read the content of the page properly. If you are not sure if you are doing SEO correctly, you can refer to the documentation.

    // https://yoast.com/tag/seo-basics/

    This tool should also help.

    // https://yoast.com/research/real-time-content-analysis/

    The analysis tool should work fine with the default editor.

    Best regards,
    Ismael

    in reply to: problem with change the font weight in layer slider #1306613

    Hi,

    We added the code in the functions.php file and selected the new font in the General Styling > Fonts. The heading layer is displaying the correct font weight now.

    Screenshot: https://postimg.cc/1nv5gDZP

    Best regards,
    Ismael

    in reply to: Show Video Player Controls only on Mouseover #1306610

    Hi,

    It might not be working yet because the css files are compressed. Please toggle or temporarily disable the Enfold > Performance > File Compression settings, and make sure to purge the cache afterwards.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Pictures with people as featured image? Struggling… #1306607

    Hi,

    Have you tried adjusting the dimension of the thumbnail? You should also add this css code to prevent the theme from stretching the featured image or to prevent it from inheriting the width of the content container.

    .big-preview.single-big a img {
    	width: auto;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1.) We added the following css code to remove the menu indicator or the arrows.

    .mega-indicator {
    	display: none !important;
    }

    2.) And this one to remove the lines in the mobile menu.

    .av_minimal_header .main_menu #mega-menu-wrap-avia #mega-menu-avia li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item a {
    	border: 0;
    }
    

    3.) This is not possible out of the box but you should be able to use css to change the style of the mobile menu icon. Example:

    #mega-menu-wrap-avia .mega-menu-toggle .mega-toggle-block-3 .mega-toggle-animated-box::before {
    	content: "\f411" !important;
    	font-size: 30px;
    	top: -20px;
    	position: relative;
    }
    
    .mega-toggle-animated-inner {
    	display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: Fix Coupon Code Not Accepted #1306590

    Hi,

    Would you mind removing the previous script that we recommended previously? We would like to test it again without the script. Maybe we could come up with a solution without altering the order of the elements in the checkout container. And please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Fontello after new update #1306589

    Hi,

    Thank you for the update.

    You have to add the code in the functions.php file, and replace “block” with “swap”. Look for this line..

    return "block";
    

    .. and replace it with:

    return "swap";
    

    You do not have to change the name of the font. If it is not working, try to use “block” again.

    Best regards,
    Ismael

    in reply to: Google Analytics Cookies are loaded automaticaly #1306587

    Hi,

    How did you add the analytics snippet? The privacy option cannot block the script because the tracking snippet was not added in the Enfold > Google Services > Google Analytics field. You have to add the code in that field.

    Best regards,
    Ismael

    in reply to: Layerslider WP Glitching between transitions #1306585

    Hi,

    It is probably code related as it seems to work randomly with the current videos. We actually left only mp4 videos in the test slider to check if there is a problem with the other format, but the issue persists. Maybe an issue with the layer slider transition. It might work correctly with Slider Revolution, but it is not included in the theme by default.

    Best regards,
    Ismael

    in reply to: Direct link to masonry category #1306584

    Hi,

    Glad to know that it is now working.

    To select a default category, you can add this code above the other line with the trigger function.

    $("name_of_category_sort_button").trigger("click");
    

    Just replace the placeholder with the actual name.

    Best regards,
    Ismael

    Hi,


    @madsonic
    : Unfortunately, we cannot figure out why the scrolling is not working on some installations, while it works fine on others. It also works properly in the actual demo and in our local installation. If you do not want to install the plugin, deactivate it and add this code in the functions.php file instead.

    // include custom jQuery version
    function ava_include_custom_jquery() {
    
    	wp_deregister_script('jquery');
    	wp_enqueue_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js', array(), null, true);
    
    }
    add_action('wp_enqueue_scripts', 'ava_include_custom_jquery');
    

    Best regards,
    Ismael

    in reply to: Preventing Google Crawl Errors on Files and Folders #1306316

    Hi,

    Have you tried disallowing folders inside the /wp-content/themes/enfold/framework/php/ directory as suggested above? You can disallow most of the folders and files in that folder. All files and folders that have nothing to do with the front end can be disabled or disallowed in the robot.txt file.

    Example:

    
    Allow: /
    Disallow: /wp-admin/
    Disallow: /wp-content/plugins/
    Disallow: /wp-content/themes/enfold/framework/php/auto-updates
    Disallow: /wp-content/themes/enfold/framework/php/avia_shortcodes
    Disallow: /wp-content/themes/enfold/framework/php/avia_shortcodes
    Disallow: /wp-content/themes/enfold/framework/php/legacy
    Disallow: /wp-content/themes/enfold/config-templatebuilder/avia-template-builder
    Disallow: /feed/
    Disallow: */feed/
    

    Best regards,
    Ismael

    in reply to: Color section background image mobile resizing error #1306315

    Hi,

    Thank you for the screenshots.

    Have you tried setting the background-attachment to “scroll” on mobile view?

    @media only screen and (max-width: 989px) {
        .avia-bg-style-fixed {
            background-attachment: scroll !important;
        }
    }
    

    This is how the background should look when set to “scroll”.

    Screenshot: https://imgur.com/dbUFKtn

    Best regards,
    Ismael

    in reply to: Special header not displayed #1306309

    Hi,

    Great! Glad to know that it worked. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Posts in the left menu #1306308

    Hi,

    Thank you for the update.

    Try to add an angled bracket right before the “a” selector, or just replaced the css code with this.

    .bellows-submenu > .bellows-active.bellows-menu-item > a {
    	color: #ba659b !important;
    }
    

    Best regards,
    Ismael

Viewing 30 posts - 12,991 through 13,020 (of 66,065 total)