Forum Replies Created

Viewing 30 posts - 271 through 300 (of 3,704 total)
  • Author
    Posts
  • Hi,

    Danke @Guenni007.

    In WP Armour Extended (Bezahlversion) ist Enfold aufgelistet (siehe Link oben). Bezüglich der false positiv Ergebnisse sollte man mit dem Support des plugins abklären, ob es etwas mit Enfold zu tun hat.

    Falls ja und sie ein Filter benötigen (oder etwas anderes), können wir das gerne einbauen.

    Leider haben wir so weit ich weiss keinen Kontakt zu den Autoren – werde das aber noch abklären mit unserem Team.

    Best regards,
    Günter

    Hi,

    Thank you for sharing the solution.

    I added it to our compatibility class Avia_Relevanssi for next release 5.5

    In case you want to check it please replace enfold\config-relevanssi\class-avia-relevanssi.php with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_4_1/config-relevanssi/class-avia-relevanssi.php

    Best regards,
    Günter

    in reply to: Overview of all Enfold built-in contact forms #1398799

    Hey Marcel,

    You can search for the shortcode of the ALB contact form element in the database in table wp_posts -> post_content

    Look for [av_contact or [/av_contact

    Best regards,
    Günter

    in reply to: WooCommerce Category Styling #1398797

    Hi,

    Thanks for clarify. I did not check that it is the shop banner.

    For the layout of the banner check function avia_woocommerce_parallax_banner in the config file.

    And/or action ava_after_main_container and the 2 handlers
    avia_woocommerce_big_cat_banner
    avia_woocommerce_shop_banner

    Breadcrumb:

    You probably will need to modify:

    action woocommerce_before_main_content – handler avia_woocommerce_before_main_content

    and create your own breadcrumbs using action ava_after_main_container before shop banner
    using function avia_title()

    I hope this helps you.

    Best regards,
    Günter

    in reply to: WooCommerce Category Styling #1398645

    Hey Tim,

    I’ve uploaded a pdf with a screenshot how I see your link.

    Images have scrset and sizes.
    I’m a bit confused.

    If you want to make changes to config-woocommerce/config.php file you should stick to hooks and filters or define the functions you want to modify before our config file is loaded.
    Most of the functions are wraped in

    
    if( ! function_exists( 'xxxx' ) )
    {
    ......
    }
    

    To modify the complete file is not recommended as it might change at any time, when we find a bug or extend WC support.

    Best regards,
    Günter

    in reply to: Full Width Easy Slider Video Issue #1398639

    Hi Tim,
    Please see private field.

    Best regards,
    Günter

    in reply to: Full Width Easy Slider Video Issue #1398225

    Hi,

    I added the following to bottom of quick CSS:

    
    .av-video-service-youtube.av-video-events-bound .av-click-overlay{
    	display: none;		/*	@since x.x.x  In fullwidth easy slider preview controls are blocked after user starts video		*/
    }
    

    Seems to work now.

    Will become part of next release.

    Best regards,
    Günter

    in reply to: Lightbox swipe feature request & Gallery navigation #1398104

    Hi,


    @Guenni007

    thanks for this input.
    Added it to our dev repo (maybe already in next release).

    Best regards,
    Günter

    in reply to: Lightbox swipe feature request & Gallery navigation #1397955

    Hi Tim,

    ALB Gallery element

    I’m checking it for next release.


    @Guenni007

    only the closest is decisive

    Yes, the last value assigned to $condition is used, in your case

    
    $condition  = ( isset( $options['header_position'] ) && $options['header_position'] == 'header_top' );
    

    Best regards,
    Günter

    in reply to: Lightbox swipe feature request & Gallery navigation #1397941

    Hi,

    I forgot to mention, that the fix will be part of next release 4.5.2.

    So you can actually replace the 2 original files in ..\enfold\js\…

    No need to copy to child theme.

    Script from Yigit is not correct, as it loads the same code twice (.min is minified only).



    @Guenni007

    Your code should work. Depending on theme option either the normal version of the file or the .min. version is loaded.
    If you do not upload a .min. version you can skip {$min_js} (or set it to ” hardcoded).

    Best regards,
    Günter

    in reply to: Lightbox swipe feature request & Gallery navigation #1397910

    Hi,

    Update for swipe feature:

    Please replace enfold\js\avia-snippet-lightbox.js and enfold\js\avia-snippet-lightbox.min.js

    with

    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_4_1/js/avia-snippet-lightbox.js
    https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_4_1/js/avia-snippet-lightbox.min.js

    Do not forget to clear server and browser cache (or toggle theme options if using merged js) and make a backup of the files for a fallback.

    Best regards,
    Günter

    Hi,

    If you do not need the WP block editor (= Gutenberg) Enfold has an integrated option to disable it without the need of any plugin:

    Theme Options Enfold -> Theme Options tab -> Select Your Editor at bottom.

    And if you want to switch depending on page/post you edit you can also do that with

    
    add_theme_support( 'avia_gutenberg_post_type_support' );
    

    This adds additional options on options page and links to open a page/post

    Best regards,
    Günter

    in reply to: Failed to initialize plugin: avia_builder_button #1397325

    Hi,

    I uploaded our latest dev version that fixes a problem with Google Maps.

    There is a problem with your server sending js files to client. It adds characters that cause syntax errors. These characters are not in the original files.

    I switched theme option to load minified files – and that works. Switching back to unminified again causes the error described above.

    To check with your hoster:

    File themes\enfold\framework\js\avia_advanced_form_elements.js line 811:

    This is what is rendered to browser:

    if(the_value != “” && the_value != null && baseurl) {Â the_value = the_value.replace(‘{{AVIA_BASE_URL}}’, baseurl); }

    instead of

    if(the_value != “” && the_value != null && baseurl) { the_value = the_value.replace(‘{{AVIA_BASE_URL}}’, baseurl); }

    And the same happens to other js files also.

    If you correct it with theme file editor (backspace and add blank) on your server and save the js file the additional character is no longer present.

    I hope this helps your hoster to solve/locate the problem.

    Best regards,
    Günter

    in reply to: 5.4 dev 2 ? #1394880

    Hey Guenter,

    Thanks for pointing at this.

    We missed to update it. Kriesi will upload a correct version.

    Best regards,
    Günter

    in reply to: WooCommerce question #1394768

    Hey Tim,

    Sorry for the late reply. Please see private field.

    Best regards,
    Günter

    in reply to: Please contribute and translate Enfold #1394751

    Hi Roger,


    @EZWebdesign

    Thank you very much. I added it to core.
    Have a great day.

    Best regards,
    Günter

    in reply to: blog alb and full content – does not work #1393943

    Hi,

    Glad we could help.

    Have a great day – I will close this topic.

    Best regards,
    Günter

    in reply to: blog alb and full content – does not work #1393884

    Hi,

    I added a working filter to functions.php in your child theme.

    You also find it here:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20Elements/Blog%20Posts/avf_blog_content_in_loop.php

    But please keep in mind that displaying ALB content might break the layout.
    We had users who faced this problem, thats why we removed it by default.

    We will add it to the description of the option.

    Best regards,
    Günter

    in reply to: blog alb and full content – does not work #1378886

    Hi,

    I understand the intention, but you have the risk of nested or circular called shortcodes which leads into endless loops or broken layout.
    That’s why we added a check for ALB Posts and force ‘excerpt_read_more’ for these.

    see includes\loop-index.php line 69.

    Good news is that there is filter at line 86:

    
    $blog_content = apply_filters( 'avf_blog_content_in_loop', $blog_content, $current_post, $blog_style, $blog_global_style );
    

    You can return ‘content’ to show the complete post content.
    But be sure to add logic to check where you want to change it.

    Best regards,
    Günter

    in reply to: blog alb and full content – does not work #1378663

    Hey Guenter,

    This is the intended and default Enfold behavior that in a blog content created with ALB is not executed.
    If you use a standard editor (even with shortcode) it is displayed correctly.

    see loop-index line 130 ff.

    If you really want to display the executed shortcode you can use the filter (line 130):

    
    $current_post['content'] = apply_filters( 'avf_the_content', '', 'loop_index' );
    

    and return whatever you like.

    Best regards,
    Günter

    Hey dominictschupp,

    Thank you for using Enfold.

    Very sorry for this – there happened a small typo error in the latest version.
    Will be fixed in next release 5.4

    In file enfold\includes\admin\register-backend-advanced-styles.php around line 452 you find:

    
    	'group' 		=> __( 'Main Menu (Icon )', 'avia_framework' ),
    

    Replace this line with:

    
    	'group' 		=> __( 'Main Menu (Icon)', 'avia_framework' ),
    

    Do not forget to make a backup of the original file for a fallback and clear server and browser cache.
    If you need help let us know please and we can do it for you.

    Best regards,
    Günter

    in reply to: 5.3 update folder locations #1377573

    Hi Thomas,

    Glad I could help you.

    Also happy New Year.

    Best regards,
    Günter

    in reply to: 5.3 update folder locations #1377508

    Hey Thomas,

    As the fonts have entries in database, I decided to leave existing sites untouched. The chance of breaking sites is too high.

    To move to new locations you need to delete all the fonts (icon and type fonts) and re-upload them again.
    I was aware that this is not user friendly but stability has priority.

    You can do this any time you like – there is no need to hurry.

    Best regards,
    Günter

    in reply to: Custom fonts and CDN #1377380

    Hi,

    Yes I think it should. Using the option “Performance -> Show Advanced -> Custom Font Loading Source” (5.4) will supress the output of @font-face in dynamic css file.
    So if you copy the files to your CDN and handle the @font-face CSS rule by yourselfe it should work.

    Best regards,
    Günter

    in reply to: Bug: CDN Use and fonts loading twice #1377288

    Hey Thomas,

    Thank you for this input.

    With next release 5.4 I decided to add a new option:

    “Performance -> Show Advanced -> Custom Font Loading Source”

    If you select to load from CDN server output of @font-face is suppressed in dynamic CSS file (only a comment line about that is added and can be seen when WP_DEBUG = true).

    Meanwhile to test in file framework\php\font-management\class-avia-type-fonts.php function handler_create_dynamic_stylesheet() around line 1177 you find:

    
    			if( ! in_array( $context, array( 'before' ) ) )
    			{
    				return $output;
    			}
    

    after this line add:

    
    return $output;
    

    Now you can use your custom CSS for @font-face.

    Hope this helps with the CDN problem.

    Best regards,
    Günter

    Hi,

    Yes, changes are in 5.3.1

    Best regards,
    Günter

    Hi,

    Was a CSS problem. I changed the classes to return and now you can use any value you like:

    https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20Elements/Animations/avf_alb_element_animation.php

    what is the default offset if i do not influence the setting?

    ‘bottom-in-view’

    no center logo

    check config-templatebuilder\avia-shortcodes\icon_circles\icon_circles.css line 52ff.

    Best regards,
    Günter

    Hey kisys,

    Thank you for reporting this.

    You have enabled WP_DEBUG on that install.

    If you disable it, this error will disappear.
    As a second hotfix you can remove the two following lines in enfold\config-templatebuilder\avia-template-builder\php\base-classes\class-object-properties.php

    
    throw new \InvalidArgumentException ( $message );
    

    We added these checks with 5.3 during development to catch problems – we will change it to debug notices in the next release so it does not break any longer.

    Very sorry for the inconvenience.

    Best regards,
    Günter

    in reply to: Important change request for avia_google_maps_api.js! #1376210

    Hey!

    With next release 5.4 I added this to core and a filter to activate it:

    
    add_filter( 'avf_gmaps_no_google_fonts', '__return_true' );
    

    Best regards,
    Günter

    in reply to: Waypoints removed? #1376050

    Hi,

    The waypoints script is now enqueued seperate right before the avia.js in functions.php around line 496.

    We removed it from avia.js because we needed to make changes to the original script to be compatible with jQuery 3.5 and WP 5.6 and to avoid conflict with the minify routines we added.

    Hope this helps you.

    Best regards,
    Günter

Viewing 30 posts - 271 through 300 (of 3,704 total)