Forum Replies Created
-
AuthorPosts
-
February 14, 2023 at 3:49 pm 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).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ünterFebruary 14, 2023 at 1:18 pm in reply to: Lightbox swipe feature request & Gallery navigation #1397910Hi,
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.jsDo 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ünterFebruary 11, 2023 at 10:50 am in reply to: Avia editor don’t appear anymore after upadting PHP (7.4 to 8.1) #1397540Hi,
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ünterHi,
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ünterHey Guenter,
Thanks for pointing at this.
We missed to update it. Kriesi will upload a correct version.
Best regards,
GünterHi Roger,
Thank you very much. I added it to core.
Have a great day.Best regards,
GünterHi,
Glad we could help.
Have a great day – I will close this topic.
Best regards,
GünterHi,
I added a working filter to functions.php in your child theme.
You also find it here:
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ünterHi,
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ünterHey 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ünterJanuary 10, 2023 at 11:45 am in reply to: "Menu Links in overlay/slide out" not available under Advanced Styling #1378104Hey 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.4In 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ünterHey 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ünterHi,
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ünterHey 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ünterDecember 20, 2022 at 1:10 pm in reply to: avia_animate_when_visible : how to hamper – or to change offset #1376873December 19, 2022 at 5:49 pm in reply to: avia_animate_when_visible : how to hamper – or to change offset #1376753Hi,
Was a CSS problem. I changed the classes to return and now you can use any value you like:
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ünterDecember 17, 2022 at 11:40 am in reply to: Enfold Update 5.3 – Fatal error: Uncaught Exception: Trying read n.exist… wpml #1376458Hey 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.phpthrow 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ünterDecember 14, 2022 at 6:54 pm in reply to: Important change request for avia_google_maps_api.js! #1376210Hey!
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ünterHi,
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ünterDecember 12, 2022 at 10:47 am in reply to: enfold saving didnt work! please reload the page and try again! #1375918Hi,
Bitte um WP Admin Login Daten und FTP damit wir uns das anschauen können. Ohne Zugangsdaten können wir leider nichts machen.
Danke.Die Daten bitte im Private Content eingeben, dann sind Sie nur für Moderatoren sichtbar.
Best regards,
GünterHey loghash,
Thank you for using Enfold.
PHP 5.5 is totally outdated and also for security reasons you should consider to update to a newer version.
The problem you see here is already solved in 5.6 (https://www.javatpoint.com/php-variable-length-argument-function).
There is a workaround for it:
https://www.php.net/manual/en/functions.arguments.php#functions.variable-arg-list
and
https://www.php.net/manual/en/function.func-get-args.php
You will need to modify theme core file
enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-base.php after line 633.
But keep in mind you must modify this with every new release. We will not add this to core.
If you need help with it let us know.
Best regards,
GünterHi,
Glad we could help.
I will close this topic. Feel free to open a new topic in case you need further help.
Enjoy the theme and have a great day.
Best regards,
GünterDecember 7, 2022 at 11:09 am in reply to: avia_animate_when_visible : how to hamper – or to change offset #1375326December 6, 2022 at 5:30 pm in reply to: avia_animate_when_visible : how to hamper – or to change offset #1375247Hi,
Added more animation classes:
https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_5_2_1/js/shortcodes.js
See activate_waypoints().
Best regards,
GünterHey geektech-42,
The easiest way would be to add your customs fonts to the “Websafe Font” section in the dropdown.
You can do that and manipulate this array with the following filter:
function custom_available_websafe_fonts( $fonts ) { $fonts['Montserrat'] = 'Montserrat'; $fonts['Aclonica'] = 'Aclonica'; return $fonts; } add_filter( 'avf_available_websafe_fonts', 'custom_available_websafe_fonts' );
Then you have to load your @font-face declarations on all backend post types that support ALB and in frontend.
As a start you could add it to enfold-child\style.css which will do it.
To see a rough preview on theme options page you must also load it there. There is no special file in the child theme for that.
You can use the following action hook only called on theme options page to enqueue your own backend file containing the @font-face declarations:/** * Allows to add additional submenus * * @used_by aviaElementTemplates::handler_ava_menu_page_added 10 * * @since 4.8 * @param string $top_level * @param avia_adminpages $this * @param string $the_title * @param string $menu_title */ do_action( 'ava_menu_page_added', $top_level, $this, $the_title, $menu_title );
Example fo Font Face declarations:
@font-face { font-family: 'montserrat'; src: url('https://localhost/wp56/wp-content/uploads/dynamic_avia/avia_type_fonts/custom/montserrat-black.ttf') format('truetype'); font-style: normal; font-weight: 900; font-display: auto; } @font-face { font-family: 'montserrat'; src: url('https://localhost/wp56/wp-content/uploads/dynamic_avia/avia_type_fonts/custom/montserrat-blackitalic.ttf') format('truetype'); font-style: italic; font-weight: 900; font-display: auto; }
I hope this helps you.
Best regards,
GünterDecember 6, 2022 at 1:41 pm in reply to: avia_animate_when_visible : how to hamper – or to change offset #1375224Hi,
There is already a new container class av-animated-when-visible-95 (see enfold\js\shortcodes.js – function activate_waypoints() since 5.0 ).
I will add filter ‘avf_alb_element_animation’ (will try for 5.3) to elements.
Best regards,
GünterHey Gabriel,
Thanks for reporting this.
Sounds a bit strange as I work with 8.0 and get no notices.
But I added fixes for the next release for both problems. Can you wait for that or do you need the fixes now?
Best regards,
Günter -
AuthorPosts