Forum Replies Created
-
AuthorPosts
-
March 24, 2020 at 4:34 pm in reply to: Adding social media icons to mobile menu on mobiles only #1196876
I’ve re-activated the code – click the hamburger on a desktop and you’ll see what I mean.
March 24, 2020 at 4:32 pm in reply to: Adding social media icons to mobile menu on mobiles only #1196874Yes, it will and I have…
However, if you select hamburger menu for desktop (all) screens in the Avia site settings then the icons appear in the mobile/slide-out menu at ALL screen sizes. Not just mobile sizes.
I’d like to keep the social media icons in the header where space allows and for it to go into the mobile/slide-out menu only on 768px and less.D
That’s done it – thanks Nikko!
Hi I tried that code and it didn’t work. I am using Version: 4.6.3.1 of Enfold. I reverted back to old code.
Any thoughts?
Managed to use this. It’s not exactly what I want but its quite good. It shows all posts from same category rather than excluding just one. Let me know if anyone has any other thoughts.
D
/* make previous-next buttons stay within the relevant portfolio category (multiple portfolios) */ add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); function enfold_customization_postnav($entries, $settings) { if($settings['type'] == 'portfolio') { $settings['same_category'] = true; $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']); } return $entries; }
December 22, 2019 at 11:00 pm in reply to: Ninja Forms not working after latest WordPress update #1168639Everything else is off as you ask. No caching
December 22, 2019 at 10:59 pm in reply to: Ninja Forms not working after latest WordPress update #1168638It’s on mobile devices only. Desktop is fine.
December 20, 2019 at 1:05 pm in reply to: Ninja Forms not working after latest WordPress update #1168109Hi all I’ve found the problem.
It’s the same problem as the one with Gravity Forms described here; https://kriesi.at/support/topic/gravity-forms-not-showing-on-mobile-devices/
Basically the the cookie notice bar script is clashing with the form script. If you disable cookie consent messages then the form works again. However the this fix suggested for Gravity forms above (https://kriesi.at/support/topic/gravity-forms-not-showing-on-mobile-devices/) does not work for Ninja Forms.
Any chance you guys can tweak the avia-snippet-cookieconsent.js to support both cookie consent messages and Ninja Forms?
December 20, 2019 at 12:25 pm in reply to: Ninja Forms not working after latest WordPress update #1168095Hi all I am having this problem too. Mainly on mobiles. It’s due to it being a child theme – if I switch off child theme and switch to main theme it works fine. Switch back and I get the same problem.
Any ideas?
March 21, 2019 at 3:19 pm in reply to: Enfold preferences and ALB no longer working after update to 4.5.4 and 4.5.5 #1081424It appears it was a server issue. The host had to “whitelist rule IDs” to get this to work! Thanks for your help.
Dominic
March 21, 2019 at 3:10 pm in reply to: Enfold preferences and ALB no longer working after update to 4.5.4 and 4.5.5 #1081420Morning Yigit
I’ve got the host looking at it too and they’ve made some progress with ALB – although really slow. Still problems with Theme preferences not saving. They know about that too. Any thoughts on what it could be?
Dominic
March 21, 2019 at 8:59 am in reply to: Enfold preferences and ALB no longer working after update to 4.5.4 and 4.5.5 #1081252Morning, Yigit. Any thoughts? Could it be the server resources or PHP?
Thanks in advance
Dominic
March 20, 2019 at 9:50 pm in reply to: Enfold preferences and ALB no longer working after update to 4.5.4 and 4.5.5 #1081046Thanks, details below:
March 20, 2019 at 9:24 pm in reply to: Enfold preferences and ALB no longer working after update to 4.5.4 and 4.5.5 #1081036Links below to screenshots
May 10, 2018 at 1:06 pm in reply to: Lightbox Modal Window no longer working after update to 4.3.1 #954529Hi @goldengate415 – well done! Sorted it for me…
May 9, 2018 at 10:12 am in reply to: Lightbox Modal Window no longer working after update to 4.3.1 #953785Hi Rikard
Thanks for this. Is there an indicative timeframe?
Modal lightboxes are pretty important for a portfolio based website theme so I’d imagine it’s pretty hard to sell in its current form.
Best
DominicMay 8, 2018 at 1:18 pm in reply to: Lightbox Modal Window no longer working after update to 4.3.1 #953361Hi I’ve reverted back to 4.1.2 for the time being.
I’m still interested to find a fix though.
Best
Dominic
May 6, 2018 at 9:34 am in reply to: Lightbox Modal Window no longer working after update to 4.3.1 #952291Hi Rikard
Details below:
Thanks in advance for this.
Dominic
May 4, 2018 at 11:30 pm in reply to: Lightbox Modal Window no longer working after update to 4.3.1 #951972Just clicking “notify me of follow-up replies via email” (forgot)
May 3, 2018 at 5:04 pm in reply to: Reversing order for custom post type only in Posts Slider (like you can in Portf #950936Sorry I found an answer here!
April 4, 2017 at 4:56 pm in reply to: Adding 'Order by' (like to Avia-masonry) to Avia Blog posts or Avia Post Slider #771866Sorry I forgot to check “Notify me of follow-up replies via email” box.
December 1, 2016 at 4:31 pm in reply to: Aligning a textblock at base of a color section (100% screen size) #719317I fixed it by
.avia-section#bottom-text .container .content {
vertical-align: bottom !important;
}.avia-section#bottom-text .container .content p {
margin: 0 !important;
}so id rather than class.
December 1, 2016 at 3:27 pm in reply to: Aligning a textblock at base of a color section (100% screen size) #719277The first bit of code
.avia-section.av-minimum-height .container .content {
vertical-align: bottom !important;
}worked but moved everything…
The second bit…
.avia-section.bottom-text .container .content {
vertical-align: bottom !important;
}.avia-section.bottom-text .container .content p {
margin: 0 !important;
}Didn’t work even though my text is –
<div class=”bottom-text”>
<div class=”vision”>
<h1>Safe, effective and efficient healthcare achieved through the best use of information and information technology.</h1>
</div>
</div>December 1, 2016 at 2:07 pm in reply to: Aligning a textblock at base of a color section (100% screen size) #719231Hi I tried
.avia-section.bottom-text .container .content {
vertical-align: bottom !important;
}.avia-section.bottom-text .container .content p {
margin: 0 !important;
}And it didn’t move….
Any other ideas?
Hi
I got that to work as a single column in the end. The two column was glitchy.
Thanks
Dominic
Sorry that didn’t work. See http://www.dominicrutterford.co.uk/?s=Dinar on a mobile sized screen
Brilliant – we’re there. Thanks for all of your help!
Difference between the two is http://www.dominicrutterford.co.uk/the-collection/ calls
<img class="attachment-medium size-medium wp-post-image"
and search results calls
<img class="attachment-portfolio_small size-portfolio_small wp-post-image"
Have done – thanks. Although this doesn’t help my too low-res thumbnails/images being called.
See attached and view at 100% (it’s less noticeable on smaller res screens such as laptops)
D
I spoke too soon. That code is working but the image being called is still too low-resolution. I need to be able to call a larger one.
Dominic
-
AuthorPosts