Forum Replies Created
-
AuthorPosts
-
Do please a complete new upload. Not overwriting an existing enfold folder.
That is what that plugin “Update Theme and Plugins from Zip File” does if you mark to “Enable saving a backup copy of old version… “how did you upload the folder to your themes folder. Overwrite the files or a complete new upload.
I do alway update via ftp but i do not overwrite files. I rename my enfold folder to enfold-old and upload the newest enfold folder then.
see here some hints: https://kriesi.at/support/topic/some-hints-and-advice-to-update-enfold/#post-1022056This method has a big advantage because there is always a rollback folder if something went wrong.
All my CF7 installs do send ( even with upload ) E-Mails.
It is usually a user error and not an application error.
Very rarely the sent e-mails end up in the Junk E-Mail folder. However, this has more to do with the fact that the recipient’s e-mail does not match the domain url.the easiest way to get help would be a live link to that page.
If you don’t want to make it public just post the link into Private Content field – but then you must wait for moderators to come heregenau – und was ich beschreibe, hilft dir diese Zeichen zu verwenden, ohne dass Sie dir das Layout zerschießen.
how does the inserted code for the inputfield of the upload look like on your installation?
have you set a limit of upload data size – think of it that it is byte ( not kb – not MB)ich denke du hast das gleiche Problem wie hier: https://kriesi.at/support/topic/in-content-crash-page/
du benutzt größer gleich oder kleiner gleich Zeichen in deinen Texten, das wird aber als anfang bzw ende eines Tags interpretiert.Bei manchen ALB Elementen wird es reichen ein Entity zu benutzen: http://unicode.e-workers.de/entities.php
die besagten Zeichen oben aber bedürfen der extra FürsorgeJanuary 17, 2019 at 3:47 pm in reply to: How do I add a link to my top navigation to open a pop up with layer slider 6? #1055023isn’t the popup option not only for use with a single license and not the included one?
but to use the inline-popup method and use the shortcode of the slider could work for you.
Well, that really seems to be a German problem, that you try to comply with the law.
I don’t think it’s actually eaten as hot as it’s cooked.
But – you are right – for me as a German it is probably also too important to correspond to that.so i started here my thoughts on how to fullfill all aspects of the GDPR (DSGVO)
Maps: https://kriesi.at/support/topic/google-maps-gdpr-dsgvo/Same thing with youtube films : https://kriesi.at/support/topic/checkbox-to-show-lightbox-or-not/#post-1011241
See how it works: https://webers-testseite.de/weber/youtube-links/
On Google Font load – i do it localy : the copyright is clear on googel fonts – they allow to download and do a selfhost.
Edit : try next tip
-
This reply was modified 6 years, 1 month ago by
Guenni007.
i had only reduced the amount of # because i had no desire to always insert 3 before 3 after.
Of course you can customize this list in the plugin for your purposes.'#singlequot#' => "'", is taking place: '#34#' => "'",
but also add new ones etc.
well Günter here from Developer Team has written a little plugin for that:
https://kriesi.at/support/topic/team-member-section-text-pasting-problem/you can see it here on my pastebin: https://pastebin.com/95mEDRYY
i edited a bit – this part is for substitution responsible:
public function __construct() { $this->translate = array( '#lt#' => '<', '#gt#' => '>', '#amp#' => '&', '#91#' => '[', '#93#' => ']', '#quot#' => '"', '#34#' => "'", '#br#' => '<br/>' );
Then you can place these special characters by using the other signs like #lt# for less then etc
This will work on tables as well as on headings input field on ALB etc pp. – All credits goes to GünterJust download : https://pastebin.com/dl/95mEDRYY the php – maybe put it in a folder like “avia-special-characters” and upload it to your plugins directory.
Activate it and use the alternative signsby the way – is this solved for you: https://kriesi.at/support/topic/tag-archive/
Enfold Options – Sidebar Settings – Sidebar on Smartphones
“Show sidebar on smartphones (Sidebar is displayed then below the actual content)”Where did you get the shortcode from? – so why don’t you insert the link first to that source and then copy/paste the shortcode?
bitte so nehmen sonst sind die kleinen listen auch verändert:
.avia-icon-list.av-iconlist-big li { min-height: 200px !important; }
ich bin wie Sie auch nur ein Teilnehmer mit manchmal guten hilfeangeboten.
Daher sehe ich die Zugangsdaten nicht.
Versuchen sie den code oben – eventuell die 200px anpassenit will be much easier to inspect your code if we had a live link.
Otherwise we had to reproduce your site – and it’s very time consumingTry to adjust the minimum height of the list item to your needs.
.avia-icon-list.av-iconlist-big li { min-height: 200px !important; }
-
This reply was modified 6 years, 1 month ago by
Guenni007.
the transparency comes from the title container:
but border style belongs to #header and main:.title_container { background-color: transparent !important; border: none !important; } #header_main, .container_wrap_first.container_wrap { border: none !important; }
With your given png it will be that solution you have. – but with a svg it is mucht easyer because you can have css rules for singel path if you want.
You can see here a demo – the text “Bonn” vanishes on scrolled case – and if you hover the logo the path “Bonn” gets red etc. pp.
nice to have svg for web. : https://webers-testseite.de/cynthia/
by the way it is my playground for some header / logo changingsJanuary 17, 2019 at 10:52 am in reply to: Fixing background from scrolling when inside lightbox #1054919you have to put this into your child-theme functions.php:
add_action('wp_footer', 'custom_lightbox_script'); function custom_lightbox_script(){ ?> <script type="text/javascript"> (function($) { function a() { $('body').on('click', '.lightbox-added', function() { if($('.mfp-bg').length >= 1) { $('html').css("overflow-y", "hidden"); } }); $('body').on('click', function() { setTimeout( function() { if($('.mfp-bg').length == 0) { $('html').css("overflow-y", "scroll"); } },500); }); } a(); })(jQuery); </script> <?php }
some people would pay money for a code like that ;) :lol
to get rid of repeat – just put this to your quick css:
#av_section_1 .av-section-color-overlay { background-repeat: no-repeat !important; background-position: bottom center; }
i would have done that all via custom-class.
You know how to get the custom-class field in enfold? : it is on Enfold Options – Layout Builder – and check “Show element options for developers”nothing opens at all. Continous spinning wheel on top
put this to the child-theme functions.php:
add_filter('avf_logo_link','av_change_logo_link'); function av_change_logo_link($link){ $link = "https://www.mrichards.com.br/"; return $link; }
have you a live link for me ?
but if it is a feature that all first color-section should do that:
#av_section_1 { background: #EEE url(/wp-content/uploads/2019/01/skycontentc.jpg) repeat 0 0; width: 100%; margin: 0; -webkit-animation: slide 20s linear infinite; animation: slide 20s linear infinite; } @-webkit-keyframes slide { from { background-position: 0 0; } to { background-position: -400px 0; } }
by the way: this #EEE in the code can be overwritten by the color defined in color-section ALB – if your image is a transparent png.
but i think you like to show a passing cloudy sky
But – then the jpg has to be seamless otherwise you will seewell all first color-section on enfold got that ID ( av_section_1 ) on default !
Only if you fill the input field “For Developers: Section ID” – the ID will change to that custom oneis it realy a class that av_section_1 ? try #av_section_1
but you should be more specific – otherwise all first color-section will do thatwell everything is on your linked page!
just make a color-section and give a custom class ( hero-bkg-animated ) to it. Place the code into your quick css..hero-bkg-animated { background: #EEE url(//webers-testseite.de/wp-content/uploads/geometry2.png) repeat 0 0; width: 100%; margin: 0; -webkit-animation: slide 20s linear infinite; animation: slide 20s linear infinite; } @-webkit-keyframes slide { from { background-position: 0 0; } to { background-position: -400px 0; } }
the 400px depends on the png you like to use – the height of the color-section can be different to that.
https://webers-testseite.de/hostage-media/
PS : and if you take a real png with transparency – the background-color can be changed here too !
and i would include the animation ( not only the -webkit-animation to that rulePPS: if you change the keyframe to – you will have diagonal animation etc. pp
@-webkit-keyframes slide { from { background-position: 0 0; } to { background-position: -400px -400px; } }
Yes gitte – but you can not have that : “Custom top and bottom margin” for a single Column. Always both columns get the setting!
You can set both columns to equal height and set them to bottom alignment. But then view on smaller screens will get confused and you have more control on the overlapping behavior on my method.
If you only have one image then the 1/1 container will be a good and quick alternative – as you said -
This reply was modified 6 years, 1 month ago by
-
AuthorPosts