Forum Replies Created

Viewing 30 posts - 751 through 780 (of 3,704 total)
  • Author
    Posts
  • Hi phouthuijzen,


    @phouthuijzen

    There had been a invalid character at the beginning of styles.css – opening it in WP theme editor showed a red point. Removing this it is working now.

    Best regards,
    Günter

    in reply to: Some more accessibility tweaks #1288024

    Hey THP,

    Thanks for reporting this.

    I checked all elements that use class=’avia-slideshow-arrows’ and added

    aria-hidden="true" tabindex="-1"

    I hope this fixes the problems. Will be in next release 4.8.2.

    If you encounter any more problems let us know please.
    Have a nice weekend.

    Best regards,
    Günter

    in reply to: Images with link #1288013

    Hey Guenter,

    If I follow your idea it would be necessary to extend the metadata of an image (in WP media popup attachment details sidebar) with:

    • Lightbox Title
    • Lightbox Description

    and add the metadata info to all ALB img tags (like alt, title, caption, desc, lightbox-title, lightbox-desc) ?

    Best regards,
    Günter

    in reply to: customized lightbox markup #1287983

    Hey Guenter,

    Sorry for the late reply – but I was tagged to this yesterday.

    I did not test, but you can try to add class “noLightbox” to the image.

    This should exclude the image from our default binding to magnificPopup and you can add your magnificPopup.

    Best regards,
    Günter

    in reply to: image alt in masonry gallery #1287785

    Hi!

    As mentioned above – background images have no alt.attribute.

    Please check the following articles:

    http://christianheilmann.com/2009/02/25/so-how-do-you-add-alternative-text-to-background-images/
    https://stackoverflow.com/questions/4216035/css-background-image-alt-attribute
    https://stackoverflow.com/questions/48913759/how-to-add-alt-text-to-background-images-making-background-images-accessible

    There are workarounds, but they increase the size of the page – which might also stand in opposite of having small loading times.

    I have opened an issue in our dev repo and we will discuss it.

    Best regards,
    Günter

    in reply to: Columns broken after update to 4.8 #1286483

    Hi,

    Sorry once again for the troubles.

    Glad we could help you fix the problem.

    Have a great day and enjoy the theme. Feel free to come back when you need further assistance.

    Best regards,
    Günter

    Hi,


    @jaripp
    @M1000000

    Thanks for your interest in the new feature and reporting this.

    Checking the code I found an unnecessary query for the frontend. Removing this the amount of queries dropped for me on a testpage.

    As a CET is stored in a post, there is a little overhead, depending on the amount of different CET used on a page ( we cache already queried CET ).

    If you want to check:

    Replace enfold\config-templatebuilder\avia-template-builder\php\element-templates.class.php with the content of:

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/element-templates.class.php

    If you use WPML you also need to replace enfold\config-wpml\class-avia-wpml.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_8_1/class-avia-wpml.php

    Do not forget to make a backup of the original files for a fallback and clear server and browser cache.

    Best regards,
    Günter

    in reply to: What has been changed on 4.8.1 #1286404

    Hi,

    With 4.8 there were a lot of changes necessary concerning the custom elements – Hope you managed your changes.

    I will close this topic – have a nice day.

    Best regards,
    Günter

    in reply to: What has been changed on 4.8.1 #1286402

    Hi,

    With 4.8 there were a lot of changes necessary concerning the custom elements – Hope you managed your changes.

    I will close this topic – have a nice day.

    Best regards,
    Günter

    in reply to: Mysterious Appearing #1286396

    Hey Lee,

    Sorry for the problems.

    Please update to 4.8.1 released this weekend, open the page affected, click the first element on this page for editing, save the element and update the page.

    Clear server and browser cache. This should fix the problem.

    Best regards,
    Günter

    Hey waingroove,

    Thank you for using Enfold. Please update to the latest version 4.8.1. This should fix the problem.

    Best regards,
    Günter

    in reply to: Tabs empty after Enfold 4.8 update #1286195

    Hi,

    Thank you for using Enfold and the feedback to the new feature custom elements.

    I opened a few pages in backend (CET enabled) but could not find one with a tab and opening a modal popup on a page worked.

    Can you please provide me a link to a page where I can see the problem. If you add the link in Private Content it is only visible to moderators.

    If it is possible please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor

    This lets you view the shortcode for all the page elements.

    Best regards,
    Günter

    in reply to: Pls explain Version 4.8 WPML changes #1286191

    Hey Rustybucket,

    tweak: ensure that WPML language theme options are in sync with main options

    As Enfold is growing and new theme options are added we recognised that the theme options in a different language do not recognise the new options which might cause undefined index notices or unwanted behaviour. This was fixed now.

    added: WPML global theme options support across all languages

    For the new custom elements we needed to set the options globally – means across all languages. This was not possible before. You had to set the options for each language seperate – which does not make sense. Existing options are not affected.

    Best regards,
    Günter

    in reply to: What has been changed on 4.8.1 #1286189

    Hey Guenter!

    4.8.1 is only a hotfix release.

    The only important change is in config-templatebuilder/avia-template-builder/php/shortcode-helper.class.php line 584:

    $sc .= "\n";

    was changed back to

    $sc .= "\n\n";

    as prior to 4.8.

    This caused additional br tags between ALB elements that broke layout.

    Regards,
    Günter

    Hi,

    Best regards,
    Günter

    Hi,

    Best regards,
    Günter

    Hi,

    Best regards,
    Günter

    Hi,

    Please see private

    Best regards,
    Günter

    in reply to: Completely replace breadcrumbs #1284266

    Hi,

    Thanks for this feedback, I changed it to avf_breadcrumbs_external.

    Best regards,
    Günter

    in reply to: Completely replace breadcrumbs #1284086

    Hi,

    In this filter you can call your function and return your result string or an empty string (if you do not like a breadcrumb or handle output by yourself).
    If you return boolean false, than our logic will proceed.

    You can use any logic inside the filter you need to decide what to do.

    The frame would look like (put e.g. in functions.php of your child theme):

    
    function my_breadcrumbs_shortcut( $breadcrumb, $args )
    {
    	$breadcrumb = your_breadcrumb_function( $args );
    	
    	return $breadcrumb;
    }
    
    add_filter( 'avf_breadcrumbs_shortcut', 'my_breadcrumbs_shortcut', 10, 2 );
    

    If you need more help with using or adding the filter let us know and we can add it for you.

    Best regards,
    Günter

    in reply to: Bug: superfluous character "<" #1284081

    Hey Mischa,

    Thank you for using Enfold – and thanks for reporting this.

    It is fixed in the next update.

    Enjoy the theme and have a great day.

    Feel free to come back whenever you need any assistance.

    Best regards,
    Günter

    in reply to: Completely replace breadcrumbs #1283729

    Hi,

    I added a filter for the next release at the beginning of the function:

    
    function avia_breadcrumbs( $args = array() ) 
    {
    	global $wp_query, $wp_rewrite;
    
    	/**
    	 * Allow to shortcut breadcrumb trail. Return anything then false to shortcut.
    	 * 
    	 * @since 4.8
    	 * @param boolean $value
    	 * @param array $args
    	 * @return string|false
    	 */
    	$breadcrumb_shortcut = apply_filters( 'avf_breadcrumbs_shortcut', false, $args );
    	if( false !== $breadcrumb_shortcut )
    	{
    		return $breadcrumb_shortcut;
    	}
    
    ........
    
    
    

    This is more flexible in case we move this function in a class.

    Best regards,
    Günter

    in reply to: Google Maps Double-click / Opt-in #1275504

    Hey BelIblis,

    Thank you for reporting this.

    I added an issue to our dev repo to be reviewed for one of the next releases.

    Best regards,
    Günter

    in reply to: Yoast Schema Integration #1275503

    Hey THP,

    Thank you for this input.

    I opened an issue in our dev repo and we will have a look how it is possible to integrate this.

    Best regards,
    Günter

    in reply to: Cross site scripting vulnerability with pagination #1275498

    Hi,

    Digging deeper: this seems to be a problem in WP core.

    We are using the standart WP function ‘get_pagenum_link’ to get and modify the result query string for paging. Adding your string above to a URI WP returns the injection unmodified from this function.

    In my opinion this should be handled by WP. Maybe you can try to open a ticket at WordPress.org and report it there?

    Best regards,
    Günter

    in reply to: Cross site scripting vulnerability with pagination #1275482

    Hi,

    Sorry for the late reply and thanks for the links.

    With the next version we added a fix for injecting paging reported in another similar case. Can you please try if this fixes your case also.

    In framework\php\function-set-avia-frontend.php around line 1401 (in function avia_which_archive() ) you find:

    
    		if (isset($_GET['paged']) && !empty($_GET['paged']))
    		{
    			$output .= ' ('.__('Page','avia_framework').' '.$_GET['paged'].')';
    		}
    
    
    

    Replace these lines with:

    
    		if( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) )
    		{
    			//	avoid xss vulnerability - e.g. injection of code
    			$output .= is_numeric( $_GET['paged'] ) ? ' (' . __( 'Page', 'avia_framework' ) . ' ' . $_GET['paged'] . ')' : '';
    		}
    
    

    Do not forget to make a backup of the originla file for a fallback and clear server and browser cache.
    If you want us to make the changes please provide WP admin and FTP access.

    Best regards,
    Günter

    in reply to: Cross site scripting vulnerability with pagination #1274665

    Hey Tobias,

    Thank you for using Enfold and reporting this.

    Could you please tell us the steps to reproduce this – so we can check?

    Normally WP should filter the query strings as far as I’m concerned – but I’m not a security expert.

    Best regards,
    Günter

    in reply to: Kauf ihrer Theme #1269898

    Hey Detlef Lehmann,

    Danke für Ihr Interesse.

    Eine reguläre Lizenz von Enfold können Sie nur hier beziehen:

    https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990

    Es gibt auch eine deutsche Übersetzung inkludiert, die von Usern gemacht werden.
    Wir würden uns freuen, wenn Sie sich für Enfold entscheiden.
    Es ist intuitiv zu bedienen und kann leicht angepasst werden. Bei Fragen stehen wir im Forum gerne zur Verfügung.

    Ich wünsche auch Ihnen alles Gute für 2021.

    Best regards,
    Günter

    in reply to: No request for the theme but only best wishes #1269752

    Hey Luigi,

    Thanks a lot.

    Our team also wishes you merry christmas all the best for the next year. Take care of you and stay healthy.

    Best regards,
    Günter

    in reply to: WooCommerce image sizes #1259564

    Hi,

    We added an option to Product Grid and Product Slider where you can choose the image size.
    Should be in next update. Please check the changelog.

    Best regards,
    Günter

Viewing 30 posts - 751 through 780 (of 3,704 total)