Forum Replies Created
-
AuthorPosts
-
This is a video , where the frames are ruled by scrolling.
See here a codepen:
https://codepen.io/Maltsbier/pen/dyYmGGq
https://codepen.io/marduklien/pen/MdvdEGmost of them use the ScrollMagic script.
Or GSAPOr use Scrollsequence
September 26, 2024 at 11:09 pm in reply to: Video Player black screen and Full Screen possible? #1467899sorry again
September 26, 2024 at 10:32 pm in reply to: Video Player black screen and Full Screen possible? #1467898Sorry – wrong Topic – my fault.
September 26, 2024 at 1:25 pm in reply to: Contact form 7 – How to mark * in red colour for required fields #1467878ok – if this is ok for you – see: https://webers-testseite.de/jak-contact/
( due to maintainance mode of my hoster – page might be not seen today )snippet for child-theme functions.php and the contakt form 7 Form code is on that page.
snippet:
(The script is necessary because CF7 does not provide a way to select whether an input field is in focus or filled.)function class_on_active_form_fields(){ ?> <script> window.addEventListener("DOMContentLoaded", function () { (function($) { $('.wpcf7-form-control').each(function() { $(this).on('focus', function() { $(this).parent().addClass('active'); }); $(this).on('blur', function() { if ($(this).val().length == 0) { $(this).parent().removeClass('active'); } }); }); })(jQuery); }); </script> <?php } add_action('wp_footer', 'class_on_active_form_fields');
the css ( with your wrapper class ):
.form-wrapper { position : relative !important; } .form-wrapper .placeholder { position: absolute; top: 5px; left: 5px; opacity: 0.5; transition: opacity 1s ease; pointer-events: none; } .form-wrapper .asterisk { color: red !important; } .wpcf7-form-control-wrap.active + .placeholder { opacity: 0 !important; }
the form in this setup:
<div class="form-wrapper">[text* first-name placeholder ""]<span class="placeholder">First name <span class="asterisk">*</span></span></div> <div class="form-wrapper">[text* last-name placeholder ""]<span class="placeholder">Last name <span class="asterisk">*</span></span></div> <div class="form-wrapper">[email* your-email placeholder " "]<span class="placeholder">E-Mail <span class="asterisk">*</span></span></div> <div class="form-wrapper">[textarea* textarea-716 placeholder " "]<span class="placeholder">Placeholder <span class="asterisk">*</span></span></div> <div class="form-wrapper">[submit "Send"]</div>
but remember: https://kriesi.at/support/topic/adding-captions-to-the-lightboxes-in-a-masonry/#post-1467815
I think it has to do with the elements not loading until you have scrolled through the masonry position due to the delayed animation. On my site, sometimes this works – sometimes it doesn’t.
Using the ‘Load More’ button even cancels this out completely after pressing Load More.
I would have to look up what has changed since then (almost 5 years ago). Unfortunately, this test page of mine is so bloated with tests for other participants in this forum that some code snippets may be interfering with others. The functions.php of the child themes is already 3750 lines long.
September 25, 2024 at 5:20 pm in reply to: Contact form 7 – How to mark * in red colour for required fields #1467821as placeholder text ( inside the input field ) this is hard to get.
by the way – that might be an older post of mine.
since jQuery 3$(window).load(function(){
is deprecated
now you had to use:
$(window).on('load', function(){
i remember there is a difference on the width in between 768 and 990 px of the header – then you had to adjust this here too ( 300px versus 27%)
PS: i changed the code above to fit with this knowledge.
- This reply was modified 1 month, 4 weeks ago by Guenni007.
or – maybe a simpler idea – we use the left header sidebar ! – and just handle the #wrap_all as a flex container – and define the order in this way that the header goes to the right side
@media only screen and (min-width: 768px) { #wrap_all { display: flex !important; flex-flow: row nowrap; } #wrap_all #header { order: 2; flex: 0 1 27%; right: 0; left: auto; } #wrap_all #main { order: 1; flex: 0 1 73%; margin-left: 0 !important; border-left: none !important; } .responsive #top .header_bg { box-shadow: -5px 0px 5px -5px #666; } /*** because submenu is defined to a width of 208px ***/ #top #avia-menu > li.dropdown_ul_available > ul.sub-menu { left: -207px } /*** have a bit more space from main menu-item to the fly-out submenu ***/ .html_header_sidebar #header .av-main-nav>li { margin-left: 5px !important; padding-left: 13px; } } @media only screen and (min-width: 990px) { #wrap_all #header { flex: 0 1 300px; } #wrap_all #main { flex: 0 1 calc(100% - 300px); } }
see: https://enfold.webers-webdesign.de/
( the scroll away after some time does not belong to that settings here. – this is part of the inital Headersetting )this is not styled to the end – becaue i want to go back to the original setting of header on top.
above all, you now have to extend the subnavigation to the left – but that shouldn’t be a problem using css.Edit : better solution see next post
- This reply was modified 1 month, 3 weeks ago by Guenni007.
But please read here carefully : https://themeforest.net/licenses/terms/photodune_extended
Especially that part : “Whoa there! Things you can’t do with the Item”
8.While you may create End Products using the Item for multiple different clients, you must not allow your clients to extract, repurpose, or reuse the Item in any other way. If your clients wish to make full use of the original Item themselves and use it within their own separate End Products, they will need to purchase their own license.
For example: You can use the photo to create customized flyers for different clients, but your clients can’t then reuse the original photo to create their own flyers in the future, without obtaining their own individual license for the photo (e.g. by purchasing it themselves, or you purchasing one on their behalf).
I interpret this to mean that we, as customers of Enfold, are not allowed to use these images for our own projects! I urge you to be careful. There are plenty of free alternatives on the market, e.g. via unsplash or pixabay.
To use it in the demo is o.k. but if you use it for our customers not – In fact, we would have to tell our clients not to use the images for any other purpose.What is this “scroll otherwise” – i did not hear it before – is it the post navigation arrows on single events?
Sometimes the rel=0 does work – sometimes not – i do not know why.
hyphenator – has been my favorite Plugin on that; especially because it could be used in a targeted manner by means of a custom class.
Server performance is heavily impacted by such hyphenation plugins. WP Typography works with the current version of WordPress, even though it has not been updated for a long time.thats my comment on the page language – where to find that screenshot page?
if you look to Ismaels code – he placed an order at the end – maybe that will do the job:
function sticky_posts_first($query, $params) { $include = array(); $sticky = get_option( 'sticky_posts' ); $args = array( 'post__not_in' => $sticky, 'order' => 'ASC', 'orderby' => 'date', // here you can influence the orderby option of the non sticky post to your needs 'numberposts' => -1 // if you like to show not only a few ); $posts = get_posts( $args ); foreach($posts as $post) { $include[] = $post->ID; } if ( !is_sticky() ) { $include = array_merge($sticky, $include); }; $query['post__in'] = $include; $query['orderby'] = 'post__in'; $query['order'] = 'ASC'; return $query; } add_filter('avia_post_slide_query','sticky_posts_first', 10, 2);
one big advantage is that it seems to work now to set the relative videos to not show: pause the video – then you do not see the relatives now.
HM??? the whole time the rel=0 works – now visiting your page again – the relatives are shown again …. ?
Or did you change the embed code?yes – i tested it too – and with the video element it does not start with autoplay – even if i mark the mute Option:
you can try a code block element with embed code:
<iframe id="ytplayer" type="text/html" width="720" height="405" src="https://www.youtube.com/embed/J9GuhL89q0I?autoplay=1&cc_load_policy=1&enablejsapi=1&loop=1&mute=1&rel=0&playsinline=1&color=white&iv_load_policy=3" frameborder="0" allowfullscreen>
…. it is hard to inspect your page ( i’m not able to read it ;) )
but if you decide to have alot of sticky posts – and have no pagination on showing the blog – there will be no other posts after the sticky ones.
My snippet looks a bit different on merging both ( sticky and include) – don’t know if they are equivalent each other:
function sticky_posts_first($query, $params) { $include = array(); $sticky = get_option( 'sticky_posts' ); $args = array( 'post__not_in' => $sticky, 'order' => 'ASC', 'orderby' => 'date', // here you can influence the orderby option of the non sticky post to your needs 'numberposts' => -1 // if you like to show not only a few ); $posts = get_posts( $args ); foreach($posts as $post) { $include[] = $post->ID; } if ( !is_sticky() ) { $include = array_merge($sticky, $include); }; $query['post__in'] = $include; $query['orderby'] = 'post__in'; return $query; } add_filter('avia_post_slide_query','sticky_posts_first', 10, 2);
maybe you can try that instead
Vielen Dank! Sind alle Demobilder aus dieser Quelle (Photodune) ?
PS – das Zertifikat ist nur im Private Content sichtbar?
I would like Christian Budschedl to comment on this. After all, this is his project and his responsibility. It has always been communicated that the images from the demos can be used, but I would like someone from the management level to officially confirm this. Because smaller web designers or even private individuals working on their own website are overburdened with such reminders, which are by no means uncommon. On my test installations, where I show solutions for other participants here in the forum, I have already left the demo images as they came from Enfold. If this is not clear, please let us know soon.
_______
Ich möchte Christian Budschedl bitten, sich dazu zu äußern. Schließlich ist es sein Projekt und seine Verantwortung. Es wurde immer kommuniziert, dass die Bilder aus den Demos verwendet werden können, aber ich hätte gerne, dass jemand aus der Führungsebene dies offiziell bestätigt. Denn kleinere Webdesigner oder auch Privatpersonen, die an ihrer eigenen Website arbeiten, sind mit solchen Abmahnungen überfordert, was durchaus nicht ungewöhnlich ist. Auf meinen Testinstallationen, wo ich Lösungen für andere Teilnehmer hier im Forum zeige, habe ich die Demobilder bereits so belassen, wie sie von Enfold stammen. Sollte dies nicht klar sein, bitte ich um baldige Rückmeldung.
______________________
PS: @werbeagenturlauf : Du soltest mit dem Veröffentlichen von Real Adressen und Namen hier vorsichtig sein, und diese schwärzen. Das ist wohl nicht DSGVO konform ;) und kann zu ähnlichen Abmahnungen führen.
btw:
https://de.trustpilot.com/review/www.copytrack.com
https://www.medienrechtsanwaelte.de/newsreader-38/copytrack-anschreiben-was-steckt-dahinter.html
https://www.haendlerbund.de/de/leistungen/rechtssicherheit/hilfe-bei-abmahnung/abmahnanwaelte/abmahnung-copytrack-gmbh
https://www.touristik-aktuell.de/nachrichten/reisevertrieb/news/datum/2023/11/14/bilderdiebstahl-vorsicht-bei-abmahnungen/
https://sos-recht.de/abmahnung/copytrack/etc.
on masonry – where you have set the grayscale effect – there is above that animation choice.
Das Ganze würde, wenn du denn beide nutzten wolltest ( du solltest dich allerdings für eine Version entscheiden ) so aussehen im Font Manager:
for example One : you can use the normal flyout and try to influence the slide-out behaviour.
f.e.:
.html_av-overlay-side.av-burger-overlay-active-delayed .av-burger-overlay-scroll { transform: translateY(0); } .html_av-overlay-side .av-burger-overlay-scroll { transform: translateX(0px); width: 100%; transform: translateY(-100%); transition: transform 2s ease }
see: https://basis.webers-testseite.de/
PS: you do not need to set the width to 100% if you like to have smaller burger menus
and if you like to have not the whole height (standard for av-burger-overlay-scroll is 100% on enfold ) – and like to scroll inside burger menu – but then the height has to be synchronised with the transformY value
f.e: height set to 50% – then transformY(-50%)the second link you list – is nearby the option on : Main-Menu – Overlay Style : Full Page Overlay Menu
try this as selector above in the snippet from: https://kriesi.at/support/topic/disable-image-title-tooltip-on-hover/#post-1467222
var links = document.querySelectorAll('a, img, *[title]');
have you activated the animation effect? – because on my test there is that extra class: av-masonry-animation-active
on yours only : av-masonry-animation-
https://webers-testseite.de/masonry-blog/Unfortunately, this disturbs the animation. I don’t know how I could prevent this. Sorry
on default the masonry content is placed over the whole image at the bottom.
You can avoid it by setting ( you had to play a bit with the values ) them outside the image.:this to quick css:
.av-masonry-entry:not(.av-masonry-item-no-image) { margin-bottom: 145px !important; } #top .av-inner-masonry { overflow: visible; } .av-fixed-size .av-masonry-entry .av-inner-masonry-content { bottom: unset !important; top: calc(100% - 1px); min-height: 135px; }
Ok – put only your 1/4 columns in one color-section – nothing else – the heading and separator had to be in an extra section.
Because as mentioned on may page – every element will be part of that grid layout.For your anchor navigation : maybe your heading including the separator got that ID.
For the grid layouted section do not forget to set the custom class – and put all ( like on my preview image of the layout ) in that section ( all 7 ) -
AuthorPosts