Forum Replies Created
-
AuthorPosts
-
are your svg’s monochrome black?
then go to fontello.com – and drag&drop the svg’s to the input field on top of that page.
give a name to your set and download the zip from there. this zip upload to enfold.if fontello got some error warnings – f.e. on compound path – this little detour can help: https://kriesi.at/support/topic/custom-icons-showing-blank/#post-1357932
if not ( multicolor svg’s) we had to find a different solution.
but on your page – i do not see the new css code ?
the only thing i would change is the check – if there is a post thumbnail:
so change ismaels code by surrounding it with an if clause:
$searchthumb = get_the_post_thumbnail( $the_id, 'large' ); if( ! empty( $searchthumb ) ) { echo "<span class='search-result-counter {$counterclass}'>{$searchthumb}</span>"; }_____________________________________________________________________________________________
i prefer to have the link on the image too and use square images : so i insert on that area instead:
$searchthumb = get_the_post_thumbnail( $the_id, 'square' ); if( ! empty( $searchthumb ) ) { echo "<a class='slide-image search_image' href='".get_permalink()."'><span class='search-result-image'>{$searchthumb}</span></a>"; }my solution needs this in quick css:
.search-result-image { display: block; } .search-result-image img { width: 120px; border: 1px solid #aaa } a.slide-image.search_image { overflow: visible !important; } a.search_image .image-overlay.overlay-type-extern { left: 0 !important }see what it looks like on: https://webers-testseite.de/?s=portfolio
I don’t know why the breadcrumb feature that only shows the title is not practical for you – you can make it whatever you want – and for the pages that have a Transparent Header, you manually set the Title via shortcode to your first element in main.
i do not know if the get_field function is as it should. the rest of the code is ok i think
give a custom-class to your text-block element – f.e.: img-side-by-side
insert your images via add media – set for both images float left – or center or right – make one return and insert your text..avia_textblock.img-side-by-side p { display: flex; }see details on: https://enfold.webers-webdesign.de/magoo/
do you like to insert it manually with a shortcode?
this to child-theme functions.php :function insert_page_title_shortcode() { $page_title = "<h1 class='main-title'>". get_the_title() ."</h1>"; return $page_title; } add_shortcode( 'page_title', 'insert_page_title_shortcode' );and use as :
[page_title]
change h1 to whatever you like.for the automatic insertion we have to know where it should be placed.
There will be jQuery methods or using some hooks – or you can edit the page templates and have child-theme versions of them
There is a problem with pages that then needs to be solved: how to deal with transparent headers – how to deal with fixed header etc. ppis there a page where i can see the issue?
Please remember that I am a participant like you – so I don’t see a private content area.the last one is easier to get –
avia_appear (a bit less fast than on testimonial)
f.e. only for the image:.team-img-container img { -webkit-animation: avia_appear 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275); animation: avia_appear 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275); }the first has more settings – there is a keyframe animation – but on addition some other settings. i will have a look on that
by the way: wouldn’t it be the best to have this no-scroll option as default value?
From my point of view, jumping to the top position has no reasonable justification.Does that new filter : avf_default_lightbox_no_scroll work like this too!
add_filter( 'avf_default_lightbox_no_scroll', '__return_true' );i do insert that to my child theme functions.php to have no scroll on both – the lighbox itself and the background.
and that sample page has no url ?
there are a lot of demos : https://kriesi.at/themes/enfold-overview/
And inside every demo page there are a lot of suppages …But you don’t need to drag&drop a heading to the layout – just place a text-block instead. And center the text of that text-block .
What do you like to do? When should animation start – on load, on hover etc. What kind of animation? …
you can use f.e.: some of the predefined keyframe animations on enfold :
https://kriesi.at/documentation/enfold/animation/#customizing-animation-for-alb-elements
animate the whole container and image too.avia-team-member { -webkit-animation: avia-btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; animation: avia-btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275)!important; } .team-img-container img { -webkit-animation: avia-fadein 3s 1 linear !important ; animation: avia-fadein 3s 1 linear !important; }there is a qrcode you can scan ;)
This idea is not advisable for SEO reasons. If it’s just about the sizes, font thicknesses, font transformations, etc., then you can change that via css, or various Enfold option settings.
Yes – the rule that manages the font size is set to !important – so the rule can’t override that unless you do the same – then the higher specificity decides:
#footer .widget p.widgettitle { font-size: 30px !important; font-weight: 500; line-height: 33px; }try this :
function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);It is difficult to give advice only from screenshots. As a semi-transparent color definition, there may be several reasons for the differences.
I would indeed do it like Mike, with one exception – I would use Enfolds columns and use the Column link right away. Since the icon box is inside the column, we have the same construct as on your example page. I would assign a custom class to the column and save the whole thing as a template (e.g. icon-box-column).
If you then need this special iconbox, you can always use it via template – and only make the adjustments then ( icon, column color ).

for the quick css entries and example page look: https://enfold.webers-webdesign.de/iconbox/
If you do not find nice icons on entypo-fontello iconset – use your own by uploading to fontello.com
PPS: my solution is easier to get – because it is only css and the rest will be done by Enfold alb options ;)
see example-pageThere are many places where the heading tag is predefined as h3 in the source code of enfold.
Editing all those entries and have a child-theme file is too complex.
The filter : avia_custom_widget_args will not work on those headings you like to influence.– you can try this here from Yigit : https://kriesi.at/support/topic/change-h3-tags-in-footer-widget-child-theme-of-enfold/#post-728320
and pay attention of his comment:You would need to update your widget areas.
In Shortform this will be ( and comes to child-theme functions.php ) :
function ava_re_register_footer_widgets(){ $footer_columns = avia_get_option( 'footer_columns', '5' ); for( $i = 1; $i <= $footer_columns; $i++ ){ unregister_sidebar('av_footer_' . $i ); register_sidebar( array( 'name' => 'Footer - Column ' . $i, 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<p class="widgettitle">', 'after_title' => '</p>', 'id' => 'av_footer_' . $i ) ); } } add_action( 'widgets_init', 'ava_re_register_footer_widgets', 11 );the settings you mentioned had to be set via quick css
#footer p.widgettitle { font-size: 30px; font-weight: 500; line-height: 33px; }(For SEO reasons, this will probably be the better method. )
July 21, 2022 at 9:38 am in reply to: ALB for any post type (LearnDash). Spacebar doesn't work #1358979maybe offtopic – but on ajax search input field – i hampered the return key by this – so that you can not go to search results page by pressing return key.
function disable_enter_key(){ ?> <script type="text/javascript"> (function($) { $(document).on('keypress keydown keyup', '#searchform', function(e) { if(e.keyCode == 13) { e.preventDefault(); return false; } }); })(jQuery); </script> <?php } add_action('wp_footer', 'disable_enter_key');keyCode for Space is 32 – I don’t know if it is possible that a keyCode == 32 is accidentally suppressed on your installation.
Nicht dafür.
PS : ich konnte auch nur die Seite sehen, weil im Screenshot oben die Domain zu sehen war.Ach komm schon vorhin war im DOM nix zu sehen – Da war der Container leer! ;)
Wie auch immer wenn du jetzt zu deinem Verschieben auch noch das overflow richtig setzt siehst du auch unterhalb das Caption:
_____________
Oh, come on, there was nothing to see in the DOM earlier – the container was empty! ;)
However, if you now also set the overflow correctly to your move, you will also see the caption below:#top .avia-image-overlay-wrap a.avia_image { overflow: visible; }PS: du lädst viele Bilder über http – daher auch kein Schutzzeichen oben in der URL.
Schau mal woran das liegen könnte. Wenn garnichts hilft, installiere Search und Replace
Da kannst du die Datenbank durchsuchen und Zeichenfolgen ersetzten also zB
suchen: http://domain.touch
ersetzen: https://domain.touch
achte aber darauf, dass sich bis auf das http – https nichts in den Feldern unterscheidet auch keine leerzeichen oder Striche etc. ppAnd you realy inserted to the caption input field some text? There is no reason why the other images have that – and the one not.
July 20, 2022 at 12:12 pm in reply to: Design transition from slide show to color selection? #1358883Developer Tools des Browsers öffnen – zu dem svg navigieren – rechte Maustaste – äußeres html kopieren:

and: https://kriesi.at/documentation/enfold/columns/#adding-custom-svg-dividers
Meine Empfehlung nun – hochladen der custom svg files in einen uploads unterordner: avia_custom_shapes
für die Option “has flip” benötigst du dann allerdings zwei files – wobei die Nomenklatur dann des Flip Files festliegt ( hat als addendum : -negative )
(transparenz und Füllung wechseln hier )

I’m afraid you’ll have to reset the footer widgets.
They will have been reset to the default values.temp remove of the title tag on hovering – put this to your child-theme functions.php:
function temporary_removal_title_tags(){ ?> <script> window.onload = function() { var links = document.querySelectorAll('a, img, *[title]'); for (var i = 0; i < links.length; i++) { var link = links[i]; link.onmouseover = function() { this.setAttribute("data-tooltip", this.title); this.title = ""; }; link.onmouseout = function() { this.title = this.getAttribute("data-tooltip"); }; link.onmousedown = function() { this.title = this.getAttribute("data-tooltip"); }; } }; </script> <?php } add_action('wp_footer', 'temporary_removal_title_tags');July 19, 2022 at 8:56 pm in reply to: Horizontal Gallery on mobile phones: can I jump directly into the lightbox? #1358814well one thing is that on touch devices ( mobile phones ) there is no hover effect.
you can do this to show it always on the touch device case:.avia_mobile #top .av-active-gal-item .av-horizontal-gallery-link { opacity: 1 !important; }or use that class instead touch-device
but that one thing you mentioned i could not reproduce : that there is only a half lightbox button.
Next: on my simulated mobile devices – your gallery do that what you like to have – it opens directly the lightbox on click.
Edit: aha – i know now why – you make the button a 100% width and height.Well – a manual way to do it is to use the shortcode for the breadcrumb trail:
place this to your child-theme functions.php :
and use whereever you like to place that as :[av_breadcrumbs]July 19, 2022 at 12:01 pm in reply to: Design transition from slide show to color selection? #1358757Das sind custom made svgs. Schau dir die svgs von Enfold mal mit einem Guten Texteditor an ( OSX: Sublime Text oder Windows: notepad++ )
Der Aufbau ist recht ähnlich – ein wenig was über svgs sollte man wissen.PS : das svg liegt ja im DOM als inline svg file explizit vor. Niemand hindert dich das svg aus dem DOM herauszukopieren ;)
Anleitungen wie man custom svgs einbindet gibt es nicht nur von mir hier an Board genüge :)PPS: was überigens bei den meisten svg dividern der Fall ist – so auch bei Elementor und Konsorten.
schau mal die Stadt-Silhouette: https://guenterweber.com/#footer
July 18, 2022 at 7:26 pm in reply to: Design transition from slide show to color selection? #1358679wenn du in der gleichen color-section für den unteren divider dann z.B.: als Divider color wählst: #cf1b15 dann ist auch dort der Übergang harmonisch.
-
AuthorPosts
