Forum Replies Created

Viewing 30 posts - 31 through 60 (of 3,744 total)
  • Author
    Posts
  • in reply to: how to replace standard icons #1477763

    Hey Guenter,

    wp-media-library svg are identified by attachment ID (which is unique) – title of svg which is used as name can be changed which would lead to loosing the icon. If you check the shortcode of e.g. ALB icon you will see that the ID is also used.

    For other svg iconsets you must use the name – as it is the name of the svg file it will never change.

    Best regards,
    Günter

    in reply to: Timeline Element improvements #1477479

    Hi Tim,

    Thanks.

    Could reproduce it and added a fix in next release 7.0.

    Best regards,
    Günter

    in reply to: Timeline Element improvements #1477316

    Hi Tim,

    Sorry, but it still does not work. I tried both e-mail and supplied username.

    Best regards,
    Günter

    • This reply was modified 5 months, 3 weeks ago by Günter.
    in reply to: Responsive Mode | Unfold – Fold Issue #1477259

    Hi,


    @mammamilla


    @Blatze

    Thank you for reporting this. It is bug and will be fixed in next release 7.0

    Enjoy the theme and have a great day.

    Best regards,
    Günter

    in reply to: Timeline Element improvements #1477236

    Hi tim,

    Thank you for the login – but it does not work. See Private Content.

    Best regards,
    Günter

    Hi,

    Hope you are also doing well.

    Thank you for suggesting the fix – I added it to next release 7.0

    Have a great day and enjoy the theme.

    Best regards,
    Günter

    in reply to: Possible bug with img tags being parsed #1476958

    Hi Tim,

    If the img tag disappears in database content (db field post_content and also in metadata ‘_aviaLayoutBuilderCleanData’) means that these fields are updated. I do not know a situation where Enfold itself updates this when a page is loaded in frontend. This happens when a post gets updated from backend.

    object cache in my opinion could only be a problem when this happens on saving/updateing a page – but not when it is loaded in frontend. In this case the content is only read.

    Is the page after the image disappeared an older version of the page before you added the image ? Then it could be that your hoster restored some older db entries from a backup ?

    Best regards,
    Günter

    in reply to: Timeline Element improvements #1476956

    Hey Tim,

    Sorry for the late reply.

    I cannot reproduce this on a local install. Do you have a staging site where you can reproduce it and I can have access to check your settings for the element ?

    Best regards,
    Günter

    Hey Jan,

    I did not test it – but I have the following idea:

    In …\enfold\config-templatebuilder\avia-shortcodes\blog\blog.php around line 861 you find filter:

    
    $query = apply_filters( 'avia_blog_post_query', $query, $params );
    

    In global variable $avia_config[‘posts_on_current_page’] you have all ID’s of already queried posts.

    $query[‘post__not_in’] can be used to skip already queried posts:

    
    $query['post__not_in'] = isset( $query['post__not_in'] ) ? array_merge( $query['post__not_in'], $avia_config['posts_on_current_page'] ) : $avia_config['posts_on_current_page'];
    

    Can you give this a try please?

    Best regards,
    Günter

    in reply to: Bug – Abuse of /?avia_extended_shop_select= queries #1474836

    Hi,

    There will be a fix in next release 6.0.9.

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1474110

    Hi @EZWebdesign,

    Thank you! We’ll add it to the core in the upcoming version.

    Merry XMas and a happy New Year !!

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1473919

    Hi @BigBatT,

    Thank you! We’ll add the Italian language files to the core in the upcoming version as well.

    Merry Christmas and a Happy New Year !!

    Best regards,
    Günter

    in reply to: Code Element WPML issue #1473491

    Hi,

    Did you already try to contact WPML support? Translations are handled by WPML and to me it sounds that WPML does not translate the codeblock element correctly.

    Best regards,
    Günter

    in reply to: Version 6.0.7-dev ? #1472730

    Hi,

    Best regards,
    Günter

    in reply to: Version 6.0.7-dev ? #1472724

    Hi,

    Final implementation:

    
    	function avia_add_metadata_to_body_class( array $body_classes )
    	{
    		global $post;
    
    		if( ! $post instanceof WP_Post )
    		{
    			return $body_classes;
    		}
    
    		$classes = [];
    
    		if( is_singular() )
    		{
    			$classes[] = 'post-type-' . sanitize_html_class( $post->post_type );
    
    			$taxonomies = get_object_taxonomies( $post->post_type, 'objects' );
    
    			foreach( $taxonomies as $taxonomy )
    			{
    				$terms = get_the_terms( $post->ID, $taxonomy->name );
    
    				if( ! is_wp_error( $terms ) && ! empty( $terms ) )
    				{
    					foreach( $terms as $term )
    					{
    						$classes[] = sanitize_html_class( $taxonomy->name ) . '-' . sanitize_html_class( $term->slug );
    					}
    				}
    			}
    		}
    
    		/**
    		 * @since 6.0.8
    		 * @param array $classes
    		 * @return array
    		 */
    		$classes = apply_filters( 'avf_metadata_to_body_class', $classes );
    
    		return array_merge( $body_classes, $classes );
    	}
    
    	add_filter( 'body_class', 'avia_add_metadata_to_body_class', 10, 1 );
    

    Best regards,
    Günter

    in reply to: Version 6.0.7-dev ? #1472722

    Hi,

    See private.

    Best regards,
    Günter

    in reply to: Version 6.0.7-dev ? #1472714

    Hi,

    See private.

    Best regards,
    Günter

    in reply to: Version 6.0.7-dev ? #1472707

    Hey Guenter,

    Yes – I forgot to remove the -dev.

    It is the latest production version.
    I apologize for this.

    Best regards,
    Günter

    Hi,

    Thank you for sharing this.

    I added it to core for next release 6.0.8.

    We highly appreciate your help.

    Best regards,
    Günter

    in reply to: CVE-2022-48285 on jszip 3.6.0 #1469608

    Hi,

    We tried, but could not update the js file to a later version – it had seemed to be buggy and using the methods to control the animation like play, pause, .. did not work as it should. So we left it unchanged.

    Checking the player today (https://developers.lottiefiles.com/) the implementation has completly changed.

    We will add it to our dev repo to consider updateing the element – but we have no ETA for it yet.

    Best regards,
    Günter

    in reply to: Barrierefreiheitsstärkungsgesetz #1469169

    Hey Ulf,

    Danke für diese Info.

    Wir werden diesem Thema höchste Priorität geben.

    Viel Freude mit Enfold und einen schönen Tag.

    Liebe Grüsse aus Wien,
    Günter

    in reply to: Please contribute and translate Enfold #1468915

    Hi @BigBatT,

    Thanks for your contributions!

    Added it to core. Have a great day.

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468579

    Hi,

    Sorry to say – I’ve tried the last days to find a solution – but I was not able to find one without the risk of breaking existing sites and elements.

    Best regards,
    Günter

    in reply to: Custom Slider Element only lets you upload one photo. #1468542

    Hi,

    Please check https://kriesi.at/documentation/enfold/custom-element-templates/#custom-elements-advanced-option-custom-elements-for-subitems

    and try to add:

    
    add_theme_support( 'show_advanced_custom_element_options' );
    

    I think this should help.

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468275

    Hi,

    I added a fix to solve searchbar with #toggle id:

    Please replace C:\xampp\htdocs\wp56\wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.js

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_6_0_4/toggles/toggles.js
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_6_0_4/toggles/toggles.min.js

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468196

    Hi,

    I could reproduce it now – I will add a fix to react correctly when the address bar hash changes.

    But I think this will not solve the problem from the initial topic.
    I will let you know here, when I have the fix.

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468179

    Hi,

    I could reproduce it once only.

    I readded the

    
    scroll_to_viewport();
    

    on the demo page. This seems to fix the problem.

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468173

    Hi,

    I checked the clean version with FF (also in incognito mode) and Chrome on a Windows PC. and on an android handy with chrome.

    I cannot reproduce the problem.

    Can you please copy the shortcode of page with the accordion of the original site to the test site to check ??
    You can enable the debug mode via theme option “Layout Builder” -> “Show advanced options” -> “Debug Mode (Backend Only)”.
    Insert the shortcodes into the cleared debug input field and save the page.

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468118

    Hi,

    Thanks for the credentials.

    I recognise one thing:

    – being logged in it seems to scroll to the right place (besides that the heading is covered by admin bar)
    – not logged in (in incognito window) it seems to scroll to top of the toggle section

    e.g. use “Total number of Pendent Lights:” scrolls to “Re-wiring Cost Calculator” headline in incognito, but correctly to content of toggle when logged in

    Before I digg deeper – does this give you any hint to your customizations ???

    Best regards,
    Günter

    in reply to: toggle id’s in accordian #1468109

    Hey Thomas,

    Sorry for the late reply.

    I think the problem is in ..\enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.js around line 92:

    
    allContent.not(content).slideUp( slideSpeed, function()
    {
    	$(this).removeClass('active_tc').attr({style:''});
    	scroll_to_viewport();
    });
    

    Can you try to remove

    
    scroll_to_viewport();
    

    and check if this helps.

    If not, can you give us admin access to a staging site where we can reproduce the problem (and we can modify this file to debug further) ??

    Best regards,
    Günter

Viewing 30 posts - 31 through 60 (of 3,744 total)