Forum Replies Created
-
AuthorPosts
-
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 #1084617
try 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, 12 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, 12 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, 12 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.March 25, 2019 at 3:34 pm in reply to: Again one Problem with merged css – this is sad thing because i like to use this #1082706works ! – great – thanks
by the way: why is it needed / necessary to have
/** * * @since 4.5.5 * @var array */ protected $screen_options;etc. pp on iconlist but not on iconbox ?
hm
I could have sworn that I precisely had this problem with the new version 4.5.5. Of course, I always update all cache settings – due to the background image problem, the merging was even disabled, but even then I created new css and js files.
I don’t know why it doesn’t occur anymore. ?March 24, 2019 at 4:24 pm in reply to: 4.5.5 Fails To Show ANY Custom Background Image at the top of my home page #1082250on my installation the absolute path fails even too. On 4.5.4 this works on 4.5.5. it does not fix the issue.
i tested with url(“https://domain/wp-content/…) with (https://domain/wp-content/…) with (//wp-content/…) etc. pp. always doubling the domain – as you described above.The place to look for is : asset-manager.class.php – the new lines in:
public function rel_to_abs_url($content, $path)
espacialliy on thepublic function _url_callback( $match ) -
This reply was modified 6 years, 12 months ago by
-
AuthorPosts

