Forum Replies Created
-
AuthorPosts
-
Hi,
I added this problem to our feature requests in the dev repo.
But it will need to find a solution to stay compatible with existing sites that rely on the existing behaviour.
Probably we will add options for new sites and a filter for existing sites to use captions.
Added alt attribute to fixed masonry markup.
Best regards,
GünterHi Jan,
Sorry for the late reply.
Thank you very much for your help. Sounds like this is the solution. And I certainly will have a better eye on WP object cache in future.
I will try to add it to the core for the next release. Please check the changelog.
Have a great day.
Best regards,
GünterHi,
Yes, module status is saved in options table and/or post meta table – so it is related.
As code is working correctly in most environments and on dev local host servers it must be a problem that standard WP function like get_option is returning the wrong value.
It seems that get_option is returning a cached version of the db option value and not the updated. A possible reason could be that the merged files are generated within a frontend call.
Best regards,
GünterHey mntsrvcs,
Thank you for using Enfold and reporting this.
We need to load the scripts on the enfold theme options page to verify the API keys. Not doing this might break our backend.
I will add an issue to our dev repo to check if we can skip it on other admin pages – but as we did not have any other reports up to now this will not have a high priority. Please use your solution to fix the problem meanwhile and keep an eye on the changelog.Best regards,
GünterHi,
Please try to use this file (check line 156ff):
Best regards,
GünterHey Jan,
After generating the merged files Enfold writes info about that to WP options table.
If you check config-templatebuilder\avia-template-builder\php\asset-manager.class.php line 142:
$generated_files = get_option( $this->db_prefix . $file_group_name );
And this is the problem with some server configurations not returning the info we stored before in line 270:
update_option( $this->db_prefix . $file_group_name, $generated_files );
Therefore Enfold creates the merged files again and again.
Did you try to select “Disable adding unique timestamp” ? It still may take some time till the correct WP database entry is returned – but as it is always the same filename generated – this will result in overwriting the same file.
Best regards,
GünterHey grizzlydev,
Thanks for reporting this. Will be fixed in next update.
Enjoy the theme and have a nice day.
Best regards,
GünterHi Roger,
I integrated your files on April 29, but we recieved translations from another user later (https://kriesi.at/support/topic/please-contribute-and-translate-enfold/#post-1214700) which was added by Yigit and overwrote your changes.
Hard to find a solution for this.
I created an outsourced copy of the language files here: https://github.com/KriesiMedia/enfold-library/tree/master/language_files
In future I will create a new directory after each merging new language files and will add the changes to a changelog.txt.
Hope this will help to avoid this.
Best regards,
GünterHey!
There are filters in enfold\includes\loop-about-author.php like avf_author_description.
For next release 4.7.5.1:
I added a new parameter $context to these filters in that file so it will be easier to identify the filter call.
And I added a new filter avf_author_description_loop_about which is right before the final output that allows to skip completly the section or return a custom description text.
Hope this will help..
Best regards,
GünterHi,
In next release you will find a new theme option “Custom Font Display Behaviour” (in Performance -> Show advanced options).
Best regards,
GünterMay 19, 2020 at 8:38 am in reply to: Change Request: Translate Date Format in Masonry Entries #1214225Hey OPTIMAL,
Function get_the_time() provides filter ‘get_the_time’ and implicitly calls get_post_time() with filter ‘get_post_time’.
If we apply some additional filters to av-masonry-helper.php this will not help as you will also face the same problems in other places.
To me the solution would be to hook into the get_post_time filter, check which is the current language format needed and if it is different from called format call get_post_time().
That should cover all situations.
Best regards,
GünterHi,
Please open a new thread with your questions and provide a link to your site and WP admin credentials.
We will close this thread.
Best regards,
GünterHi!
This is a core WP setting, that skype is not supported by default.
Please use this plugin to activate it:
Regards,
GünterHey!
I added a selectbox “Transition Speed” to Easy Slider -> Advanced Tab -> Slider Animation (in 4.7.4.1).
I will check other slideshows asap.
If you want to have a beta version to test let us know.
Cheers!
GünterHi,
Thanks a lot for contributing translations.
But you have been working on a source where a lot of strings are missing – and some might have become obsolete.
We do not sync the language files normally – so before you start to translate always sync them with the source:
Using Loco translate plugin you can configure the template file for the “Enfold” bundle:
– Loco Translate -> Themes -> Enfold -> Advanced configuration tab -> “Template file” -> enter lang/enfold.potImportant: before doing any sync make sure to “upgrade” file sizes to skip:
– Loco Translate -> Settings -> Site Options -> Extracting strings -> enter 99999KSync template and language file:
– Loco Translate -> Themes -> Enfold -> Overview tab -> Edit Template tab -> Sync button -> Save
– Loco Translate -> Themes -> Enfold -> Overview tab -> “your language” -> Sync button -> SaveNow your language file is up to date with the source.
—————————
I uploaded the latest sync version 4.7.4.1 for all languages here:
https://github.com/KriesiMedia/enfold-library/tree/master/language_files/2020_05_08-v4.7.4.1
You can download them, add the missing translations and if you provide the .mo and .po files we will add them to core.
Best regards,
GünterHi!
Since 4.6.4 there is a new filter avf_contact_form_autoresponder_mail (see enfold\framework\php\class-form-generator.php).
which allows bulk changing of mail content.
For next release I added an input field “Autoresponder Subject” to the ALB contact form.
Best regards,
GünterMay 6, 2020 at 12:27 pm in reply to: Please add shortcode parsing to media uploads copyright text meta field output #1210305Hi!
We added filter avf_attachment_copyright_text in the next release. I think this is a more flexible solution.
Hope this will help you.
Best regards,
GünterHi,
This seems to be a plugin using the standard WP filter “display_post_states” incorrectly.
I added a fix for that in the next version.
I tried to add the fix to your file using the standard WP Theme editor but it did not work due to server restrictions.
Please update enfold\config-gutenberg\class-avia-gutenberg.php with
If you need help please provide ftp credentials and we can do it for you.
Do not forget to make a backup of the original file for a fallback and clear server and browser cache.
Best regards,
GünterHi,
FOR YOUR INFORMATION
With Enfold 4.7.4.1 all language files have been synchronised. Only text phrases that occure in this version are present – obsolete have been removed.
Please recheck your translations and only use the new files when contributing.
Best regards,
GünterHi,
Concerning sessions:
You can try to add:
add_theme_support( 'avia_no_session_support' );
to your functions.php (child theme or parent theme).
You need to check if this does not break the functionality of your site.
Best regards,
GünterHi,
Thanks for reporting this.
- I removed the wp_nonce check for reCaptcha V3.
- New option “Remove query string from static resources” in Performance->Show advanced options
Will be in next release.
Best regards,
GünterHi,
Glad you could find a solution.
Enjoy the theme and have a nice day. Feel free to come back when you need further assistance.
Best regards,
GünterApril 8, 2020 at 11:51 am in reply to: How can I add essential cookies which are accepted on first page load? #1201877Hi,
Sorry for the late reply.
At the moment there is no possibility to add it out of the box. I will add this to our dev repo for one of the next releases.
I did not test but try to add your cookies to:
enfold\js\avia-snippet-cookieconsent.js function monitor_cookies() line 459ff.
Add it to the keep_cookies array.
Best regards,
GünterHey Jan,
Thanks for this input.
I will add it to the open features in our dev repo. I also was already thinking about adding some more filters.
Let me know where you would need filters so I can consider to add them.
Best regards,
GünterApril 7, 2020 at 12:42 pm in reply to: WordPress sends message about technical problem with Enfold #1201572Hi,
Thanks for informing us. I will close this topic – feel free to come back when you need further assistance.
Thank you for using Enfold.
Best regards,
GünterHi,
I rechecked with WP 5.4 and Enfold 4.7.4, with classic and block editor from theme settings.
Cannot reproduce the problem. The only notice I get is a deprecation notice concerning layerslider – but nothing concerning Enfold.
The filter you mention above is a standard WP filter “display_post_states” that renders a WP_Post object as argument 2 – see wp-admin\includes\template.php line 2170.
Please deactivate the caching plugin if you are using one and deactivate all plugins. Then reactivate one by one and check.
Best regards,
GünterApril 3, 2020 at 10:50 am in reply to: Enfold 4.7.4 Youtube Video in Footer Widget does not work #1200455Hey Guenter,
Glad you found the solution.
class post-format-{$post_format} has been added in the next version to article tag in postslider.php.
Have a nice day.
Best regards,
GünterHey Guenter,
Sorry for the late reply.
Please have a look at config-templatebuilder\avia-shortcodes\logoslider\logoslider.php line 217ff. Here you see how to customize the colums needed.
Extend config-templatebuilder\avia-shortcodes\masonry_gallery\masonry_gallery.php line 299:
array( 'type' => 'template', 'template_id' => 'columns_count_icon_switcher', 'subtype' => array( 'default' => array( __( 'Automatic, based on screen width', 'avia_framework' ) => 'flexible', __( '2 Columns', 'avia_framework' ) => '2', __( '3 Columns', 'avia_framework' ) => '3', __( '4 Columns', 'avia_framework' ) => '4', __( '5 Columns', 'avia_framework' ) => '5', __( '6 Columns', 'avia_framework' ) => '6', __( '7 Columns', 'avia_framework' ) => '7' ), 'medium' => array( __( 'Automatic, based on screen width', 'avia_framework' ) => 'flexible', __( '2 Columns', 'avia_framework' ) => '2', __( '3 Columns', 'avia_framework' ) => '3', __( '4 Columns', 'avia_framework' ) => '4', __( '5 Columns', 'avia_framework' ) => '5', __( '6 Columns', 'avia_framework' ) => '6', __( '7 Columns', 'avia_framework' ) => '7' ), 'small' => array( __( 'Automatic, based on screen width', 'avia_framework' ) => 'flexible', __( '2 Columns', 'avia_framework' ) => '2', __( '3 Columns', 'avia_framework' ) => '3', __( '4 Columns', 'avia_framework' ) => '4', __( '5 Columns', 'avia_framework' ) => '5', __( '6 Columns', 'avia_framework' ) => '6', __( '7 Columns', 'avia_framework' ) => '7' ), 'mini' => array( __( 'Automatic, based on screen width', 'avia_framework' ) => 'flexible', __( '2 Columns', 'avia_framework' ) => '2', __( '3 Columns', 'avia_framework' ) => '3', __( '4 Columns', 'avia_framework' ) => '4', __( '5 Columns', 'avia_framework' ) => '5', __( '6 Columns', 'avia_framework' ) => '6', __( '7 Columns', 'avia_framework' ) => '7' ) ), 'std' => array( 'default' => '3', 'medium' => '3', 'small' => '3', 'mini' => '3' ) ),
Best regards,
GünterMarch 29, 2020 at 7:58 am in reply to: Link to Open Cookie Consent Popup to change the Cookie settings #1198783 -
AuthorPosts