Forum Replies Created

Viewing 30 posts - 5,791 through 5,820 (of 11,489 total)
  • Author
    Posts
  • in reply to: YouTube video in background not gdpr compliant #1161844

    also the No-Cookie-Version is not conform with GDPR (DSGVO) guidelines.
    by the way – even an iframe embedded youtube video is transformed from google (youtube) to the shortform of: https://youtu.be/…

    And even borlabs cookie does not block : background-videos
    borlabs does not block the new possiblity of video alb to show on lightbox ( meant is not to block the iframe itself – but the preview image and the link to the lightbox.
    That is very sad because blocking embedded videos is working good: https://webers-testseite.de/youtube-nocookie/

    CSS : Cascading Style Sheet – the ids and classes that comes first in the markup are in front
    the first that comes on the markup is the html – and html is not a class!
    Where is your page-id ? : It is on the body tag! ( and that has the id : top and comes after html)
    and that is right: those frames are childs of body – so there is a space between #top and .av-frame

    so :

    html.html_av-framed-box #top.page-id-29 .av-frame.av-frame-vert  {background: #ff6600 !important}
    html.html_av-framed-box #top.page-id-29 .av-frame.av-frame-bottom  {background: #ff6600 !important}
    html.html_av-framed-box #top.page-id-29 .av-frame.av-frame-hor  {background: #ff6600 !important}
    html.html_av-framed-box #top.page-id-29 .av-frame.av-frame-right  {background: #ff6600 !important}
    in reply to: SHOP IS DOWN because of ENFOLD #1161635

    Also ich kann hier die unterschiedlichen Farben wählen, (selbst hinter einem VPN ;) ) klappt alles wunderbar.

    in reply to: Custom Advanced Layout Builder Elements #1161588

    hi kahil – looks very nice
    are the new possibilites of developer tab are included to your alb elements? Custom Class and ID etc.?

    in reply to: Bug: Enfold causes wrong update markers #1161578

    hey Günter – as far i can see this is only added a condition for an existing standalone layerslider plugin – and that makes sence.
    But we only want to know how to use the existing filter ( avf_show_layerslider_update_notification ) to hamper the update nag of the included layerslider.
    My first thought on: Link – blocks all update nags not only the layerslider one.

    the code we can find here on board:

    function remove_ls_update_notification() {
    	return 'no';
    }
    add_filter('avf_show_layerslider_update_notification', 'remove_ls_update_notification');

    does not work

    My first thought was to use the waypoints script. Enfold has on default implemented the waypoints script.
    You can google to its functionality.

    if you have defined for the color-section background-colors. You can use it to give that color to the header_bg background-color:
    see here: https://webers-testseite.de/datenschutzerklaerung/

    this comes to child-theme functions.php:

    function header_bg_color_on_scroll() {
    ?>
    <script>
        (function($) {
        var element_to_animate = $('.avia-section');
    
        element_to_animate.waypoint(function(direction) {
        if (direction === 'down') {
            var section_color = $(this.element).css('background-color');
              $('.header_bg').css('background-color', section_color);
            }
            }, {
              offset: '100px'
            });   
        element_to_animate.waypoint(function(direction) {
        if (direction === 'up') {
            var section_color_prev = $(this.element).prev().css('background-color');
            $('.header_bg').css('background-color', section_color_prev);
              }
            }, {
              offset: '100px'
            });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'header_bg_color_on_scroll', 9999);

    The Offset depends on your header height in scrolled mode – so if you have a shrinking header it will be the end height after scroll.
    You can test it yourself

    in reply to: Removing bottom border from "fixed frame" layout #1161462

    you mean this? :

    .av-frame.av-frame-bottom.av-frame-vert {
        display: none;
    }
    in reply to: two elements with id="avia-menu" (accessibility issue) #1161442

    what enfold version did you use. These duplicate id’s if you use a header layout where header_main_alternate was created is solved on newer versions. f.e. on pages with header top navigation below:

    you see that the original menu ul got a different id

    in reply to: Standard button link to open in a pop-up #1161441

    it is not solved – but you link to the page which should pop-up ( https://www.housescape.org.uk/cgi-bin/full.pl?&pab1&&PAB1000374 ) is not helpfull.
    Where is the page with the button?

    in reply to: Enfold Update 4.6.4 #1161439

    i mentioned it too that the message of ThemeForest ( Envato ) was a misinformation. What i try to say about the link above is that I can’t understand how to update live sites, especially those with shop systems, without having a quick rollback in the background.
    With the above mentioned method this is a thing of not even 5 min to return to the old state.
    Instead, we read here some abusive tirades and that the team has to do as fast as possible to fix the bugs.
    If an active website is running, then there is no need to update it – if I have only such pages at the start, you should only update according to the method above.

    By the way – it is not the first time that Envato announces a new Version and there was still the old one – or the complete download is not updatet – but only the installable WordPress File has the new version etc. pp.: in order to save yourself unnecessary work, a quick look into the style.css would be helpful after the download.

    in reply to: German language settings #1161371

    Where did you get the wordpress from? : https://de.wordpress.org/download/

    this is the whole languages folder of WordPress 5.3 German : Download
    Try to replace the whole folder on your installation.

    on your dashboard your Settings in : Einstellungen – Allgemein ( Settings – General )
    and look on your User Account too: There is a language Input Field.

    in reply to: Enfold Update 4.6.4 #1161256

    yes – I also wanted to test the new update directly and saw then also that it was still the old version.
    I can’t understand your problems after an update. In a “non-test environment” you at least keep a rollback ready.
    I posted this already in October 2018 and is still the safest method to update and come back in case of inconsistencies or bugs.
    https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1056107

    in reply to: Update for LayerSlider notification #1161099

    the site-transient-update-plugins does not work – on some places in internet i found this pre_site_transient_update_plugins
    The code which i try to use to only block layerslider update notification was:

    //Remove layerslider update nag
    function remove_ls_update_notification($value) {
    	if($value) {
    		unset($value->response['https://YOUR-DOMAIN/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php'] );
    		return $value;
    	}
    }
    add_filter('pre_site_transient_update_plugins', 'remove_ls_update_notification');

    or :

    function remove_ls_update_notification($value) {
    	if($value) {
    		unset($value->response['//'.$_SERVER['HTTP_HOST'].'/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php']);
    		return $value;
    	}
    }
    add_filter('pre_site_transient_update_plugins', 'remove_ls_update_notification');

    but it blocks all ( don’t know why) update-notifications.

    in reply to: Terrible SLOW – images almost dont load at all #1160634

    I can’t confirm that on my side too. Although the gtmetrix values are not so nice –
    It loads itself everything quite quickly ( And i cleared all cachings before making the screen film ) . See film. https://webers-testseite.de/wp-content/uploads/maskenzauber.mp4
    Chrome only reports mixed content when loading some fonts – see picture.
    but if you see the more informative Speedtest on gtmetrix: https://gtmetrix.com/reports/maskenzauber.com/88uokIa1
    you will see that what probably slows down the most are the images that have not been optimized for the output sizes.
    Next thing is matomo.js could be compressed ( thats your analytics tool ? )

    in reply to: Can I move one color section into another? #1160599

    Unfortunately, many have a wrong idea of how responsive images ( background images ) work.
    Either the image reacts to the screen width, then you can see it completely across all widths. For background images this would be the contain property. – Or you can specify fixed heights or width ( this is the cover variant), then the image will be cropped at different screen widths. Of course you can compress or stretch the image, but this is not advisable for a concrete image.

    Well you have enough variants now – I hope you find an acceptable solution. I would prefer the two color-section solution, and give both the same class.

    in reply to: Can I move one color section into another? #1160595

    and what hampers you to change a littlebit the layout:

    in reply to: Can I move one color section into another? #1160586

    with this setup :
    custom-ID of the color-section is: Pferd

    see: https://webers-testseite.de/feedxl/
    you can give to the 1/1 containers a fullwidth definition. – But in responsive Case the columns react normal and flow under each other.
    if you have only 1/1 it will work.
    The css for that example above (think to get rid or replace the custom-ID):

    .responsive #top #pferd .container {
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    .responsive body #pferd .column-top-margin {
        margin-top: 0;
    }
    .responsive #pferd .flex_column.av_one_full {
        height: 50% !important;
    }
    .responsive #top #wrap_all #pferd .flex_column {
    	margin-bottom: 0 !important
    }
    in reply to: Can I move one color section into another? #1160565

    first : that is not possible.
    second: Look here: https://webers-testseite.de/feedxl/
    what is wrong on having it this way? in other words: what is the benefit of having the whole thing in one section.

    https://webers-testseite.de/feedxl-2/
    it is possible to have more than one background on a container – all definitions are separated by commata:
    see here a little tutorial: https://webers-testseite.de/multiple-background-images/
    You have to have the horse as cutoff png file.
    but you then have the problem on responsive case with the not growing half part at the bottom – so the text has no place to be in there – and it grows then to the top into the other half.
    (on that example i have the custom-id of halbhalb (that is the german expression for halfhalf)
    and that color-section got no padding!:

    #halbhalb {
    	background-repeat: 	no-repeat;
    	background-image: 	url(https://webers-testseite.de/wp-content/uploads/pferd.png), linear-gradient(#f2d7d0 50%, #fe6d6a 50% );
    	background-attachment: 	scroll;
    	background-position: 50% top, center center;
    	background-size: auto 50% , 100% 100%;
    }
    
    #halbhalb.avia-section.av-minimum-height .container .content {
        vertical-align: bottom;
    }

    So my advice is to use two color-sections. https://webers-testseite.de/feedxl/

    in reply to: Bug: Enfold causes wrong update markers #1160455

    hi ismael – how to use it: This does not have effect:

    function remove_ls_update_notification() {
    	return 'no';
    }
    add_filter('avf_show_layerslider_update_notification', 'remove_ls_update_notification');
    in reply to: Update for LayerSlider notification #1160454

    i try to use the filter too – experimenting with its use- but your code Nikko do not have effect on my installation too.

    in reply to: FEATURES FROM OTHER DEMO SITES #1160452

    and maybe this is an interesting thought on how to get the shortcode from a demo page:
    https://kriesi.at/support/topic/how-do-i-create-block-with-these-squares/#post-1159564

    ich befürchte, dass ein “Banner” – Bild in der Position – mit einem Header der dann oben on top fixed ist während der Banner ( Bild ) wegscrollt nicht einfach zu erreichen wird sein.
    Sowas ist natürlich möglich – aber kostet wohl ein wenig Zeit. Eventuell belehren mich die Mods eines Besseren

    ___________

    I’m afraid that a “banner” – image in position – with a header that is then fixed on top of top while the banner ( image ) scrolls away will not be easy to reach.
    Such a thing is of course possible – but costs probably a little time. Maybe the mods will teach me better

    Dieses Snippet oben : Link kommt in die child-theme functions.php
    dann gehst du zum widget bereich und fügst den widgetbereich “header” hinzu:

    Dann kannst du dort ein Image ALB platzieren in dem Widget ohne Titel ( notiere dir die Aspectratio ) ( in meinem Beispiel 472:1600 = 29.5% )
    jetzt nur noch die Responsivität gewährleisten also widget area ohne padding und in 100vw breite höhe entsprechend der AspectRatio ( bei mir 29.5vw)
    das img genauso.

    Du muss dann natürlich die Seiten .page-id-36310 rausnehmen:

    .page-id-36310 #header_main .widget, 
    .page-id-36310 #header_main .widget img {
        padding: 0;
        width: 100vw;
        height: 29.5vw;
    }
    
    .html_top_nav_header.html_header_top.html_header_sticky #top.page-id-36310 #wrap_all #main {
        padding-top: calc(29.5vw + 85px);
    }
    
    @media only screen and (max-width:767px) {
    	.responsive #top.page-id-36310 #main {
    	  padding-top:0 !important;
    	}
    }

    Leider ist es so, dass wenn man den Header sticky hat der Bereich auch sticky ist.
    wenn man den header auf scroll hat – scrollt es mit raus:
    https://webers-testseite.de/kitten/

    in reply to: remove logo but keep transprency logo #1160088

    have you a shrinking header? thats what i ask above.
    these two classes are only present if there is a shrinking header.
    ( you know – i do not see private content area as participant )

    na ich dachte so als Webdesigner wüßte man wie ;)
    Morgen mehr
    Aber wie gesagt ohne die Seite zu sehen stoppt mein Support hier. Da musst du dann auf die Mods warten wenn Du es nicht öffentlich machen kannst.

    By the way: https://kriesi.at/documentation/enfold/?s=header
    Selber lesen macht auch (nur) schlau ;) . Die Dokumentation ist wirklich gut.

    ich denke dann ist der beste ansatz: ein header widget bereich anzulegen:

    /*********header widget ****************************/
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
      dynamic_sidebar( 'header' );
    }
    

    and create a widget on widgets called “header” – insert your image there and style it via quick css

    ich muss deine Seite sehen. – ins blaue hinein vermutungen anzustellen ist nicht zielführend.
    Es wird aber mit der von Enfold festgelegten Verhalten für Header schwer. Denn die Position wäre entweder in header_meta als last-child oder in header als first-child – beide Positionen sind bei einem fixierten header schwer zu realisieren. Der Content (#main) muss ja auch noch die Info erhalten welches Padding es zu Top halten muss.

    in reply to: How do i create Block with these squares #1159783

    you are welcome.

    this is a nice way to pick out the enfold shortcode to select some layouts from the pages of a demo.
    Because of the original insertions (image links – categories – postlinks etc. pp) – you only had to adjust the layout after import.

    sometimes on those xml datas the content starts with : <wp:meta_value><![CDATA[{{{title}}} – copy only the enfold shortcode – without those curly brackets. ( Mostly it will start as mentioned above: <content:encoded><![CDATA[

    Also : die Header Sachen kannst du im Enfold Optionen Dialog unter dem Tab Header einstellen:

    Header – Header Layout – Menu and Logo Position: Logo Top – Menu Below. ( kannst du hier sehen: https://webers-testseite.de/kontakt/ )

    Dann wie oben beschrieben
    habe es mal für Dich auf dieser Seite so gemacht ;)
    Du siehst es kappt auch responsiv ( nur der Header nicht – weil ich auf meiner Testseite auch mit Headervarianten gespielt habe. – die anderen Seiten haben andere Header Layouts)

    in reply to: How do i create Block with these squares #1159566

    you have to adjust now the content of the layout builder elements – because the links f.e. in it works if the link target is set to your targets.
    And the icon-set is not in your installation

Viewing 30 posts - 5,791 through 5,820 (of 11,489 total)