Forum Replies Created
-
AuthorPosts
-
have a look : https://webers-testseite.de/video-behind-a-hole/
but a png will be very performance intensive on that.
this is a video alb in a color-section ( color-section with custom-class: hole-before ).hole-before .avia-iframe-wrap::after { content: ""; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-image: url(https://webers-testseite.de/wp-content/uploads/fire-hole-2908115.png); background-repeat: no-repeat; background-size: cover; pointer-events:none }why did you place the video in a 1/2 container and have two 1/4 empty containers besides?
If you like to have the video as wide as the slider take a 1/1 container and get rid of the two 1/4 columns.______
you have this rule in your css:
#top #wrap_all .all_colors h1 { color: purple; font-size: 32px; font-family: raleway,helveticaneue,helvetica neue,helvetica-neue,Helvetica,Arial,sans-serif; text-transform: lowercase; }The text-transform is the point you had to change. You can have here captalize ( only first letters are big) or uppercase ( all Letters are big ) etc.
because you have merged js files i cannot say exactliy where it comes from ( quick css or maybe Enfold – Advanced Styling)
The merging seems to come from siteground-optimizer – have a look if your settings are refreshed after changing something.
My advice – as long as you are not ready with layout and styling – switch off all merging and caching. When you are finished – then test performance with all switched on.If you only like to influence the subtext in your logo :
#top #wrap_all .all_colors .logo .subtext h1 { font-size: 14px !important; text-transform: uppercase; }-
This reply was modified 4 years, 9 months ago by
Guenni007.
my question was – for what you load a script in child, which is already loaded via parent theme.
It would only make sense if you have made changes to the script. – However, then it must be done as I showed – first deregister the parent script and then load the script in the child theme. ( and your folder-structure is the same as above: child-theme/js/aviapopup/ )
The : Enfold – Theme Options – “Lightbox Modal Window” – it is on default checked.
So just leave it activated and take this loading of the script out of your child theme better again.
Did you use the predefined child-theme of enfold? : Link
Why do you think that something is not loaded correctly ?Or is it an older install that you have updated to newest Enfold?
there are some instructions concerning to lightbox in the header.php – so if you got in your child-theme an older header.php – you had to bring this file again to the newest version and place your changings in it again.i would do it this way: https://kriesi.at/support/topic/lightbox-show-everything-and-more/#post-1288918
See here that it works – even if the playlist link is in a accordion tab: https://webers-testseite.de/jean/#toggle-id-1
Or like you did it on that page: https://www.sakura-fishing.com/moulinet/casting-lagoa/#toggle-id-1-closed
there you have it as external link – to your playlist placed on youtubeyes – thats it ( for newly added images )
and you see the advantage of heaving this if there is an image with lightbox – it has the title in the bottom-bar: https://webers-testseite.de/images/ (right-side image)by the way : wordpress / wp-includes / kses.php / lines227ff:
'img' => array( 'alt' => true, 'align' => true, 'border' => true, 'height' => true, 'hspace' => true, 'loading' => true, 'longdesc' => true, 'vspace' => true, 'src' => true, 'usemap' => true, 'width' => true, ),not title anymore as allowed tags
Or at least you do it without complex solutions. And do it like on those pages – where it works – there you got your playlist link to link to the youtube site with your playlist and not to a lightbox.
see here: https://www.sakura-fishing.com/moulinet/casting-lagoa/did you use the full resolution images for the lightbox?
on default it is not that case. It uses the large image for it. – There are some snippets for child-theme functions.php to set the source for lightbox images to “full”btw: how did you realise the zoom?
-
This reply was modified 4 years, 9 months ago by
Guenni007.
Dear Mods and Devs :
maybe this is a bug – don’t know if it is enfold or the new magnific-popup script since jQuery 3.5.1 that causes the issue.
i believe i remember that the mfp-iframe was not included in the image galleries in the past.My assumption:
maybe it’s only the videos that are included in the gallery that call the lightbox using “iframe=true”.One chance to get for this image in the first column an own magnific-popup.
give to the first column with that image two custom classes ( put in that custom-class input field: ) noLightbox group1the first class is to hamper enfolds lightbox for all those images inside that column.
The second is for having a trigger to get the popup.put this in your child-theme functions.php:
function open_image_in_popup_group(){ ?> <script type="text/javascript"> (function($){ $(window).on('load', function(){ $('.group1').magnificPopup({ delegate: 'a', type: 'image', mainClass: 'avia-popup mfp-zoom-in mfp-image-loaded', closeBtnInside: true, closeOnContentClick:false, midClick: true, gallery: { enabled:true } }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'open_image_in_popup_group');See again my test page: https://webers-testseite.de/jean/
-
This reply was modified 4 years, 9 months ago by
Guenni007.
Ok now i see – you got a link in that toggle – with the playlist of your videos.
just a moment – allthough this is an iframe lightbox it seems to build a gallery with the image.
it is this playlist linking to a lightbox which is part of the gallery – not the videos beneath.
…
maybe this is a bug – don’t know if it is enfold or the new magnific-popup script since jQuery 3.5.1 that causes the issue.
i believe i remember that the mfp-iframe was not included in the image galleries in the past.-
This reply was modified 4 years, 9 months ago by
Guenni007.
it had to be an additional tool or script-
if i inspect my test page to look for the youtube id – i only find these ( in this case 4 sources – local preview image with same id – iframes ) but all are place inside the color section it concerns.
When i inspect your site and look for the id: Ri38SkRFDcY there are a lot of script entries about that ID – script with class: rank-math-schema-pro.
Maybe this is causing the issueFirst i thought i can manage it for newly inserted images this way.
function html_insert_image( $html, $id, $caption, $title, $align, $url, $size, $alt ) { $src = wp_get_attachment_image_src( $id, $size, false ); $html = "<figure id=\"post-$id media-$id\" class=\"align-$align\">"; if ( $url ) { $html .= "<a href=\"$url\" class=\"image-link\"><img src=\"$src[0]\" title=\"$title\" alt=\"$alt\" /></a>"; } else { $html .= "<img src=\"$src[0]\" title=\"$title\" alt=\"$alt\" />"; } if ( $caption ) { $html .= "<p class='wp-caption-text'>$caption</p>"; } $html .= "</figure>"; return $html; } add_filter( 'image_send_to_editor', 'html_insert_image', 10, 9 );BUT: as mentioned above that line in ajax-actions.php – the title tag isn’t supported anymore for images
Maybe the people at WordPress will reconsider this decision.
even if:For both accessibility and search engine optimization (SEO), alt text is more important than title text. This is why we strongly recommend including alt text for all your images.
but magnific-popup is part of Enfold – did you deregister the parent script in your child-theme before ?
wp_deregister_script( 'avia-popup-js' ); wp_enqueue_script( 'avia-popup-js-child', get_stylesheet_directory_uri().'/js/aviapopup/jquery.magnific-popup.min.js', array('jquery'), $vn, true);so what is your benefit to have an own child-theme loading of the script? It is already loaded!
“I’m using a (possibly old version)…”
Or maybe you have a misconception about how a child theme interacts with the parent theme?A child theme on its fundamental construction has three files – a style.css – and that is the basic part telling WordPress that eventually parts will be added to the parent theme; an initially still empty functions.php and a thumbnail for the dashboard.
Files with the same name in the child theme folder replace the corresponding files in the parent theme – except for the functions.php file.
The functions.php is used to add additional properties to the parent theme via code snippets. These snippets can of course also override parent theme functions through certain phrases.And even if i set the videos in advanced tab of the video alb element to show in lightbox – the galleries are separated:
https://webers-testseite.de/jean/hey Jean – a few days ago i come to your topic here and indeed i saw your described behavior on the first link.
But now – when i open your link the image is loaded in the lightbox but video not.
Did you solve your problems?By the way: what function did the gallery have in your layout ?
Edit: oh now i see – i did only check the small image under the big one. Yes – it is still there-
I would try to separate the colums by putting them in different color-sections. Because you do not have sidebar here – this would be an option.
This is strange because you haven’t an image link on the videos.
This behavior i got once because i set up an image with youtube open in a lightbox. But even there are different lightbox types ( image, iframe)
@Rikard : that extra-class : anchor-link is only on my installation present. Not on default Enfold settings. ;)-
This reply was modified 4 years, 9 months ago by
Guenni007.
Depends how often you need it.
If you take over an older WordPress installation and you want to change the style to Enfold, and the posts (blog) are all created with the Classic Editor which contains several 100 images, the manual method is an option but should be avoidable if at all possible.
__________
this does not solve my issue above, but probably explains why there are no more title tags on the images
i found this filter: image_send_to_editor – and i can influence the output then on the inserted images in the textblock – but the title attribute is always missing! ( Allthough it is in the filterapply_filters( 'image_send_to_editor', $html, $id, $caption, $title, $align, $url, $size, $alt, $rel );edit: aha – on wordpress/ wp-admin / includes / ajax-actions.php line: 3251:
$title = ''; // We no longer insert title tags into <img> tags, as they are redundant.-
This reply was modified 4 years, 9 months ago by
Guenni007.
yes that was already clear to me that this is not due to Enfold, I thought you had a hint or knowledge about how to extend the tinyMCE so that it automatically reads and uses the attachment title and alt attributes.
I’m going to start looking for it myself now – and I’ll report back.Thank you very much for this – I find it better this way.
Wow – the js file has been practically rewritten.
Can be closed now.ich möchte ja schon das magnific popup script dafür nutzen, aber eben mit meinem eigenen Markup. Das sieht ja auch die Doku von Dmitry Semenov vor.
Es hat auch früher sehr gut geklappt, dass man Animationen, Markup, Callbacks etc. hinzufügen konnte. Das neue Markup wurde auch immer angenommen von allen Browsern. Jetzt macht der Firefox mal mit – meist jedoch nicht. Er nimmt dann das default markup und öffnet die lightbox.Wenn ich deinen Rat befolge und dann definiere:
<script type="text/javascript"> (function($){ $(window).on('load', function () { $('#bildnavigation').magnificPopup({ delegate: 'a.avia_image', type: 'image', image: { markup:…dann funktioniert es, aber die Klasse am anchor brauche ich damit die Buttons nicht mit integriert werden in die lightbox und so die Galerie zerschießen.
Trotzdem ist es mir unbegreiflich warum es vorher ging – jetzt nicht mehr.
warum es in Chrom und Safari geht – Firefox nicht.
Schade – macht es wieder ein wenig aufwendiger.Danke – kannst Du schließen!
you can see what i mean here on that page: https://webers-testseite.de/images/
An image placed in a text-block via Media-Library insertion does not have title attribute ( right side an image alb with title – and the option to give custom alt/title attributes to it ) – but that is not what i want. Why does the left image got no title if it has one ( see right flowers )March 15, 2021 at 6:03 am in reply to: How do I remove powered by Enfold WordPress Theme on the footer? #1288161March 13, 2021 at 6:42 pm in reply to: Special Character Plugin Not Found – 500 Internal Error #1288043i see your logo on your page – does it break your layout ??? – no – so ?
it might – conditional case
As i said above – this is not a selfdestructing information – try it – if it works – good – if not change it.March 13, 2021 at 1:09 pm in reply to: Special Character Plugin Not Found – 500 Internal Error #1287946yes: this is not a warning that you have activated the self-destruction button : it might break !
Warning: Characters <,>,[,] might break ALB backend or frontend. Read more if you want to use them. You can use valid HTML markup.
And you see in detail what characters could indicate that. – those which are correlated with code ( tags etc. )
March 12, 2021 at 11:19 pm in reply to: Special Character Plugin Not Found – 500 Internal Error #1287892i do not really know what you might think this plugin does. If it is only to insert a html entity that could not be seen – it is not neccessary.
you can insert   ; without that space ( between p and semicolon ) – and you will have a invisible heading there – where you can insert your logo either as pseudo-container background like here: https://webers-testseite.de/tesla/
you see that i did it a bit different – you can make this heading invisible by font color : transparent ( i let it at opacity 0.1)
or set the text-indent to a big value ( -2000px). the advantage would be a SEO one – because there is a heading f.e. Tesla Logo then.
i gave a custom class to the slider: tesla.tesla .slide-1 .avia-caption-title { color: rgba(255,255,255,0.1); } .tesla .slide-1 .avia-caption-title::before { content: ""; width: 100px; height: 100px; position: absolute; left: -60px; top: -60px; background-image: url(/wp-content/uploads/TESLA-logo.png); background-repeat: no-repeat; background-size: contain; }or – you replace the content directly with the image:
.tesla .slide-1 .avia-caption-title { content: url(/wp-content/uploads/TESLA-logo.png); }if this will work on all browsers – i don’t know
This above is only for slide-1 – if this should be for all slides – let that class out from the css codeThere must be a conflict that may have nothing to do with Enfold. Forcing a jpg or a pdf download is more complex, but a zip is actually always made available for download automatically.
Your page above is inaccessible.everything you need is flex modell and instructions vor you are here: https://webers-testseite.de/8col-flex/#av_section_3
blue background ( layout was 10x 1/5columns – that is the reason for that custom-class 10-columns ) but i erased 3 so there are in one color-section these 7x 1/5 columns and nothing else
that flex modell works it is important that no other elements can be part of the styling. !!!
btw – very good instructions : https://css-tricks.com/snippets/css/a-guide-to-flexbox/
when you are in editor mode and have your Advanced Layout Builder open – click that sign besides templates:

here you are. After editing you have on top right these three buttons Preview, Update and Close.
if it is this way – that your customer like to change on the alb the background-image of color-section/slider etc. This could not be done by css only.
These images (svgs) had to be injected as additional elements as inline-svgs via child-theme functions.php
hint:
$(‘.avia-section.divider.top1’).prepend(‘<svg class=”top” ……… preserveAspectRatio=”none”></svg>’);
$(‘.avia-section.divider.bottom1’).append(‘<svg class=”bottom” ……… preserveAspectRatio=”none”></svg>’);the divider class indicates that there will be dividers – and it is for preparing the color-section ( display : relative not static )
and if i give then in addition a custom-class: top1 to the color-section it will prepend that svg to it and if the custom class is bottom1 it will append.
in this way:<div class="avia-section … <svg ( inline for the top ) </svg> <div class="container">… </div> <svg ( inline for the bottom ) </svg> </div>look to that link: https://kriesi.at/support/topic/diagonal-border-angle/#post-1138144
the rest is css positioningsee doku of Enfold: https://kriesi.at/documentation/enfold/svg-dividers/
and look with developer tools to it:

One thing is to mention – the svgs had to be well prepared to insert them in this way.
yes – but this additional information would not have been bad to know at the beginning.
So best would be to use the normal Enfold Background-Image Insertion by the ALB Element itself – and then bring some dividers on top f.e. by custom class.
This will be best – by handling svgs inserted by a custom class of the color-section to the right place in the dom
This might be the best place for it: https://kriesi.at/support/topic/curved-section-dividers/#post-1212353
If you do it the right way – even animated svgs could be inserted: see the bottom of that page: https://webers-testseite.de/pureinstall/fullwidth-slider/A littel help is here: https://kriesi.at/support/topic/diagonal-border-angle/#post-1138048
but this will be more a tutorial here then a little help.
Get familiar with svg and and … sorry to much to say here .and if your … dourleur-chronique image is again with transparency – you can define a background-color on the end:
example code with my page-id.page-id-30559 .three-bg-images { background-image: url('https://webers-testseite.de/wp-content/uploads/double-wabe-bot.png'), url('https://webers-testseite.de/wp-content/uploads/bandeau_1920.jpg') , url('https://webers-testseite.de/wp-content/uploads/clinique-transparent.png'), linear-gradient(45deg, #1e5799 0%,#7db9e8 100%); background-repeat: no-repeat; background-position: left bottom,left top,center center, left top; background-size: contain,100% 20px,cover, 100vw 100%; } -
This reply was modified 4 years, 9 months ago by
-
AuthorPosts
