Forum Replies Created
-
AuthorPosts
-
cool danke, hat geklappt!
hey mike,
i think i found what caused the issue since a normal pages runs without any issues:
metazeit.de/kontakt/
it has do to something with the home page and with a little research its because we use the youtube video background section:
metazeit.de/#konzept
where the video is embedded as https://www.youtube.com/watch?v=A4ny5bNjImcaccording to this link the solution would be to use a different url to embed the video in private mode, in my case:
https://www.youtube-nocookie.com/embed/A4ny5bNjImc
which is working standalone but somehow the background video stays black (because theme blocks this url?).i solved it by uploading a mp4 directly to the server which even loads quicker.
but maybe you could add a no cookie solution for the youtube videos in the upcoming version of the theme by simply allowing those nocookie links.
thomasOctober 11, 2021 at 12:12 am in reply to: make contact form scroll to sucess or error message after submission #1324327hey mike, thanks i haven’t thought about a popup at all, but it does the job quite well.
thanks and all my best
thomasplease check https://www.metazeit.de – i disabled every plugin and still got this. so it must be the theme.
i found this in the hml head, but i don’t know where it is injected via php.
<script id="js-1124342058" src="//static.doubleclick.net/instream/ad_status.js" nonce="s0JJyUU/E8kuwTXhfR7i7Q"></script>
thanks
thomasOctober 9, 2021 at 1:08 pm in reply to: make contact form scroll to sucess or error message after submission #1324212any news on this?
October 7, 2021 at 7:27 pm in reply to: Contact Form – After press sent, the message isn't vissible without scroll up #1323982hey ismael this code doesn’t seem to work with 4.8.6.2
i figured out that the contact.js moved to /enfold/config-templatebuilder/avia-shortcodes/contact
but after the change nothing happens. you can check out my form at https://www.metazeit.de/#formular – my client actually needs to scroll down not up to see the error or sent message after submission. i just extended my support to get help for this problem, so hopefully you can provide my with a working solution.
thanks and all my best
thomas- This reply was modified 3 years, 1 month ago by brouge.
ok found it and put it in a plugin:
add_filter( ‘avf_google_heading_font’, ‘avia_add_content_font’);
add_filter( ‘avf_google_content_font’, ‘avia_add_content_font’);
function avia_add_content_font($fonts)
{
$fonts[‘OpenSans’] = ‘Open Sans:200,300,300italic,400,400italic,600,600italic,700’;
return $fonts;
}looks like enfold is only loading standard values 400,600 and so on by default.
ok i solved it with a plugin:
<?php
/*
Plugin Name: Enfold Permissions
Description: Enfold Permissions
Version: 1.0
Author: InoPlugs
Plugin URI: https://inoplugs.com
Author URI: https://inoplugs.com
*/add_filter(‘avf_file_upload_capability’, ‘avia_file_upload_capability’, 10, 1);
function avia_file_upload_capability($cap)
{
$cap = ‘edit_posts’;
return $cap;
}ok, i got it from the documents – allthoug most of the functions.php entries wont work except of the first h1 one.
hello victoria i bought the theme and upgraded sucessfully.
how can i insert a title and subtitle instead of a logo?all my best
thomas -
AuthorPosts