Forum Replies Created
-
AuthorPosts
-
Thanks – I’m still a learner.
here i know that all variables had to be mentioned:
extract( shortcode_atts( array( 'position' => 'left', 'color' => '', 'custom_bg' => '', 'custom_border' => '', 'custom_font' => '', 'font_color' => "", 'custom_title' => '', 'custom_title_tag' => '', 'custom_content' => '', 'custom_title_size' => '', 'custom_content_size' => '', 'iconlist_styling' => '', 'animation' => ''
but for me this just looked more liquid than liquid – so to speak superfluous
$this->iconlist_styling = ''; $this->iconlist_styling = $iconlist_styling == 'av-iconlist-small' ? "av-iconlist-small" : "av-iconlist-big";
can be closed from my point of view.
March 31, 2019 at 10:30 pm in reply to: Next and previous post arrows missing for The Events Calendar #1085191is there a mismatch by changing filter name?
i read in 4.5.5 functions-enfold.php a lot of apply_filters_deprecated but that is in preparation to 4.5.6. – but maybe there is something going wrongyou can see here that it is working with the code – for more help please let me see your site to give better advice:
1) did you enter the code from: https://kriesi.at/support/topic/social-icons-in-footer-8/#post-1084502 with two links?
2) you can take a text-widget – but insert code to text (not visual) input fieldhttps://webers-testseite.de/#footer
it is the right heading on top (blue background-color)if like to center these icons on general – you first had to know the id of that widget ( on my test page it is #text-3)
code will be in that case:#footer #text-3 .avia_textblock { display: inline-block; position: relative; left: 50%; transform: translateX(-50%); }
to style and see all icons they must float left:
on default a ul listpoints are underneath#footer .social_bookmarks li { height: 100%; float: left; padding: 0; border-right-style: solid; border-right-width: 1px; display: block; width: 30px; }
March 30, 2019 at 7:40 am in reply to: cross icon on mobile menu (to go back) – need to change the colour to white plea #1084824what do you have against shortening hexcode according to the nomenclature?
i use nearly almost for code the code tag here on board – that copy&paste will be easy.
#fff is similar to #ffffff (by the way 6digits) – on your code there are 5 !
#3a7 ist similar to #33aa77 etc.
by the way : all three digit hex-codes are websafe colors.very important: and on your quick css you do not close the media query rule above:
@media only screen and (max-width:767px) { #top #wrap_all .av-burger-overlay .av-burger-overlay-scroll #av-burger-menu-ul li a { font-size: 20px; color: white !important; } #menu-item-search a:before { color:white !important; } }
that last curly bracket is missing – and makes all rules later not working ( that is the reason for not having the wider content of 1310px but to have 1010px)
March 29, 2019 at 4:35 pm in reply to: cross icon on mobile menu (to go back) – need to change the colour to white plea #1084617try this in quick css:
.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after { background-color: #fff; }
and if you like to see the “bullets” a bit more intense play with the opacity:
.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet { opacity: 1; }
does it work you described it here: https://kriesi.at/support/topic/about-lightbox/#post-1083690 ?
on gallery.php you got :
$link = apply_filters('avf_avia_builder_gallery_image_link'
etc
that is the reason for that filter hook works on gallery.you can embed it via:
function font_awesome_5( ){ ?> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> <?php } add_action('wp_head', 'font_awesome_5');
and you can use it like this:
.custom-class h1:before { content: "\f185"; font-family: "Font Awesome 5 Free"; font-weight: 700; color: #db0f0f; display: inline-block; padding-right: 5px; }
so try this – ( you have to insert the links instead of the asterisk # ) :
<ul class="noLightbox social_bookmarks icon_count_2"> <li class="social_bookmarks_facebook av-social-link-facebook social_icon_1"> <a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook" target="_blank" rel="nofollow noreferrer"> <span class="avia_hidden_link_text">Facebook</span> </a> </li> <li class="social_bookmarks_instagram av-social-link-instagram social_icon_2"> <a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Instagram" target="_blank" rel="nofollow noreferrer"> <span class="avia_hidden_link_text">Instagram</span> </a> </li> </ul>
do you close all tags you set?
you open li tags without closing – same with ul tagand PS: please use on board here the code tag – because all quotes and double quotes are converted – a copy paste is not correct then.
<ul class="noLightbox social_bookmarks icon_count_2"> <li class="social_bookmarks_facebook av-social-link-facebook social_icon_1"> <span class="avia_hidden_link_text">Facebook</span> </li> <li class="social_bookmarks_instagram av-social-link-instagram social_icon_2"> <span class="avia_hidden_link_text">Instagram</span> </li> </ul>
But – In this simple way it will not work either – even if the closing tags are there – the a tags are missinga usefull code looks like this on html:
<li class="social_bookmarks_facebook av-social-link-facebook social_icon_1"> <a href="#" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello" title="Facebook" target="_blank" rel="nofollow noreferrer"> <span class="avia_hidden_link_text">Facebook</span> </a> </li>
and you will have an icon-count on ul tag:
<ul class="noLightbox social_bookmarks icon_count_9">
is all of your content translated? Or are there some pages/posts etc. not translated?
How do you handle these pages if it so? Do you redirect it to landing-page? Or ignore it and show standard language.on horizontal galery there is not filter to apply:
what i see is that gallery.php got that filter: avf_avia_builder_gallery_image_link
gallery_horizontal.php not.so – maybe next update a dev member could implement such a filter ;)
March 28, 2019 at 11:11 pm in reply to: Issues with negative margins inside of columns — cannot select button #1084316you are always welcome.
March 28, 2019 at 9:59 pm in reply to: Next and previous post arrows missing for The Events Calendar #1084301can you try this in child-theme functions.php first to activate the post-nav vor tribe-events:
I do use a different event plugin so you have to know the taxonomie for that. Maybe your tribe_events_cat is correct:add_filter( 'avia_post_nav_settings', 'avia_post_nav_settings_mod', 10, 1); function avia_post_nav_settings_mod($settings) { if(is_singular('tribe_events')) { $settings['taxonomy'] = 'tribe_events_cat'; $settings['same_category'] = true; } return $settings; }
the one curly bracket was too early closed – i guess
-
This reply was modified 6 years, 3 months ago by
Guenni007.
is that last line obsolete of Günter?
see here my comment: https://kriesi.at/support/topic/icon-list-element-issue/#post-1080940On original source code the iconlist_styling is set to:
$this->iconlist_styling = $iconlist_styling == 'av-iconlist-small' ? "av-iconlist-small" : "av-iconlist-big";
so i think this will be enough to insert. ?
$this->icon_html_styling = ''; $this->title_styling = ''; $this->content_styling = ''; $this->content_class = ''; $this->title_class = '';
see here my comment: https://kriesi.at/support/topic/icon-list-element-issue/#post-1080940
March 28, 2019 at 6:24 pm in reply to: Issues with negative margins inside of columns — cannot select button #1084215have a look if this will do the job:
.page-id-17 #av_section_5 .container .content { z-index: 0; }
you can open the hotel.xml and find all image links in there. ( includes ▸ admin ▸ demo_files ▸ hotel.xml )
If you got a download manager like jdownloader – you can copy paste the whole xml content to it. It will find every image link in there.
( mostly with the line “isPermaLink” )Again btw:
there is a little trick to have an outline with text-shadow:.robshadow h1, .robshadow h2 { text-shadow: -1px -1px 0 #000 , 1px -1px 0 #000 , -1px 1px 0 #000 , 1px 1px 0 #000 !important; }
PS: you can combine text-shadow and filter f.e.:
.robshadow h1 { text-shadow: -1px -1px 0 #000 , 1px -1px 0 #000 , -1px 1px 0 #000 , 1px 1px 0 #000 !important; -webkit-filter: drop-shadow(1px 1px 2px #999); filter: drop-shadow(1px 1px 2px #999); }
and maybe it looks nicer to have your html background on fixed position ;)
and by the way there is a new filter to use on content font:
avf_available_google_fontsadd_filter( 'avf_available_google_fonts', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Montserrat'] = 'Montserrat:700'; return $fonts; }
Meinst du jetzt wirklich mehrzeiliges Menu ? oder das ein Link ( Menü-Punkt) zwei Zeilen hat?
Mehrzeilig ist eher gut umzusetzen – und für mich eigentlich immer die Alternative vor dem frühzeitigen umbrechen zum Hamburger Menü.
Siehe hier: https://kriesi.at/documentation/enfold/menu/#multiline-menu
on 5 ) i can not reproduce that behavior on my ipad here ( maybe because it is an ipad mini retina)
if you don’t want to loose this on updating enfold – as i said – make a copy to your child-theme – described here : Link
i’m participant as you are – so i do not see private content – sorry
what i see is that gallery.php got that filter: avf_avia_builder_gallery_image_link
gallery_horizontal.php not.you see on line 385 gallery_horizontal.php that setting to “large” – so for now it would be possible to have a copy of that alb element on your child-theme/shortcodes folder with
$lightbox = wp_get_attachment_image_src($attachment->ID, 'full');
on that line 385maybe we could get a filter here too on future versions. ;)
March 27, 2019 at 7:39 am in reply to: my Quick CSS isn't changing according to the language I open #1083465on default this is the normal case – so have you got the actual version of that plugin?
What happens if you have the merging off?hm – i see that on 1) the containers are set to hide on mobile – but do not go away.
what i do not know is why the default style of enfold does not work here:
EDIT: aha i see this is a rule on a media-query (@media only screen and (max-width:767px) {
and ipad has 768px so this could not do the job.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet { display:none !important }
so you can use that class in combination with “mobile typical class on html”:
.avia_mobile #references .flex_cell.av-hide-on-mobile { display: none !important; }
on 1) you got this layout for id: references done by 1/5 3/5 1/5 th grid containers – go to set those two small containers to hide on mobile devices ( there is in the alb “screen options” – mobile display
on 2) you got a rule on your css:
.responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell { margin: 0px 0px 20px; width: 100%; display: block; }
this is a tablet rule only so it is clear why it is not on other devices set margin to 0 everywhere – you got 20px bottom
on 3) have a look if these timeline things are there if you deactivate your wp-rocket
do not forget to refresh all cachings after deactivating so you can make a representative statement.on 4) see: https://kriesi.at/support/topic/icon-list-element-issue/
-
This reply was modified 6 years, 3 months ago by
Guenni007.
March 26, 2019 at 10:56 pm in reply to: my Quick CSS isn't changing according to the language I open #1083286what kind of Language Plugin do you use?
no one hampers you to have an opacity of 0.001 ;)
see here with predefined color to transparent : Gradient Tool
f.e:#top .av_header_transparency .header_bg { background-image: -ms-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -moz-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -o-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(255,255,255,0.001)),color-stop(45,rgba(255,255,255,1))); background-image: -webkit-linear-gradient(bottom,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-image: linear-gradient(to top,rgba(255,255,255,0.001) 0%,rgba(255,255,255,1) 45%); background-color: transparent !important; }
for detailed advices i had to see the corresponding site.
-
This reply was modified 6 years, 3 months ago by
Guenni007.
can you try this:
function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; } add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
your code should work too – i have that on my memory board for enfold too – but maybe this will do the job for you
see here about my comment: https://kriesi.at/support/topic/icon-list-element-issue/#post-1082360
it seems to be solved over night :
don’t know – becaue i have done all that vinay said. Try again to make it step by step.
disable merging – refresh – merge again etc.ist das ein shrinking header oder nicht?
Bei non-shrinking kann man einfach die line-height korrigieren. Bei shrinking wird es komplizierter. Da die Line-height and as Scroll-event gekoppelt ist. -
This reply was modified 6 years, 3 months ago by
-
AuthorPosts