Forum Replies Created
-
AuthorPosts
-
Sorry!
I just found the solution. It´s a plugin issue.
ISSUE SOLVEDAmazing! Guenni007 you are great.
With your solution it is even possible to group a single image alb element with a gallery element. That´s exactly what i was looking for.Topic can be closed!
Thank you Guenni007!
I´ll try the solution from your first answer. I think that will do the trick and it is great that i can be handled by page ID.OK, after reading some threads about this issue i figured out that i have to deactivate W3 Total Cache plugin.
It was a caching issue. Topic can be closed.
Thank you for the support and patience.
Regards, Chris
This reply has been marked as private.Hi Ismael!
Maybe there was a temporary problem. It should work now, i can access the site and dashboard.
October 15, 2019 at 1:37 pm in reply to: Fusszeile (Impressum, AGB, etc.) Schrift vergrößern #1148071Hallo Jörg!
Ich werde dir jetzt nicht die ganze Seite anpassen, aber das müsste helfen:
#socket a {line-height: 2em;}
Mit dem 2em kannst du spielen (z.B. 1.5em) oder Pixelwerte wie 20px einsetzen.
Line-height heißt nur Zeilenabstand und das ist das Problem bei dir, glaube ich?!?
Das “a” bedeutet das es nur auf Links angewendet wird.lg
Christian
October 15, 2019 at 1:00 pm in reply to: Fusszeile (Impressum, AGB, etc.) Schrift vergrößern #1148053Hi Jörg!
Das ist simples CSS und z.B. über Firefox und Web-Entwickler kannst du jede Class oder ID herausfinden.
Probiere mal das in deiner Qick-CSS:
#socket {font-size: 20px!important;}
Schriftgröße 20px ist nur damit du mal den Unterschied siehst.lg
Christian
Hi, Ismael!
I already have set cookie behaviour to “All cookies and services are accepted on first page load, user can opt out”.
No effect! The form doesn´t work because of Google ReCaptcha is not accepted.
Only if i accept the cookie consent bar/message and reload the page (and it´s a onepager!) the form works.The problem is that no user on a onepager would accept cookies and then refresh the page.
Best regards,
Christian
Temporary admin login in private content.
Hi allaith!
This is the code i use now and which is working.
All the whatsapp relevant parts// Register new icon as a theme icon add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['whatsapp'] = array( 'font' =>'whatsapp-font-icon', 'icon' => 'ue800'); return $icons; } //Adjust icons add_filter('avia_filter_social_icons', 'avia_filter_social_icons_mod', 10, 1); function avia_filter_social_icons_mod($icons) { $icons['Whatsapp'] = 'whatsapp'; return $icons; } // set whatsapp url pattern add_filter('avia_social_share_link_arguments', 'avia_social_share_link_arguments_mod', 10, 1); function avia_social_share_link_arguments_mod($args) { $pattern = 'https://web.whatsapp.com/send?text=[permalink]'; if ( wp_is_mobile() ) { $pattern = 'whatsapp://send?text=[permalink]'; } $args['whatsapp'] = array("encode"=>true, "encode_urls"=>false, "pattern" => $pattern, 'label' => __("Deel via WhatsApp",'avia_framework')); return $args; } function custom_add_more_protocols( $protocols ){ $protocols[] = 'whatsapp'; return $protocols; } add_filter( 'kses_allowed_protocols' , 'custom_add_more_protocols' );
And use this in quick-css to style the whatsapp button.
/* Whatsapp button color */ #top #wrap_all .av-social-link-whatsapp:hover a { color: #ffffff; background-color: #3bb528; }
Thank you Tim!
“Is there a way to combine this?”This is the question. It doesn´t make sense to offer a whatsapp share button and it only works on mobile or desktop. If there is a button it should work in any case.
Sorry for the late reply!
I did some tests with kses_allowed_protocols but finally i must have missed something.
I added following to the child themes functions.phpfunction custom_add_more_protocols( $protocols ){ $protocols[] = 'whatsapp'; return $protocols; } add_filter( 'kses_allowed_protocols' , 'custom_add_more_protocols' );
The link is now visible and also there is a sharing function. But the url is missing and not send. Only the title.
Can you give me a hint to solve that.
Yes, it was working with Enfold 4.5.5. It´s broken since the update. I have no idea why because in functions.php the href link is correct.
Data in privat content reply.
Thank you! Works perfect!
Hi Victoria!
I don´t want to remove the transparent background completely. I only want to reduce the height of the transparent background.
Like in my Screenshot. When i reduce the height via CSS it becomes smaller but is not aligned behind the menu.Regards
ChristianThis reply has been marked as private.This reply has been marked as private.Hi!
For all who want to achieve this behavior.
Add following code to quick-css:.current-menu-item ul.sub-menu{ display: block!important; }
Topic can be closed!
Found it out!
There were missing ID´s in the css code.
It should be like this:<strong>.page-id-28</strong> .header_color .av-hamburger-inner, <strong>.page-id-28</strong> .header_color .av-hamburger-inner::before, <strong>.page-id-28</strong> .header_color .av-hamburger-inner::after { background-color: #ffffff!important; }
Topic can be closed!
Unfortunately this didn´t do the trick!
On the white header background two lines of the burger icon are still white. I´m sure that is because my quick css overrides the standard css.
I can´t figure out why only the middle line keeps black?In the above code i added important and tried to give page family (ID 43) an additional styling with black burger icon lines. Did not work!
.page-id-28 .header_bg {background-color: #000000!important;} .page-id-30 .header_bg {background-color: #000000!important;} .page-id-32 .header_bg {background-color: #000000!important;} .page-id-34 .header_bg {background-color: #000000!important;} .page-id-37 .header_bg {background-color: #000000!important;} #header_main {border-bottom:1px solid #000000!important;} .page-id-43 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #000000!important; } .page-id-28 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff!important; } .page-id-30 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff!important; } .page-id-32 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff!important; } .page-id-34 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff!important; } .page-id-37 .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff!important; }
Ok, i try to explain it better.
For example: If i´m here http://wordpress.p443147.webspaceconfig.de/family/ i am on the site “family”. If i now open the burger menu the submenus are closed. But because “family” is a submenu item of “KLAUS” it would be great if the submenu items of “KLAUS” would already be opened and the active menu “family” would be highlighted in some way (other color, underline, …).
-
AuthorPosts