Forum Replies Created
-
AuthorPosts
-
June 6, 2018 at 7:18 pm in reply to: How to Delete Enfold Logo on Site and Replace with Mine? #968011
so why don’t you go to enfold (child) – header and choose “logo left – menu right”
what you got is logo left – menu belowJune 5, 2018 at 8:45 am in reply to: First Lawsuits (GDPR) are rolling – due to Google webfonts (how to deactivate?) #967064this is nice – but with my method of loading the fonts (link ff) and an addition little plugin (remove-google-fonts-references) i can select the fonts from Enfold drop down list to use the local installed fonts.
So for me it would be nice to actively run a script that supresses connection to google font servers (to get rid of that additional plugin) but to use that nice performant drop-down lists.Or to have the possibility to upload real font files to enfold via import as zip-file ( the downloadable fonts on google are only ttf files)
like these downloadable google fonts on : Link
But all tryings to upload these zip files with woff, woff2 etc do not have successi would do it with entypo signs
if you see this demopage: https://webers-testseite.de/bullets/
this is a text-block element with a normal unordered list. –i gave the text-block element a custom class: special-listpoints
.special-listpoints ul { list-style: none; } .special-listpoints li::before { content: "\e813"; font-family: entypo-fontello; color: #f00; } .special-listpoints li::before { content: "\e813"; font-family: entypo-fontello; color: #f00; position: relative; padding-right: 11px; margin-left: -20px; }
you see that you can play now a bit with for example on before font-size or top left etc
-
This reply was modified 7 years ago by
Guenni007.
on google page there are only ttf to download.
have a look at: https://google-webfonts-helper.herokuapp.com/fontsJune 4, 2018 at 10:38 am in reply to: Enfold not GDPR compliant – Video with NoCookie from Youtube impossible #966418yes i know that – but i use a different google maps plugin. And the prevent loading roboto script does not work propper on that plugin.
If there are technical obstacles to integrate this variant, please say so. If this does not exist, it would be nice to let the user decide which version he likes to use. I think that to get rid of that DoubleClick Tracking-Cookie is positive enough to have that nocookie variant of youtube videos even if an ID is sent – and even if it is only an apparent security, the cookies that clearly violate the GDPR are banned.
June 4, 2018 at 9:58 am in reply to: Enfold not GDPR compliant – Video with NoCookie from Youtube impossible #966401so the only advice is at the moment to have no youtube/vimeo videos – no google Maps or Fonts on start page.
so if you like to show a background video / video on startpage it has to be a selfhosted video. After the cookie consent and the link to Privacy Policy is clicked away or read everything is ok. After informing the visitiors – everything can happen.
So both pages ( Start Page and Privacy Policy must be free with loading api/ setting cookies etc.For the first time i have all my website turned into selfhosted font sites – and have no map api loading on startpage ( because the api loads roboto font) and get so in contact with google servers.
-
This reply was modified 7 years ago by
Guenni007.
to insert on menu an individual menu you had to input an url ( so here you can take your #). But after inserting you can empty that field on the menu point.
the link after kriesi is https is now: https://kriesi.at/themes/enfold-hotel/wp-content/uploads/sites/58/2015/07/ornament-bg-top-small-1.png
It is in the first color-section after the slider as background-image.
Just put in a different image from your media library and save – if you do not need any image there delete it afterwards and savetry this in your functions.php of your child theme with copy paste – maybe you got some quotationmarks faults etc.
if(!function_exists('avia_debugging_info')){ function avia_debugging_info() { // } }
check please if you have on child-theme a header.php – if so you had to know what you are changing there. take a new copy of the new header.php and edit it as you done it before.
Updated to Enfold 4.4
May 31, 2018 at 4:13 pm in reply to: Checkmarks in Performance – self hosted video – youtube video #964820thanks – Günter
for outside list-style-position:
Edit : ok there was a overflow setting which is set to not visible to widget ul so to see the outside points :
ul.squarepoints { list-style: square outside; margin-left: 18px !important; width: auto !important; overflow: visible !important; }
-
This reply was modified 7 years, 1 month ago by
Guenni007.
hm – there was rule in base.css :
ul { list-style: none outside; margin-left: 7px; }
don’t know why – maybe it is forgotten to set the specified rule for widgets
maybe you set better the ul to a custom class because not to influence all ul’s of your site like:<ul class="squarepoints"> <li>sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,</li> <li>sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum.</li> <li>Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur</li> </ul>
and then:
ul.squarepoints { list-style: square inside; margin-left: 7px !important; }
Thanks – and if i want to debounce a function it is used in Enfold like:
win.on( 'debouncedresize', function(){ …
without parameter or can i change the trashold on this function by:win.on( 'debouncedresize', function(){ … }, 50);
That is the best way to do – as i mentioned above.
Better search and replace looks similar to that search and replace ( source is Frank Bültge – who has created a lot of good tips and plugins) i mentioned above.Sehr wichtig für dich: Dein Cookie Consent Popup überlagert den Link zu den Datenschutzhinweisen. Das ist nicht zulässig.
Ich würde in dem Fall dann lieber die rechts unten Popup-Variante von Enfold ( oder was immer du nutzt ) nehmen-
This reply was modified 7 years, 1 month ago by
Guenni007.
Wenn du das neue enfold 4.4 hast kannst du ja in den Optionen den Layerslider mal deaktivieren. Dann wieder aktivieren. Eventuell setzt sich der Link dann auf https.
maybe this is concerning to a comment i gave on a different topic:
i have uploaded the zip i got from google with a lot of font-styles in it ( 300,400,600,700 and all italic too)
but on selection there is only a 400 font-style mentioned – maybe the others are selectable too via css .i think your code is correct – anyway you can test this in your functions.php of your child-theme:
function avia_custom_mobile_logo(){ if(wp_is_mobile()){ ?> <script> jQuery(".logo img").attr("src", "https://www.domain.com/wp-content/uploads/logo-for-mobile.png"); </script> <?php } } add_action('wp_footer', 'avia_custom_mobile_logo');
or with the filter :
add_filter('avf_logo','mobile_logo_url'); function mobile_logo_url($url){ if(wp_is_mobile()){ $url = "https://www.domain.com/wp-content/uploads/logo-for-mobile.png"; } return $url; }
And you really want a different logo for mobile devices ( ipad, iphone, smartphones, tabletts etc) and not a logo for smaller screens?
Gerade getestet – ohne Anpassung der Lang files wird hier ausgegeben:
Vielen Dank für Ihre Nachricht! im Betreff
und unten im Text dann auch :
Ihre Nachricht:
…Versuch mal folgendes:
Bei Einstellungen / Allgemein – Sprache der Webseite – da hast Du dein WordPress eben auf deutsch stehen. Da gibt es bei den Einstellungen auch deutsch(Sie) oder Formal genannt – von förmliche Anrede.
Dann nimmt enfold die po/mo files …formal.po / …formal.mo
leider ist diese Version nicht so vollständig übersetzt wie die informale Version. sollte also dort auch etwas anderes stehen, musst du die lang files bearbeiten und im Child-Theme ablegen – am besten auch in einem lang ordner und dann die child-theme langfiles so ersetzen:function overwrite_lang_files() { $lang = get_stylesheet_directory().'/lang'; return $lang; } add_filter('ava_theme_textdomain_path', 'overwrite_lang_files');
May 29, 2018 at 12:35 am in reply to: Google Maps Button is active on standard! [av_privacy_google_maps] #963471if loading the api is against GDPR is not sure. If you declare it in your privacy policy – i think it will be ok.
May 28, 2018 at 11:23 pm in reply to: Google Maps Button is active on standard! [av_privacy_google_maps] #963458but ! – the api is loaded already – with or without that consent
zum ersten: hast du von fastest cache den cache geleert?
ok ich schreib jetzt mal in deutsch.
Ich nutze nach der Umstellung von Internetseiten von http nach https immer das Tool : Search & Replace von Inpsyde ( da ist der Bueltge mal dabei). Geniales teil, aber man kann wenn man ungeschickt sucht sich die datenbank zerhauen.
Einfache Denker würden zB nach http in der Datenbank suchen und gegen https tauschen. Das kann schon zu Problemen führen
Man geht so vor, dass man zunächst die Datenbank mit dem Tool sichert.
Dann kann man zB in deinem Fall nach : http://www.fitgutschein in allen Tabellen suchen lassen, und gegen https://www.fitgutschein ersetzen. Das kann man zunächst ohne Änderung im “Dry Run” machen ( schau dir die Screenshots an) in deinem Fall wird er einige Links zu Scripten und css Dateien finden die noch http sind.
Im folgenden Schritt dann select all tables and save changes to database.
Das wars. Klappt bei mir immer.what should be possible is to insert on background-video input field the nocookie link version too.
All other things can be managed this way: https://kriesi.at/support/topic/youtube-shortcode/
and the further link to my testpage: https://webers-testseite.de/youtube-shortcode-for-enfold/
it uses the enfold surrounding container so it is responsive due to enfold settings of the containersYes – but now it is a bit different:
the shrink calculation is on enfold 4.3 ff a seperated js file
so just upload a copy of that file avia-snippet-sticky-header.js to your child-theme js folderadd this to your functions.php of your child-theme:
add_action( 'wp_enqueue_scripts', 'wp_change_sticky_header_script', 100 ); function wp_change_sticky_header_script() { wp_deregister_script( 'avia-sticky-header' ); wp_enqueue_script( 'avia-sticky-header-child', get_stylesheet_directory_uri().'/js/avia-snippet-sticky-header.js', array('avia-default'), $vn, true); }
and edit then this copy as you need it.
can we please have the shortcode set to be disabled first and then enabled by active setting of the user. this will be the better solution i think!
Disable on default then the shortcode generated buttons will enable the usage of ( webfont, maps, youtube etc.)i downloaded from the google fonts helper page the open-sans with more stylings (300, 300i, 400, 400i, 600, 600i, 700, 700i) only for modern browsers (woff, woff2 files) the zip was accepted but only a 400 is shown ?
Did i do something wrong – or is my manual way then the better solution? -
This reply was modified 7 years ago by
-
AuthorPosts