Forum Replies Created
-
AuthorPosts
-
well that Logo is the alternate logo – set for transparency Option.
You can add alt and title attribute by child-theme functions.php:function custom_alternate_logo_attriubtes(){ ?> <script> (function($){ $('.logo img.alternate').attr({ title:"Manchester Coach Hire Logo", alt:"Manchester Coach Hire" }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_alternate_logo_attriubtes');is there a link to the site you can make public?
maybe we use that class on html (avia_mobile) to only loose that nice animation on ipad and not on small screens:
@media only screen and (min-width:768px) and (max-width: 1024px) { .responsive.avia_mobile #top .avia-timeline-vertical .milestone_icon, .responsive.avia_mobile #top .avia-timeline-vertical .av-milestone-indicator, .responsive.avia_mobile #top .avia-timeline-vertical .av-milestone-icon-wrap:after { opacity: 1; transform: scale(1); } }May 21, 2019 at 10:46 am in reply to: Verlinkte Spalten einen Linktext bzw. Title Tag geben #1102787I guess it is now implemented in Enfold 4.5.7 – thank you – this is a nice feature for SEO and Wai Aria points of view.
May 10, 2019 at 6:25 am in reply to: Post Navigation on mobile : is there a way to have swipe event for that? #1099167Danke – kann geschlossen werden.
the script here from line 601: https://kriesi.at/support/topic/a-question-to-a-developer/#post-1098037 rules the positioning of the image.
On most cases it is set to center the image ( on a min height option it happens that the width is bigger than the screenwidth).
there are images with the thematic focus on the right side – so i try to position (similar to a background-image) the image on f.e. bottom right side.May 7, 2019 at 7:37 pm in reply to: Post Navigation on mobile : is there a way to have swipe event for that? #1098184May 7, 2019 at 7:30 pm in reply to: Post Navigation on mobile : is there a way to have swipe event for that? #1098181thanks
by the way : standard default is h2 and h4 – so what version on enfold do you use?
And : thanks to Günter for detailed Info about that new filter ( you only have to ask for it ;) )
By the way the context is the alb element itself : open the alb element and look on top of each alb: there will be somenting like this:
if ( ! class_exists( 'avia_sc_timeline' ) ) { class avia_sc_timeline extends aviaShortcodeTemplateso context on this case is : avia_sc_timeline
ps : if you like to change both : look for the extra args in alb element (search for that filter: avf_customize_heading_settings)
f.e. in timeline.php a little above that filter there is the default setting defined like:$default_heading = 'h2'; $args = array( 'heading' => $default_heading, 'extra_class' => '' ); $extra_args = array( $this, $atts, $content, 'date' );here the extra_arg is : date
____________ so changing both with different tags _________________
function my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ) { if( 'avia_sc_timeline' == $context && is_array( $extra_args ) && in_array( 'date', $extra_args ) ) { $args['heading'] = 'h1'; $args['extra_class'] = 'my-timeline-class'; } if( 'avia_sc_timeline' == $context && is_array( $extra_args ) && in_array( 'title', $extra_args ) ) { $args['heading'] = 'h3'; $args['extra_class'] = 'my-timeline-class'; } return $args; } add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );the code above changes all headings – with extra args you can be more specific
you can use the new filter: avf_customize_heading_settings
to set the heading tag on that. I do not know it it is possible to change for the years a different heading than for the heading on text.
this comes to child-theme functions.phpfunction my_avf_customize_heading_settings( array $args, $context, array $extra_args = array() ){ if( $context == 'avia_sc_timeline' ){ $args['heading'] = 'h1'; // change heading from h3 to h1 $args['extra_class'] = 'my-timeline-class'; // add an extra class for styling } return $args; } add_filter( 'avf_customize_heading_settings', 'my_avf_customize_heading_settings', 10, 3 );you can even use p tag or something else
you only have to give that costom class to the timeline alb element ( in this case: my-timeline-class)
PS : alot of the alb elements got this filter now. so only a custom class and the selector is needed to change heading tag.
but before i get to deep into that – i will position it with quick css.
my workaround is to know the calculated min-width on a setted min-height. (f.e. it is 950px)
and than i put for a right positioning in quick css@media only screen and (max-width: 950px) { div.avia-slide-wrap img { left: calc(100vw - 950px) !important; } }maybe a developer knows a different child-theme handling of that.
Ok – i think i got it in slideshow.js with the function: _setCenter: function()
Now i have to think of – how to influence this function.
thanks – that’s clear enough for me now.
how to use that if sequence should be comments, author, email, cookies
Also bei mir werden immer noch die Bilder als http angezeigt.
As far as i understand – he fails to download even from themeforest. (Envato)
But you are definitly logged in there?Um sicher zu gehen, dass es nur Umstellungsgründe waren ! Schau mal in die wp-config.php ( Rootverzeichnis deiner Installation)
Manch einer hinterlegt dort die Siteurl – ( selten aber ich hatte mal eine Installation von jemand anderem übernommen – da war es so.) Dann sucht man sich den Wolf , weil diese Einstellung die im Dashboard überschreiben.Pfadi im Kanton müsst ihr dann auch noch umstellen oder?
ich würde das Plugin Search and Replace nehmen : https://de.wordpress.org/plugins/search-and-replace/
Das Tool macht im ersten Tab von deiner Datenbank zunächst ein Backup. – sicher ist sicher. – dann Tab3 :
dort würde ich nach
http://pfadi100suchen lassen und durchhttps://pfadi100ersetzen: Alle Tabellen und Save changes to database
Der zweite Tab wäre bei der Umstellung das Mittel der Wahl gewesen.Du hast sicherlich später die https Option aktiviert – oder?
wie hast du da umgestellt? Nur im Dashboard – bei Allgemeine Einstellungen?Einige der Grafiken verweisen noch auf http links. (Symbol und Zelte)

Schau mal in der Mediathek nach, ob da die https links schon sind. – Wenn ja wäre es eventuell dami getan, die Grafiken auf der Seite einfach neu zu laden.
Am sichersten wäre einfach die gesamt Datenbank nach diesen Links zu durchsuchen, und diese durch die https pendents zu ersetzen.
Da gibt es Plugins für.May 4, 2019 at 10:05 pm in reply to: mark and quick css not working on small screen (mobile and desktop) #1097305But on your media-querrie you got a closing curly bracket – haven’t you?
You see that this here :
@media only screen and (min-width: 780px) {
opens but does not close at the end. and the code for #header .logo img is missing
See : https://kriesi.at/documentation/enfold/menu/#toggle-id-147May 4, 2019 at 3:51 pm in reply to: Mega menu images not responsive and also not showing on mobile #1097241is there an intern script that on mega menu columns the images are erased on hamburger menu?
See in my private content.you can try to replace it by child-theme functions.php:
function my_text_strings( $translated_text, $text, $domain ){ switch ( $translated_text ){ case 'share this entry': $translated_text = __( 'Eintrag teilen', $domain ); break; } return $translated_text; } add_filter('gettext', 'my_text_strings', 20, 3);May 4, 2019 at 6:17 am in reply to: Mega menu images not responsive and also not showing on mobile #1097082the eventlistener on those items are missing – on the “about us” it is there:
May 4, 2019 at 5:37 am in reply to: Mega menu images not responsive and also not showing on mobile #1097069no entries no output: ( this is no display:none or something like this)
click to see – the submenu ul is empty.

so now the question is why?
on Enfold – Main Menu – there is “Alternate Menu for Mobile” have you choose there a different menu?
What if you let show the submenu items directly and not on click or hover ( Menu Icon Submenu items)?
How did you place those images to the menu?hast du beim editieren der Seite rechts (im Layout Feld ) denn auch den Transparenten Header ausgewählt ?

Nein – denn ich sehe das dein html keinerlei Klasse diesbezüglich hat! ( dort wäre nämlich die Klasse : html_header_transparency )Above all, I must urgently advise against such sites, because these so-called “nulled” versions often contain malware or spytools.
So please be careful
Just google for “Nulled Version and Spyware”May 4, 2019 at 5:04 am in reply to: Using a different logo for mobile view – css not working anymore #1097051To see why your method does not work anymore – i have a guess.
The path to background-images on merged Enfold files (css an js) are wrong – that little bug will be corrected in the newest version to come – i guess. (4.5.7)
But you can download here on github a replacement file that fixed it : https://github.com/KriesiMedia/enfold-library/blob/master/temp_fixes/Enfold_4_5_5/Url_fix/asset-manager.class.php
( The file you had to upload it via ftp to : enfold ▸ config-templatebuilder ▸ avia-template-builder ▸ php )
After replacement i guess you have to rebuild the merged files on Enfold ( Child ) ▸ Performance ▸ Delete old CSS and JS files?
_____________
i would have done it by replacing the logo in this case and not changing display or opacity options.
if it is only for mobile – then you can use that snippet in child-theme functions.php from documentation
https://kriesi.at/documentation/enfold/logo/#use-a-different-logo-on-mobileif it is for small screens – even on desktop use:
function av_dif_mobile_logo(){ ?> <script> (function($){ $(window).load(function(){ if ($(window).width() < 480) { $(".logo img").attr("src", "http://kriesi.at/wp-content/themes/kriesi/images/logo.png");} }); })(jQuery); </script> <?php } add_action('wp_footer', 'av_dif_mobile_logo'); -
AuthorPosts


