Forum Replies Created
-
AuthorPosts
-
i tested ( not all on Enfold ) a lot of those dark-mode solutions.
They all suffer from the fact that switching to dark mode often does not produce a satisfactory result. So maybe another approach I had in mind is to use this snippet to set a custom colour scheme.
function custom_color_set($color_sets){ $color_sets['dark_mode'] = 'Dark Mode'; return $color_sets; } add_filter( 'avf_color_sets', 'custom_color_set', 999, 1 );but on that case the class (dark_mode) will not go to the alb element – but to the body class list. Maybe we can add for that new color-set some input-fields for menu-colors and header area colors.
Then all we would have to do is add a button (e.g. in header_meta) to switch the page to that colour scheme.
Of course, it would be a lot of work to set this up, but it could be worth it for a better customised look.

one thing to mention – that video is from 2018. Meanwhile, many deprecated functions have been removed in newer versions of jQuery.
so the video shows:
$(window).load(function(){ …
this is now:
$(window).on('load', function(){instead of using that script Mike linked to – use the filter:
add_filter( 'avf_default_lightbox_no_scroll', '__return_true' );give a custom-class to those text-block elements – f.e.: justified-textblock
#top .justified-textblock p { text-align:justify; -webkit-hyphens: auto; -ms-hyphens: auto; hyphens: auto; /*** new options for hyphens auto with less browser support -webkit-hyphenate-limit-chars: auto 4; -ms-hyphenate-limit-chars: auto 4; hyphenate-limit-chars: auto 4; ****/ }don’t know if those browser support prefixes are still in use ;)
but! the browser’s Justified Text setting may give unusual results, as it generally does not set any conditional word wrapping (including hyphens).
There was in former times there was Plugin : Hyphenator that can do a better job – but the plugin has been closed as of July 27, 2023
Maybe the plugin: wp-typography is a good alternative
So you have set the image to float left f.e.

And there is only one line of text next to it! – asign a custom class to that text-block to better select it specifically
then try.avia_textblock.alignmiddle > p { display: flex !important; align-items: center; }see here with an alternative Layout to reach what you like to have:https://webers-testseite.de/steveorrmedia/
but this will only work if there is only one p tag inside that text-block element. Otherwise you had to use the text-mode of the text-block to set the image in one div – and the text besides in another div. By this we can use then the flex method again with these two containers.Yes, for masonry gallery it works as it should – but for gallery there is no response to the choices.
September 9, 2023 at 12:40 am in reply to: Problem Slider volle Breite ist nicht an oberen Rand zu bekommen. #1418517bei Enfold 5.6.6 ist die Option direkt unterhalb des Logos zu sehen: : Theme Optionen – Transparency Logo Options –
wähl das mal aus, dann gib das Logo an, welches du im Transparenz Modus nutzen möchtest.
Das andere Logo ist für die nicht Transparenzen zuständig.Bessere Ratschläge könnte ich nur geben, wenn ich die Seite sehen könnte.
put this to your child-theme functions.php:
(see on docu: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#customization )function avia_include_shortcode_template($paths){ $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; } add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);and copy that edited video.php to that folder : shortcodes
but please if it is possible this should be default setting !!!
And perhaps only a checkmark if you realy need that.But if i inspect the DOM before that change – f.e. on autoplay even there – no parameters were set at the url
just that f.e.src="https://www.youtube.com/embed/G0k3kHtyoqc?feature=oembed"no autoplay=1 is set to the url etc. – with the changes above – no rel=0
PS: on sliders there are those $video_data’s going to the output of the video url:
September 8, 2023 at 5:02 pm in reply to: Problem Slider volle Breite ist nicht an oberen Rand zu bekommen. #1418490ok i see:
the lightbox script got his titles from the img tag not the anchor !
so on line 784 (enfold 5.6.6) and on line 806:Guess title should be:
title="{$lightbox_title}"
i do not know how to handle the $prev_img_tag if we had to change that too.only for info to mods:
Funnily enough, I can find the instructions for this in gallery.php – and not in masonry-gallery.php.:
(they are in the helper for masonry: class-avia-masonry.php)$lightbox_title = $title; switch( $lightbox_text ) { case 'caption': $lightbox_title = ( '' != $caption ) ? $caption : $title; break; case 'description': $lightbox_title = ( '' != $description ) ? $description : $title; break; case 'no_text': $lightbox_title = ''; }?
on default there should be a working choice for that under the option to choose the lightbox option:
but i recognized now that for galleries – that option has no influence – but test yourself on your gallery. On Masonry Gallery it works well to choose “no text”
if so we had to inform a Dev here on board – to fix it.
in the meantime you can set the mfp-title to display: none
div .mfp-title { display: none !important; }First : you want to get rid of the titles under the opend lightbox images – or do you like to have different Text there and not the image titles?
____Next: how do you insert images?
If you are knowing how to insert new images then you see those little crosses on already existing images in that gallery.:
hovering the “X” will turn that to a minus sign “-” click and the image is gone.
September 8, 2023 at 7:38 am in reply to: Still fighting with managing default image sizes. #1418419i don’t know how your plugin react on this. My solution above is only for working with snippets inside your child-theme functions.php.
i do not know how those regenerate Plugins do their job. – F.e. if they remove allready existing recalculated images.
There is one Plugin from : Shortpixel Group: https://wordpress.org/plugins/regenerate-thumbnails-advanced/if this plugin recalculates the images – you can have under advanced options to erase non recalculated images from the uploaded folder.
(click to enlarge:)

btw.: this plugin also can create new image sizes.The only thing I notice is that the compression level does not work for Enfold formats.
But you can set that beforehand by f.e:add_filter("avf_jpeg_quality", "avf_set_quality_mod", 9999, 1); add_filter("avf_wp_editor_set_quality", "avf_set_quality_mod", 9999, 1); function avf_set_quality_mod($quality) { $quality = 55; return $quality;}OK – i did not know that it still works – but you had to go the way over embed then. Nice
Yes – thats only a matter of youtube (Google) settings. In the past, it was possible to prevent various things by adding an attachment to the video url. They have decided not to allow this any more.
z.B.:
https://www.youtube.com/embed/1YQ8iP0DiUk?autoplay=1So the Google people decided to patronise their users even more. i didn’t find anything on https://developers.google.com/youtube/iframe_api_reference.
I really do wish that I was wrong about all this.
September 7, 2023 at 7:08 pm in reply to: Still fighting with managing default image sizes. #1418394adding new images sizes:
add_image_size( 'custom-size', 220, 180, true ); // crop: false is default add_image_size( 'custom-size', 220, 220, array( 'left', 'top' ) ); // Hard crop left topor:
add_image_size( 'new-size', 2000, 500, true ); function my_custom_sizes( $sizes ) { return array_merge( $sizes, array( 'new-size' => __( 'New Size' ), ) ); } add_filter( 'image_size_names_choose', 'my_custom_sizes' );/***** redefine existing size ****/
function custom_modified_thumb_sizes( $size ){ $size['entry_with_sidebar'] = array('width'=>900, 'height'=>450 ); $size['entry_without_sidebar'] = array('width'=>1200, 'height'=>600 ); return $size; } add_filter('avf_modify_thumb_size', 'custom_modified_thumb_sizes', 10, 1 );same as above : regeneration had to be done
September 7, 2023 at 7:05 pm in reply to: Still fighting with managing default image sizes. #1418393Try this and for changing the direct next post:
https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1108904
https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1109028
But : after erasing some of those image-sizes – you had to regenerate your thumbnails : there are some good plugins to do so.
f.e.: https://wordpress.org/plugins/force-regenerate-thumbnails/// Disable loads of Enfold & WP image sizes upon upload // do image sizes manually, double-size with high compression for retina screens // use Photoshop to set exact double size and quality between Q30 and Q40 add_action('init', 'remove_enfold_image_sizes'); function remove_enfold_image_sizes() { // do NOT remove widget size, is used in backend portfolio items! // remove_image_size('widget'); remove_image_size('square'); remove_image_size('featured'); remove_image_size('featured_large'); remove_image_size('portfolio'); remove_image_size('portfolio_small'); remove_image_size('gallery'); remove_image_size('magazine'); remove_image_size('masonry'); remove_image_size('entry_without_sidebar'); remove_image_size('entry_with_sidebar'); remove_image_size('shop_thumbnail'); remove_image_size('shop_catalog'); remove_image_size('shop_single'); remove_image_size('shop_gallery_thumbnail'); } // Remove unneeded WP image sizes add_filter( 'intermediate_image_sizes_advanced', 'prefix_remove_default_images' ); // Remove default image sizes here. function prefix_remove_default_images( $sizes ) { // do NOT remove small and medium sizes, they are used in backend Media Library! // unset( $sizes['small']); // 150px // unset( $sizes['medium']); // 300px unset( $sizes['large']); // 1024px unset( $sizes['medium_large']); // 768px return $sizes; }September 5, 2023 at 1:02 pm in reply to: How to sort custom post type posts with custom post meta field #1418150you see that the if clause is allready an array – so comma separated id’s will do that job:
… if ( is_page(array(1132, 6481)) ) {September 4, 2023 at 12:52 pm in reply to: How to sort custom post type posts with custom post meta field #1418026did you adjust the code to your ACF ?
as I said above, it is likely that my code does not work in the loop. – I’ll have to call in someone with more programming skills – sorry.
by the way: please use the code tag to post snippets . it is hard to read ( and a lot of signs are changed ) if you do not.
Next: your links above goes to a different url – the one in your screenshot is password portected
Did you look to that page logged out ? because the above if-clause includes the if not admin
September 4, 2023 at 10:29 am in reply to: How to exclude current posts from related posts grid #1418022Thanks Mike & Guenni007, for the help and support, it helped me a lot to solve the issue.
would you please share your working solution …
September 4, 2023 at 10:23 am in reply to: How to sort custom post type posts with custom post meta field #1418021it is hard to give advice without a working test environment to check.
Can you try :
function pre_sort_filter_escorted_vacations($query) { if(!is_admin() && $query->is_main_query()) { $post_type = $wp_query->query['post_type']; if ( $post_type == 'escorted-vacations') { $query->set('meta_key', 'start_date'); $query->set('orderby', 'meta_value_num'); $query->set('order', 'ASC'); } } } add_action('pre_get_posts', 'pre_sort_filter_escorted_vacations');do not know if this works – then if it works on the loop ( i don’t think so )
September 4, 2023 at 7:25 am in reply to: How to exclude current posts from related posts grid #1418000or Mike …. maybe it is first needed to include the CPT to search – as you have done it here: https://kriesi.at/support/topic/seiten-aus-der-enfold-suche-ausschliesen/#post-1396760
you got on your quick css some rules
because of an enfold rule is more specific than your setting – be more selective too on your settings !Replace your settings with:
.responsive #top #header_meta .sub_menu li.flag-deutsch { background: url('//www.elianafe.com/wp-content/uploads/2023/08/deutschland-sized.png') center center no-repeat; height: 50px; width: 50px; text-indent: -9999em; background-size: contain; } .responsive #top #header_meta .sub_menu .flag-english { background: url('//www.elianafe.com/wp-content/uploads/2023/08/vereinigtes-konigreich-sized.png') center center no-repeat; height: 50px; width: 50px; text-indent: -9999em; background-size: contain; } #top .flag-deutsch a, #top .flag-english a { display: block; height: 100%; background: none !important; /*** because of that layout.css rule your setting on li will otherwise be inherited to that a element ***/ }you see that selector got two id’s and that overwrites your background setting with only one id in the selector
it is more selective!September 3, 2023 at 6:03 pm in reply to: Contact Form – Date – start selection a week later #1417963there are nice plugins to influence datepicker f.e.: Datepicker by input
but you can insert that snippet to your child-theme functions.php
( if you get rid of those outcommented signs “//” – the weekends will be unavailable too ):
( there is a prebuild option for no Weekend)function my_datepicker_defaults() { ?> <script type="text/javascript"> window.addEventListener("DOMContentLoaded", function () { (function($) { $.datepicker.setDefaults({ // beforeShowDay: $.datepicker.noWeekends, minDate: "+7d", maxDate: "+12m", }); }(jQuery)); }); </script> <?php } add_action('wp_footer', 'my_datepicker_defaults', 20);if you do not need maxDate remove that line
September 3, 2023 at 1:16 am in reply to: How to exclude current posts from related posts grid #1417928no – but if you go further to f.e. “Rail across Canada” that Post is still on the slider.
So try to include your CPT ( guess it is: escorted-vacations) to the alb handlingSeptember 2, 2023 at 6:01 pm in reply to: How to exclude current posts from related posts grid #1417887i guess not – maybe the custom-post type had to be first included to ALB support:
Replace the “event” with the name of your CPT:
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'event'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1); function avf_metabox_layout_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'event'; return $supported_post_types; } add_filter('avf_metabox_layout_post_types', 'avf_metabox_layout_post_types_mod', 10, 1);September 2, 2023 at 3:35 am in reply to: How to exclude current posts from related posts grid #1417857Try this snippet in your child-theme functions.php:
function ava_exclude_current_post($query) { if (is_singular('post') || is_singular('portfolio') ) { $exclude = avia_get_the_ID(); $query->set( 'post__not_in', array($exclude) ); } } add_action('pre_get_posts', 'ava_exclude_current_post');// in the if-clause you can use aswell : if(is_single()){ -
AuthorPosts





