Forum Replies Created
-
AuthorPosts
-
October 13, 2014 at 12:51 am in reply to: LayerSlider WP not opening embedded videos as popover #334581
It worked! Thanks Josue, you are a legend!
This can be closed now.
October 10, 2014 at 6:34 am in reply to: LayerSlider WP not opening embedded videos as popover #333676Part of the problem is that there is no way to add a class or ID to the
<a>
tag when you specify the URL for the image (from the LINK tab).My web developer was able to track down where to add the ID by digging through the source files of the LayerSlider.
This is where we found it
themes\enfold\config-layerslider\LayerSlider\includes\slider_markup_html.php// HTML attributes $level = isset($layer['props']['level']) ? $layer['props']['level'] : ''; $el->addClass('ls-l'.$level); if(!empty($layer['props']['id'])) { $inner->attr('id', $layer['props']['id']); } if(!empty($layer['props']['class'])) { $inner->addClass($layer['props']['class']); } if(!empty($layer['props']['url'])) { if(!empty($layer['props']['rel'])) { $el->attr('rel', $layer['props']['rel']); } if(!empty($layer['props']['title'])) { $el->attr('title', $layer['props']['title']); } } else { if(!empty($layer['props']['title'])) { $inner->attr('title', $layer['props']['title']); } }
And this is what we’ve had to change
// HTML attributes $level = isset($layer['props']['level']) ? $layer['props']['level'] : ''; if($layer['props']['id'] == 'wistia'){ $el->addClass('ls-l fancybox-iframe'.$level); } else { $el->addClass('ls-l'.$level); } if(!empty($layer['props']['id'])) { $inner->attr('id', $layer['props']['id']); }
Is there another way to do this other than modifying the source code, so that when we update the theme it doesn’t break it?
- This reply was modified 10 years, 1 month ago by Perenso.
November 28, 2013 at 11:40 pm in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #194531Hi Yigit,
As mentioned in my other support ticket I need your IP address to allow you to access the site.
The way I did it was in the Enfold Theme settings > Footer, you can enter [nolink] after your footer text.
November 28, 2013 at 6:46 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #194172Hello? I can see replies to everyone else’s support tickets but no reply to mine?
November 27, 2013 at 11:35 pm in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #194100Guys,
Please let me know what’s going on with this issue as it seems you’ve either been ignoring it or working on a solution.
November 27, 2013 at 12:00 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #193624Hi Guys,
still waiting for a reply on this issue.
November 26, 2013 at 12:25 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #193211Hi,
I’ve locked down the website again so you won’t be able to access it unless you can send me your public/outgoing IP address.
November 25, 2013 at 5:42 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #192786Additional notes
iOS 7: Black lines flicker
iOS 6: Entire page flashes whiteNovember 25, 2013 at 5:23 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #192774This reply has been marked as private.November 25, 2013 at 12:22 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #192666This reply has been marked as private.November 25, 2013 at 12:20 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #192664Hi Devin,
I’ll make the website available for < 24 hours as the site isn’t ready for the public. Link will be posted in next reply as private.
I thought it could be the CSS styling but I removed all of my changes from the Quick/Custom CSS section and it still happens. At current there is no custom styling on the site.
Remember that this only happens on iOS browsers (Safari & Chrome) and doesn’t occur on any PC browsers I’ve tested. The color of this flashing border changes based on the zoom level. At normal zoom it shows as black and when zoomed in half way its reduced by 1-pixels but not always this kind of behaviour.
Your help is much appreciated. Thanks.
November 22, 2013 at 5:00 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #191715I found a band-aid fix to this by adding to the CSS {border-color: transparent;} but it still flickers the black border in the footer now.
Any suggestions on a better solution?
November 22, 2013 at 4:54 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #191713After investigating a little more it seems that it only happens when I make changes to the CSS to the container_wrap:
.container_wrap {
clear: both;
position: relative;
z-index: 1;
border-top-style: solid;
border-top-width: 1px;
}If I set the border-top-width to 0 it hides the grey border, which is what I want but on the iPad it keeps showing those black lines in the screenshot.
November 22, 2013 at 2:50 am in reply to: Content Slider Auto-rotation option causing black borders to show on iPhone/iPad #191701This reply has been marked as private.Perfect. Thanks it worked. Keep up the great support guys.
You can close this ticket now.
Works great.
Thank you guys for your help!
Hi,
I’m not sure you understood what I was after. Yes I removed the header but so was the footer and socket. I want to keep the socket + footer at the bottom.
Goal:
No Header present on the page
Socket and Footer on the bottom of the page- This reply was modified 11 years ago by Perenso.
This reply has been marked as private. -
AuthorPosts