Forum Replies Created
-
AuthorPosts
-
June 17, 2019 at 6:48 am in reply to: Change H2 to H1 Titel at Fullscreen Slider – current version of Enfold #1110937
ich würde auch eine Übernahme dieses Features begrüßen, denn die Anpassung an jedes neue Update ist schon arbeitsintensiv.
Leider entschloss man sich nur ein Filter für den Wechsel einzubauen. avf_customize_heading_settings
see here how to use it: https://kriesi.at/support/topic/timeline-milestone-h2-and-h3-tags-how-can-i-delete/#post-1098168June 16, 2019 at 9:21 am in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110771Aren’t you willing to accept or try a solution from a non moderator? ;)
if there are questions – tell meJune 15, 2019 at 11:37 am in reply to: having the content the same level on different devices #1110640No chance to reach it there without incorporating other layout errors. The heights of the contents are different.
And the read-more button is part of entry-contentOne thing could be to limit excerpts to a give length ( letters or words to have nearly the same excerpt height.
June 15, 2019 at 10:55 am in reply to: having the content the same level on different devices #1110631.page-id-102 #av_section_1 .avia-button.avia-size-large { padding: 15px 25px 13px; font-size: 13px; min-width: 150px; }
btw: you had to break your menu earlier – on screen-width less than 1216px you have menu-items in top-section
June 15, 2019 at 10:49 am in reply to: having the content the same level on different devices #1110630can you try this :
.page-id-102 #av_section_1 .avia-button-wrap.avia-button-center.el_after_av_hr.avia-builder-el-last { position: absolute; top: auto; bottom: 20px; left: 50%; transform: translateX(-50%); } .page-id-102 #av_section_1 .hr-invisible.el_after_av_textblock.el_before_av_button { padding-bottom:40px }
i see you use autooptimize etc. – refresh all cached versions – maybe refresh merged files on enfold too
PS: the one thing with the button on hover on all screen-width i’m on that behavior now to solveJune 15, 2019 at 10:01 am in reply to: having the content the same level on different devices #1110626after that OCD Comment i wouldn’t make the site public too – but I’d like to see what you try to achieve.
Maybe you can post the alb shortcode that is causing the problem here.on :
Gallery Style
Choose the layout of your Gallerychoose: big image with thumbnail below.
you are working with a child-theme – but have no functions.php in there?
The downloadable preset child-theme of Enfold has it on default: https://kriesi.at/documentation/enfold/child-theme/And this is all what is in the starting child-theme functions.php
<?php /* * Add your own functions here. You can also copy some of the theme functions into this file. * WordPress will use those functions instead of the original functions then. */
June 14, 2019 at 8:20 pm in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110470the only thing that i can not imagine – is the the autoplay will work for paginated galleries.
if you can show all of your images on one page it will work like here: https://webers-testseite.de/gallery/the google font : Roboto is loaded via Google Maps or Google ReCaptcha etc.
So it is not loaded by Enfold.But this must be definitly a transposed digits error? You mean WP 5.2.1
June 14, 2019 at 8:49 am in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110247for the second request – look into your source code and see what ID the first image got- on that page above it is : #av-masonry-1-item-125
function start_with_clicked_state(){ ?> <script> (function($) { $(window).load(function() { setTimeout(function() { $('#av-masonry-1-item-125').trigger('click'); }, 1000); }); })(jQuery); </script> <?php } add_action('wp_footer', 'start_with_clicked_state');
see here my example page: https://webers-testseite.de/gallery/
with both codes above : after 1sec the lightbox starts – every 6sec the image will load the next one.so you do not have to do something on the starting page: http://fvs.768.myftpupload.com/kitchens/
just see the ID of the first image you have on that newly opend one (http://fvs.768.myftpupload.com/before-after-stained-kitchen-cabinets/)June 14, 2019 at 7:31 am in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110224try that code please : https://kriesi.at/support/topic/can-i-make-the-lightbox-auto-rotate-and-trigger-with-single-link/#post-1110141
and press one of your images on : http://fvs.768.myftpupload.com/before-after-stained-kitchen-cabinets/
But yor heading tells two requests – the one is the autorotation of a “lightbox slideshow”
the other is to link from your first masonry directly to the lightbox of the other page.for first see here in action: https://webers-testseite.de/gallery/
June 13, 2019 at 11:49 pm in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110141this is better:
try this in child-theme functions.php:function set_interval_for_lightbox(){ ?> <script> (function($) { setInterval(function() { if(typeof($.magnificPopup.instance) != 'undefined') { $.magnificPopup.instance.next(); } }, 6000); })(jQuery); </script> <?php } add_action('wp_footer', 'set_interval_for_lightbox');
6000 is the interval in milliseconds
but i do not know (yet) how to link directly from the one gallery to a “lightbox gallery slideshow” on the other page.
The code above will work on every sub-page like: http://fvs.768.myftpupload.com/before-after-stained-kitchen-cabinets/June 13, 2019 at 11:32 pm in reply to: Can I make the lightbox auto rotate? and trigger with single link? #1110140well maybe it is possible to have that by having your own lightbox activation script:
it is loaded as avia-snippet-lightbox.js – but you can have instead an own child-theme edited script copy.
This could be done by a callback setting like:callbacks: { open: { setInterval(function() { $.magnificPopup.instance.next(); }, 5000); } }
maybe a mod knows how to implement that on the script ;)
you can add the link definition as it is presented at google fonts to the head section by child-theme functions.php via:
add_action('wp_head', function() { ?> <link href='https://fonts.googleapis.com/css?family=Amatic+SC&display=swap' rel='stylesheet' type='text/css'> <?php });
PS: on GDPR (DSGVO) Reasons – i load the font localy – and this works good
you have in the content some special characters which implement a tag start < ( less than) – same happend if you are using > or [ or ] etc.
Günter here from developer team has written a little plugin to avoid that: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters
https://kriesi.at/support/topic/enfold-image-sizes-3/#post-1109028
or let some in but redefine the width and height of them:
function custom_modified_thumb_sizes( $size ){ $size['square'] = array('width'=>300, 'height'=>300 ); return $size; } add_filter('avf_modify_thumb_size', 'custom_modified_thumb_sizes', 10, 1 );
to set the crop behavior that line looks this way:
array('width'=>300, 'height'=>300 , 'crop' => false);
you can see my css here: https://kriesi.at/support/topic/change-position-of-post-nav-buttons-below-post/#post-1109098
the absolute positioning is for me the better way – the buttons are positoned left and right with no additonal css. And hovering effect etc. works as before.June 12, 2019 at 3:40 pm in reply to: Diagonal Border for color section showing thin border at bottom – Enfold Theme #1109512well ok that it is solved . But your layout is unique in the source code –
you got color-section | 1/1 container | color-section | 1/1 container
these 1/1 container have on default wrapping parent containers which have on default border-top.
The 1/1 container Border is something different.
If you do them all in color-sections you can influence that behavior – or with the code above delete the default behavior. ;)-
This reply was modified 6 years ago by
Guenni007.
June 12, 2019 at 1:30 am in reply to: Diagonal Border for color section showing thin border at bottom – Enfold Theme #1109314this is not on the color-section with diagonal section border – it is in the container afterwards.
Because you do not use a color-section for that text-block/heading you will have to do it via css. Or just do another color-section for that 1/1 container.
There you can set on the alb element that there is no border-styling._____
or make a rule to avoid on container-wrap ( that div ID= #after_section_1 ) got a border-top style
for all :.container_wrap { border-top-style: none !important; }
this is not a border – it is a box-shadow:
.av_minimal_header_shadow { box-shadow: none !important }
but maybe you decide to have it on scrolled state – then only use this in your quick css:
.av_minimal_header_shadow:not(.header-scrolled) { box-shadow: none !important; }
maybe you can use this function:
if ( is_user_logged_in() ) { // your code for logged in user } else { // your code for logged out user }
see here – Gratitude goes to Ismael: https://kriesi.at/support/topic/change-logo-for-logged-in-users/#post-251039
add_filter('avf_logo_final_output', 'avf_logged_logo_final_output'); function avf_logged_logo_final_output($logo) { $headline_type = "span"; if($dimension === true) $dimension = "height='100' width='300'"; //basically just for better page speed ranking :P $loggedinlogo = "<img {$dimension} src='LOGGED IN LOGO IMAGE URL HERE'>"; $loggedoutlogo = "<img {$dimension} src='LOGGED OUT LOGO IMAGE URL HERE'>"; if ( is_user_logged_in() ) { $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$loggedinlogo."$sub</a></$headline_type>"; } else { $logo = "<$headline_type class='logo bg-logo'><a href='".$link."'>".$loggedoutlogo."$sub</a></$headline_type>"; } return $logo; }
for $headline_type you can use h1 or div or span etc.
btw. dear team : on function-set-avia-frontend.php on lines: 513ff i see that there is still a h1 tag for that. Why have all my enfold installations a span instead – what i think is better?In my opinion, the above is indeed relevant. Because to prevent the automatic generation of the image sizes you have to set this.
Your question is first about how you can delete the generated alternative images. I think, if you e.g. use this “force regenerate thumbnail” and have used that code before, the files that are no longer needed will be deleted.
There shouldn’t be any performance reasons when using a CDN, only memory space savings are achieved.did you download my files?
because i inserted:$avia_post_nav = avia_post_nav(); echo "<div class='custom-post-nav'>"; echo avia_post_nav(); echo "</div>";
and did you see my comment on that post and portfolio had to be created by default editor – not alb !
and dear mods – i do not know why this happens. the post nav did work on alb generated portfolio and posts too ?is it intentional that the hamburger menu is also hidden?
you got that intention to have the mobile menu break at 1320px but the display none of
nav.main_menu { display: none !important; }
hides the hamburger too:
try this instead:@media only screen and (max-width: 1320px) { #avia-menu { display: none !important; } #advanced_menu_toggle, #advanced_menu_hide { display:block !important; } }
i do not know why then the hamburger is centered because on default the mobile hamburger icon goes to the right:
https://kriesi.at/themes/enfold-medical/it is because these separators are set with border-left option.
you can add this to quick css :
.av_seperator_big_border .av-main-nav > li#menu-item-1439 > a { border-right-style: solid; border-right-width: 1px; }
maybe an important is necessary – but try first without.
that product table is placed in what kind of container?
if it is in a color-section – i would give that color-section a unique-ID (as mentioned above – to better select that table)
and that to quick css:.responsive #custom-ID .container { max-width: 1810px; }
just replace #custom-ID with the ID you gave to your color-section.
thats it.i did that from ismael – you can download the files ( portfolio-single too) from pastebin. Just upload those files to your child-theme folder.
Add the css to your quick css and it will look like this here : https://webers-testseite.de/elegant/2019/06/11/neuer-post/
there is no event at the input field – so maybe the script isn’t loaded.
What do you have on Enfold (Child) – Performance ? : “Disabling of template builder elements” load all – only used or manually.
Maybe a refreshing of the merged files will do the change. -
This reply was modified 6 years ago by
-
AuthorPosts