Forum Replies Created
-
AuthorPosts
-
July 21, 2015 at 3:01 pm in reply to: Reverse order of right and left arrows on single portfolio piece #476526
Yay! Thank you Yigit!
July 21, 2015 at 2:53 pm in reply to: Reverse order of right and left arrows on single portfolio piece #476518Thank you – I changed those lines in both the child theme and main theme.
July 20, 2015 at 9:07 pm in reply to: Reverse order of right and left arrows on single portfolio piece #476139Hmmm,
http://testing.curlyhost.com/portfolio-item/woodmere/
I tried changing the code to the one above and the left button still goes to the next project. Do I also need to switch out the css for where those show up on a page?
Thank you!
Yes – I’m having this issue with multiple sites right now – everything works great but when I try to the update the theme it just loads forever and eventually times out. I’m working around it right now with FTP, etc., but it does worry me that something might be seriously wrong.
Hi Ismael,
It’s fine when you resize your screen, but doesn’t work when I pull it up in my Android phone using Chrome.
Best!
Hi,
Sorry, yes, should have been more clear.
http://screencast.com/t/cBBWRulFSdy
So, having it sticky in the left sidebar for everything below the logo but not including the logo…
That works perfectly! Thank you!
Hi guys,
Any insight into having the entire portfolio grid clickable AND have it open on the page with AJAX instead of on a new page?
Best!
Hi Basilis,
I’m using the Portfolio Grid Content Element – I want each section to open using AJAX. Before if you clicked the title it would do that, but the problem was that it was only the title that was clickable versus the entire thing. Now everything is clickable but the AJAX functionality went away.
Hi Yigit,
Using this code works great:
function add_custom_div(){
?>
<script>
jQuery(“.grid-content”).click(function(){
window.location = jQuery(this).find(“a:first”).attr(“href”);
return false;
});
</script>
<?php
}
add_action(‘wp_footer’, ‘add_custom_div’);However, I wanted the portfolio to open as AJAX on the page
This reply has been marked as private.Hmmm – it’s doesn’t seem to have fixed the issue.
What happens is when you are on an iPhone 6 using Safari and you are on the home page and click the Work page it shows up blank until you rotate your screen horizontal and back upright. And then if you click the logo from an interior page it also shows up blank until you rotate it horizontal and back upright.
Yes, I just put the code back in there – it’s super strange – only on Safari on an iPhone 6 will it start acting weird.
When I use this code it breaks the portfolio grid on an iPhone 6 using Safari.
@media only screen and (max-width: 767px) {
.container #advanced_menu_toggle, #advanced_menu_hide {
display: none;
}#top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link {
height: 25px;
line-height: 25px;
margin-top: 7px;
}.main_menu, #header_main_alternate, .main_menu .avia-menu, #header_main_alternate {
display: block;
}.responsive #header .main_menu ul, .main_menu .avia-menu, #header_main_alternate {
display: block;
}
}The client doesn’t want to use the mobile menu, but instead wanted to have the three menu items just stacked on top of each other in mobile. Do you have another method of disabling the mobile menu and having the menu items stack than the one listed above as that one causes issues in Safari on an iPhone 6.
Here’s what I found – and this isn’t the solution that they will like, the design necessitated that instead of the mobile menu I kept the normal menu there and I used the following CSS:
@media only screen and (max-width: 767px) {
.container #advanced_menu_toggle, #advanced_menu_hide {
display: none;
}#top #header_main > .container, #top #header_main > .container .main_menu ul:first-child > li > a, #top #header_main #menu-item-shop .cart_dropdown_link {
height: 25px;
line-height: 25px;
margin-top: 7px;
}.main_menu, #header_main_alternate, .main_menu .avia-menu, #header_main_alternate {
display: block;
}.responsive #header .main_menu ul, .main_menu .avia-menu, #header_main_alternate {
display: block;
}
}Do you have a different solution to get rid of the mobile menu button and keep the normal menu stacked?
Here’s the breakdown of everything they are experiencing…
The iPhone 6 with Safari is having these issues:
In Portrait View Only:
– Home page: Grid of images does not show up (issue occurs about 50% of the time)
– Work page: Grid of images does not show up (issue occurs 99% of the time)
– We’ve noticed that if you turn the phone to landscape view, the images instantly appear (as the 2-columns grid.) Then if you rotate back to portrait view, the images remain viewable.
– The site functions 100% normally in landscape view.Sorry, I don’t have an iPhone 6 so I can’t troubleshoot with the staff at squareonedesign.com on it. It works on an iPad now with an image before the portfolio items, but not on an iPhone 6 with Safari.
So, I “fixed” it by putting a 1×1 transparent pixel in a slideshow area above the portfolio grid. For whatever reason, having an image load before the portfolio items makes it all load correctly the first time.
The issue seems to be very specific – if I put an image above the portfolio pieces it loads fine.
It seems to only be an iPhone 6 (previous models are fine) using Safari and iPads and iPad minis using Safari – other browsers are fine.
Hi Rikard,
It looks like the latest update fixed it!
Thank you!
This reply has been marked as private.It’s definitely an Enfold issue: https://kriesi.at/support/topic/a-conflict-with-gravity-forms/
When another theme is enabled the issue goes away.
I emailed Gravity Forms and Jetpack before this and they confirmed Enfold needs to be updated.
This reply has been marked as private.If it helps, here’s the error message I get when trying to make a backup of a site where I have this issue:
Hey Yigit,
That worked great – this is what I ended up using:
a#advanced_menu_toggle:before {
content: ‘Menu ‘ attr(data-av_icon);
font-size: 18px;
}Thanks Josue! :) I believe that there are always five ways to fix one problem – so I did find a solution to fix it.
I am continually impressed with the quality support and help you guys offer. Thank you a million times over for responding – you’d be surprised at how few support forums actually help people out.
Best!
Shoot – I thought I fixed it by putting the below code instead.
.html_header_transparency #header_meta {
display: none;
}I just changed my header to now show that header meta in the first place.
I had originally moved the phone info next to the menu area but didn’t want it to be on it’s own line above the menu for spacing reasons – the code above was to get rid of that area while still having the text above the menu. I didn’t need it in this instance but it is a little weird that those two things would be connected.
When I put that in it just made it so that the mega menu didn’t work at all.
Turns out it was this line of css that messed it up:
#header_meta {
display: none;
} -
AuthorPosts