Forum Replies Created

Viewing 30 posts - 15,541 through 15,570 (of 66,114 total)
  • Author
    Posts
  • in reply to: Accessibility website #1254814

    Hi,

    It seems to be working properly now. Please remove the browser cache and purge the cache, or check the site on incognito mode. Please note that once the menu item is focused, there is a slight delay before the mega menu container fades in.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Make Mega Menu accessible #1254811

    Hi,

    You are welcome! Glad it is working. To change the focus style, please try to use this css code.

    #top #header .av-main-nav > li a:focus {
    	color: red !important;
            outline: 3px solid #333333!important;
    }
    

    Best regards,
    Ismael

    Hi,

    Did you disable or temporarily remove the archive-projects.php file? This might be necessary because the filter above changes the value of the $avia_config[‘blog_style’] in the template.

    Where can we see the projects archive page? Please post the login details (FTP and WP) in the private field so that we could check the page.

    Best regards,
    Ismael

    in reply to: remove past posts from blog element #1254800

    Hi,

    Thank you for the info.

    We might be able to preserve the taxonomy parameters or query by including it in the default getEvents function. Unfortunately, we have not tried this yet, so please let us know if it renders any results or not.

    
    /*
    * add a upcoming event filter to blog posts
    */
    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod_events', 10, 2);
    function avia_blog_post_query_mod_events( $query, $params ) {
        $eventquery = array('paged' => false, 'eventDisplay' => 'list', 'tax_query' => $query['tax_query']);
    
        $upcoming = Tribe__Events__Query::getEvents( $eventquery, true);
    
    	$include = array();
    
    	foreach($upcoming->posts as $key => $event) {
    		$include[] = $event->ID;
    	}
    
            $query['tax_query'] = array();
    
    	$query['post__in'] = $include;
    	return $query;
    }
    

    Or post the login details (FTP and WP) in the private field so that we could test the site.

    Best regards,
    Ismael

    in reply to: Pre-Filter Masonry and Magazine #1254799

    Hi,

    We still do not understand what you are requesting, or what you mean by prefilter but it sounds like a feature that will require significant amount of modification, something that is beyond the scope of support or something that we do not usually provide here in the forum. You may need to hire a freelance developer or contact our partner Codeable to help you with the customization.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: google map element vs google map element #1254798

    Hi,

    We cannot really answer that without first inspecting the issue, but our guess is that the map element does not inherit the width of the parent container because its width is set dynamically or internally, either with a script or with another custom css. If you could provide a staging version of the site displaying the issue, we would be happy to check it.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Link to a tab in tab section #1254797

    Hi,

    That is odd. It does work properly on our end, with or without the previous script that you created. Did you remove the browser cache or history, or hard refresh the page?

    Best regards,
    Ismael

    in reply to: content element does not work with web links #1254599

    Hi,

    Thank you for the inquiry.

    There are 3 working links (Guitare, Piano, Saxophone) in the Album item. Did you disable the borders for now? Please create a test page with borders enabled so that we could inspect the issue properly.

    Best regards,
    Ismael

    in reply to: Disable WordPress default sidebar #1254535

    Hey elfuego1340,

    Thank you for the inquiry.

    We could add this snippet in the functions.php file to disable the dummy or default widgets when the sidebar is empty.

    
    add_filter( 'avf_show_default_sidebars', 'avf_remove_default_sidebars', 10, 1);
    function avf_remove_default_sidebars( $show ) 
    {
    	return false;
    }
    

    Related thread:

    // https://kriesi.at/support/topic/where-can-i-change-the-default-sidebar/#post-417870

    Best regards,
    Ismael

    in reply to: Move product tags below product description #1254532

    Hi,

    A lot of existing sites have been built with this default layout, so we will probably not change it in the future. Those like you who likes this layout will have to use the suggested snippet above to move the locations of the product elements from one point to another. And regarding the Elementor builder, there are no plans yet on integrating it with ALB or making it compatible with the theme.

    Thank you for your understanding.

    Best regards,
    Ismael

    in reply to: Activation of burger menu not working properly in firefox #1254530

    Hi,

    It seems to work fine on Firefox Windows 10 — resizing the browser window correctly toggles or switch the menu from the default to mobile version, and vice versa. The screen resolution of the laptop is 1920x1080px.

    We did not say that the theme is not fully compatible with Firefox — it actually is, but there are certain browser feature that might be affecting the default behavior of the theme such as this one. Besides, common users usually do not check sites on a 4k resolution monitor and unless they are web developers like you are, they will probably not notice this minor issue unless they resize the browser manually, which is very unlikely.

    Best regards,
    Ismael

    in reply to: Duplicate Page – error when Preview #1254524

    Hi,

    Thank you for the inquiry.

    The issue seems to only happen on the home page — the preview works properly on a draft page that we recently created (see private field). Please try to save the content of the home page as template, delete the current page and create a new one using the saved template.

    Best regards,
    Ismael

    Hey Johannes Faupel,

    Thank you for the inquiry.

    The theme is not yet fully compatible with AMP or it does not have an AMP compatible markup, so you will have to use a third party plugin, premium or free, to convert the markup of the pages to AMP. There are free plugins available in the library, but we have not tested them thoroughly with the theme.

    // https://wordpress.org/plugins/amp/
    // https://wordpress.org/plugins/accelerated-mobile-pages/

    Best regards,
    Ismael

    in reply to: Convert Plus Plugin dont work with the Enfold Theme #1254383

    Hi,

    Thank you for the info.

    The required cookies (cp_id_1898c-conversion or cp-impression-added) to control the modal popup visibility only get added once the privacy cookies are accepted even when the Default Cookie Behavior is set to the first option as Mike observed. And for some reason, the av-cookies-user-silent-accept class name, which prevents the theme from removing all cookies in the site when the users have not accepted the cookies yet, is not found in the html tag.

    Please try to edit the enfold\js\avia-snippet-cookieconsent.js and comment out line 482 or this code, then reload page again and close or convert the pop up.

    remove_all_cookies( keep_cookies );
    

    Let us know if the required cookies gets saved if we temporarily remove this function.

    Is there a staging or development version of the site?

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    It turned out that that is how the option actually works — the theme will scan all elements that were added in the site, not just the current page, then load all assets in the frontend accordingly. Unfortunately, what you are asking will require modifications that are beyond the scope of support, so you might have to look for additional assistance from external sources.

    Best regards,
    Ismael

    in reply to: Cookie banner view – tablet landscape orientation #1254355

    Hi,

    Thank you for the info.

    1-2.) What happens when you adjust the max-width value from 479px to 1080px? Also, please make sure to remove the browser cache and to toggle or temporarily disable the Performance > File Compression settings after adding the code. The browser might be displaying the cached version of the page without the latest modification.

    Best regards,
    Ismael

    in reply to: Different burger menus on different pages #1254354

    Hi,

    Thank you for the update.

    The result is that the landing page menu isn’t visible on the page, the main menu isn’t visible either due to the visibility logic.

    Why did you have to create or register a new menu, and is the issue happening only on mobile view? We recommended the plugins above so that you could control the visibility of the menu items in the main menu, or the default menu from the theme. We did not know that you are planning to create or add an extra menu in the sidebar.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you install a cache plugin? It is possible that you are checking a cached version of the page with the old scripts, or settings. Where can we see the issue?

    Best regards,
    Ismael

    in reply to: menu and tab section #1254287

    Hi,

    We found a minor syntax error in the script and adjusted it a bit. It should be working properly now. Please purge the cache and remove the browser history prior to checking the page, or use incognito mode.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: breadcrumbs avia-breadcrumbs error #1254285

    Hi,

    Thank you for the info.

    We are still not sure where the first trail in the breadcrumb comes from but we managed to remove it using this filter in the functions.php file.

    add_filter( 'avia_breadcrumbs_trail', 'avf_remove_element_from_trail', 50, 2 );
    function avf_remove_element_from_trail( $trail, $args ) {
    	if ( is_single() ) {
    		unset ($trail[1]);
    	}
    	return $trail;
    }

    This filter should only work or take effect in the posts.

    Best regards,
    Ismael

    in reply to: Cookie Google Analytics enabled by default #1254271

    Hi,

    Thank you for the info.

    By GDPR this button should be with COOKIES DISABLED and the user should press it to enabled.

    The Privacy & Cookies > Cookie Handling > Default Cookie Behaviour should be set to the third option if you want the externals scripts or features ( Google maps, recaptcha, analytics etc) to be disabled by default, only essential cookies will be enabled.

    For the checkbox, you could use html tags in the Form Element Label field to create the link manually.

    Best regards,
    Ismael

    in reply to: Integration of Toolset into Enfold theme #1254261

    Hi,


    @alemita
    : Where can we see the issue? Did you add the filters that we provided in the previous thread? Please open a new thread and post the details in the private field so that we could check the site. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Customer header with images for different pages #1254259

    Hi,

    Thank you for the update.

    we could place the succeeding content under the first section by increasing its z-index property. Please edit or replace the previous css code with the following.

    #av_section_1 {
            z-index: 1000;
    	position: fixed;
    }

    Best regards,
    Ismael

    in reply to: Accessibility website #1254256

    Hi,

    Thank you for the update.

    The script modification in the previous thread will only work on the default drop down, but not on mega menus. For the mega menu, please check the modification in the following thread.

    // https://kriesi.at/support/topic/make-mega-menu-accessible/#post-1253157

    Please do not forget to toggle or temporarily disable the Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Background video in Color Section does not appear #1254254

    Hi,

    Did you modify anything in the functions.php file? We couldn’t check it because the Appearance > Editor panel is not accessible. Please post the FTP details in the private field so that we could check the files directly.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Enfold masonry media description #1254248

    Hi,

    You are welcome! Thank you for the additional info. Please do not hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The $context value in the avf_blog_style filter is set to ‘archive’ by default on archive or category templates. Did you change it to “archive-projects”? Instead of checking for the value of the $context, try to use the is_post_type_archive function as suggested above.

    add_filter('avf_blog_style','avia_change_category_blog_layout_2', 10, 2); 
    function avia_change_category_blog_layout_2($layout, $context){
       if(is_post_type_archive("projects")) $layout = 'blog-grid';
       return $layout;
    }
    

    You may need to remove or temporarily disable the archive-projects.php file.

    Best regards,
    Ismael

    in reply to: Google Recaptacha error #1254245

    Hi,

    Thank you for the update.

    This is what we get whenever we use the form on Chrome Windows 10.

    Screenshot: https://imgur.com/a/9Ple7rn

    Did you install any browser extension? Please try to disable those extensions, or try to test the form on a different device.

    Best regards,
    Ismael

    in reply to: Color section: Fixed image – issues #1253951

    Hi,

    Thank you for the info.

    Did you set the slider to use the original image without scaling? The Slideshow Image and Video Size settings is inside the Styling > Slideshow Settings toggle. Set it to the first option (No Scaling).

    Best regards,
    Ismael

    in reply to: Thumbnails im Footer sind viel zu groß #1253948

    Hi,

    There are other available sizes in the drop down from which you could choose, but you might have to resize it so that it falls to your desired dimension. You can find the registered thumbnails in the functions.php file starting from line 178, or you could install the following plugin and adjust the thumbnails in the Settings > Media panel.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

Viewing 30 posts - 15,541 through 15,570 (of 66,114 total)