Forum Replies Created

Viewing 30 posts - 20,611 through 20,640 (of 67,479 total)
  • Author
    Posts
  • in reply to: wrong tooltip position in firefox #1154863

    Hi,

    Sorry for the late response. Since we can’t fix the issue yet, I guess we’ll have to close the thread for now. Please disable the login account and open a new thread if the issue becomes really troublesome to the site.

    Thank you for your patience.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We modified the code in the Quick CSS field a bit. It should work properly now. Please don’t forget to remove the cache prior to checking the page.

    .home .av_contact_privacy_check .input_checkbox_label strong {
      display: none;
      text-indent: -9999px;
    }
    
    html[lang="sl-SI"] .home .av_contact_privacy_check .input_checkbox_label strong.sl, html[lang="en-US"] .home .av_contact_privacy_check .input_checkbox_label strong.en, html[lang="it-IT"] .home .av_contact_privacy_check .input_checkbox_label strong.it {
      display: inline-block !important;
      font-weight: normal;
      text-indent: 0;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    According to the documentation, the error occurs because the togglers’ aria-controls attribute contains a value or id that doesn’t exists in the page. It’s supposed to correspond to a toggler content wrap, but the id value of that element doesn’t match with the value of the aria-controls attributes. Please try to edit the config-templatebuilder > aviashortcodes > toggles > toggles.php file, look for this code around line 623:

    $output .= '<div id="'.$toggle_atts['custom_id'].'-container" class="toggle_wrap '.$contentClass.'"  '.$toggle_init_open_style.'>';
    

    We have to remove “-container” in the id attribute value.

    $output .= '<div id="'.$toggle_atts['custom_id'].'" class="toggle_wrap '.$contentClass.'"  '.$toggle_init_open_style.'>';
    

    Best regards,
    Ismael

    in reply to: Flex column animation at the end of a page not triggering #1154846

    Hi,

    Sorry for the delay. Did you toggle the Performance > File Compression settings after doing the modification? This should regenerate the scripts and stylesheets and ensure that the changes are applied to the site immediately. And please don’t forget to purge the cache and remove the browser history before checking the page again.

    Best regards,
    Ismael

    in reply to: Burger menu error #1154845

    Hi,

    Sorry for the delay. The option is located under the “Change WordPress Defaults” section. Please check the screenshot below.

    // https://imgur.com/a/BYXe5Xz

    Make sure that it is disabled or grayed out.

    Best regards,
    Ismael

    in reply to: GDPR/Cookie bar: What does [av_privacy_video_embeds] do? #1154837

    Hi,

    Are you using the theme’s Video element from the advance layout builder? The “av_privacy_video_embeds” cookie when present will stop the Video element from loading or from playing directly in the site. The cookie is intended only for that element and for videos inside the sliders, so it will not check for videos added using a different embed method such as iframe or the default video shortcode.

    Best regards,
    Ismael

    in reply to: layout of playerlist using enfold & sportspress #1154835

    Hi,

    Sorry for the delay. Did you toggle the Performance > File compression settings after adding the code? Turning the option on or off should regenerate the stylesheets, and so the css modifications will be applied immediately.

    Best regards,
    Ismael

    in reply to: Adding captions underneath featured images on posts #1154834

    Hi,

    Sorry for the late response. Please try to set the “display” property of the “featured-image-description” container to “block” so that it takes the available spaces or make it full width.

    .featured-image-description {
       display: block;
       background: red;
       width: 100%;
       height: 30px;
       line-height: 30px;
       padding: 11px 23px;
    }

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. As suggested above, you can add the following snippet in the functions.php file to bring back the plugin’s breadcrumb option, including the JSON-LD markup.

    add_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0);
    

    Best regards,
    Ismael

    in reply to: Easy Slider – Slide direction #1154831

    Hi,

    @Bruno: The slideshow script is now located in the config-templatebuilder > aviashortcodes > slideshow > slideshow.js file as stated previously. Look for the code around line 1021. Please open a new thread/ticket if you need further assistance.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We added the following snippet in the functions.php file to re-enable the advance layout builder and layout meta box for the custom post types. We also removed the old version of the avia_post_nav function. Please replace it with the current one or use the avia_post_nav_entries filter to reverse the navigations.

    
    /**
     * Advanced Layout Builder Custom Post Types
     */
    add_filter('avf_alb_supported_post_types', function ($array) {
        $array[] = 'companies';
        $array[] = 'core_businesses';
        $array[] = 'case_study';
        return $array;
    }, 10, 1);
    
    function avf_metabox_layout_post_types_mod( array $supported_post_types )
    {
        $supported_post_types[] = 'companies';
        $supported_post_types[] = 'core_businesses';
        $supported_post_types[] = 'case_study';
        return $supported_post_types;
    }
    add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);
    

    Best regards,
    Ismael

    in reply to: Horizontal Gallery loop #1154823

    Hi,

    Sorry for the delay. You can load the script from the child theme directory by using the wp_enqueue_script function, but you have to dequeue or deregister the original script (avia-module-gallery-hor) first.

    // https://developer.wordpress.org/reference/functions/wp_enqueue_script/
    // https://developer.wordpress.org/reference/functions/wp_dequeue_script/

    Best regards,
    Ismael

    in reply to: Lightbox pop up funktioniert nicht #1154821

    Hi,

    Sorry for the delay. We can’t access the dashboard because of the errors. Please check the snippet in the functions.php file and make sure that “inline_popup_enabler” and “wp_footer” are wrapped in quotes. Or post the FTP details in the private field so that we can edit the snippet in the functions.php file.

    Best regards,
    Ismael

    in reply to: Custom header image for posts? #1154820

    Hi,

    Sorry for the delay. Just got back. Did you apply the changes in the older snippet? It’s supposed to hide the second slider in the default posts, and hide the first slider in the course posts.

    Best regards,
    Ismael

    in reply to: Lightbox popup with content #1154818

    Hi,

    Sorry for the delay. You should be able to replace the default text with a close (x) icon using this css code.

    .btn-default.mfp-close {
    	text-indent: -9999px;
            right: -100px;
            overflow: visible;
    }
    
    .btn-default.mfp-close::before {
    	content: 'x';
    	position: absolute;
    	top: 0;
    	left: 0;
    	color: blue;
    	width: 40px;
    	height: 40px;
    	font-size: 16px;
    	text-indent: 0;
    }

    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: Side Arrows on portfolio Items not shown #1154815

    Hey!

    Sorry for the late response. Can we have access to the dashboard? We would like to test the post navigation settings.

    Regards,
    Ismael

    in reply to: Reader View in Safari and Firefox Shows Cookie Texts #1154807

    Hey!

    Can we have access to the dashboard? We would like to modify the consent container and add the aria-hidden=’true’ to it. According to the following article, adding the attribute will help screen readers to identify elements that are not required in the reader view.

    // https://www.456bereastreet.com/archive/201205/hiding_visible_content_from_screen_readers_with_aria-hidden/

    Cheers!
    Ismael

    in reply to: Caching Issue #1154803

    Hi,

    Sorry for the delay. Just got back. Our developers said that it’s a cache issue and is currently looking for a solution.

    Am I missing a setting where I can activate ‘silently accepted on load’ or is that the same as

    That’s what the option is for, but for some reason it doesn’t work in your installation.

    Best regards,
    Ismael

    in reply to: Flex column animation at the end of a page not triggering #1153110

    Hey HITFighter,

    Thank you for the inquiry.

    It seems like animations will start only if you scroll past 50% of the section.

    Yes, that is correct. The waypoint script handles the execution of the animation on scroll. If you want to adjust the offset value so that the animation triggers once the element is visible in the view port, please edit the js > shortcodes.js file and look for the activate_waypoints function around line 217. Set the offset value from “80%” and “95%” to “-50%” so that the animation triggers when the element is visible at the bottom of the screen.

    Best regards,
    Ismael

    in reply to: slow on mobile #1153109

    Hey Photoart-Huebner,

    Thank you for the inquiry.

    Have you read the following articles? You should find a lot of recommendations about image optimization, site optimization in general, and hopefully achieve a perfect score on the testing tool, or at least make it better than the current state.

    // https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
    // https://kriesi.at/archives/4-key-wordpress-image-optimization-tips

    Is the site on a shared hosting? The “Reduce server response times (TTFB)” criteria took almost 2.02s, which means that the server where the site is deployed is not responding fast enough.

    Best regards,
    Ismael

    Hey vantagepointmg,

    Thank you for the inquiry.

    We didn’t really notice any issue with the slider in the page nor in the video clip. There is no image that pops up after the video. In which browser are you testing it?

    Best regards,
    Ismael

    in reply to: GDPR/Cookie bar: What does [av_privacy_video_embeds] do? #1153106

    Hi,

    Thank you for the update.

    Video embeds refer to the builder’s Video element within the theme. The cookie is only intended to prevent the Video element from loading, so it’s not going to work with videos added as an iframe or embedded using the default shortcode.

    Best regards,
    Ismael

    in reply to: Mailchimp signup #1153102

    Hi,

    Thank you for the clarification.

    You should be able to use the following css code to align the subscription fields horizontally.

    .avia-mailchimp-form fieldset {
    	display: flex;
    	justify-content: space-between;
    	flex-wrap: nowrap;
    	flex-direction: row;
    }
    
    .avia-mailchimp-form fieldset .form_element {
    	margin-right: 10px;
    }
    
    .avia-mailchimp-form fieldset .button {
    	top: 28px;
    	position: relative;
    }

    Please don’t forget to toggle the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Advanced Layout Builder und YOAST Probleme #1153093

    Hi,

    Thank you for the translation.

    The analysis tool is not compatible with the builder, but it will not affect how search engines crawl the page in the frontend, so the page should be indexed just fine as long as you’re following the standard SEO practices. It’s only that the analysis tool from Yoast currently doesn’t recognize or able to read the builder elements. One thing that should help is to check Yoast recommendations on every criteria in their analysis. It’s the circle with the question mark icon beside every criteria, which usually leads to a blog post with a list of recommendations on how a certain criteria can be satisfied.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How did you fix it? Sharing the solution will really help a lot of users who might be experiencing the same issue. If you don’t mind, please post the solution in the thread including any info that might help others fix the issue on their own. Thank you.

    Best regards,
    Ismael

    Hi,

    Sorry for the confusion. The sliders are rendering outside the main container, which is probably why it covers the sub menu container — and it seem to be duplicated. Please post the login details or the temporary login link in the private field so that we can check the page. For now, try to enable the builder’s debug mode and the shortcode parser, then edit the page and update it.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#shortcode-parser

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The Woocommerce breadcrumb is disabled by default because the theme has its own breadcrumb option. If you want to bring the plugins’s breadcrumb back, please follow @victoria‘s suggestion above, then go to the Enfold > Header > Header Layout and set the Header Title and Breadcrumbs to the second or fourth option to disable the default breadcrumb from the theme.

    Best regards,
    Ismael

    in reply to: Create a slide (texts) in top bar #1153027

    Hi,

    You’re welcome! We’ll close the thread now. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,


    @meanster99
    : Did you add the css code, then toggle the Performance > File Compression settings afterwards? Please create a new thread and provide a direct link to the page where the dropdown menu is located.

    Best regards,
    Ismael

    in reply to: Instagram widget won't update #1152979

    Hey andras,

    Thank you for the inquiry.

    The widget is not working right now because Instagram disabled database scraping without authentication, which is the method currently used in the widget. Unfortunately, the latest Instagram API is not available in the theme yet. Please try to use one of the following plugins temporarily.

    // https://wordpress.org/plugins/wp-instagram-feed-awplife/
    // https://wordpress.org/plugins/instagram-feed/

    Best regards,
    Ismael

Viewing 30 posts - 20,611 through 20,640 (of 67,479 total)