Forum Replies Created
-
AuthorPosts
-
January 17, 2021 at 5:58 pm in reply to: Header social media bookmark icons missing in iOS Safari #1273111
Clearing the iOS Safari cache made no difference. And I get the same result in a private browser window. But I’ll look into the JS errors and CDN/cache. Thanks!
January 20, 2020 at 2:57 pm in reply to: Advanced Custom Fields showing inside blog elements #1176321I ran in to the same problem today, though the ACF field group was appearing on my blog category page, not inside an Enfold blog element. I quickly realized that it was a field group I’d recently imported using the ACF tools. A look in the database showed that the acf-field-group post had been placed in my default blog category during import. Looks like a bug with the ACF import, but thought this might be helpful for others to know.
October 2, 2019 at 3:48 pm in reply to: Advanced Layout Editor not loading after making edits to post #1144186I did contact the host, and yesterday they were able to make some changes to the security rules that solved the problem. Thank you for pointing me in that direction!
September 30, 2019 at 4:17 pm in reply to: Advanced Layout Editor not loading after making edits to post #1143405If the admin-ajax.php file were missing or blocked by mod_security rule, wouldn’t this problem be happening for me all the time? But it only happens occasionally with certain posts, after I have been editing them.
September 18, 2019 at 3:07 pm in reply to: Advanced Layout Editor not loading after making edits to post #1139512If I create a new post and paste in the content from the problem post, I recreate the issue. I have included the URL for the test post, which you can edit and experiment with as much as you need.
To revert the test post to a working state, use the debug field to replace the content with an earlier version. I have included a link to a text file on Dropbox that contains this working version of the post.
From that working state, any one of these next steps has been enough to produce the bug for me:
• Duplicate the last flex column
• Add a new empty flex column
• Add a hyperlinkMay 6, 2019 at 2:21 pm in reply to: WooCommerce and Enfold – page hangs when creating variations from all attributes #1097685Thank you Günter. You are correct, when I use a private window it worked as expected. I had already cleared the browser cache files, but did it again and now it is working correctly. Issue resolved.
I had this same problem with a LayerSlider on my site. The slider uses the Full-Width skin, and the skinspath property in the init js code was incorrect, with my web server’s home folder and the site root inserted into the middle of the path. So I was getting 404 errors for skin files when the slider was loaded.
In the end, I was able to fix the issue by changing to a different skin for the slider (No Skin), saving the slider, then changing the skin back to “Full Width” and saving again.
December 17, 2018 at 10:54 pm in reply to: Changing Easy Slider transition length in child theme #1046583This reply has been marked as private.November 9, 2018 at 6:19 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1031747That took care of it, thank you!
November 5, 2018 at 9:06 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1030034In order to work around this, I have needed to change the page layout to remove the images from the tab sections, where they resize as expected. But I have recreated the issue in a test copy of the page, which you can view here:
November 5, 2018 at 7:51 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1030021When the image element is wider than the window, the image and the enclosing tab section are both stay wider than the window and are cropped by the right window border. I can disable all plugins and my child theme, and the problem still happens.
I can reproduce the problem with:
IE 11 on Windows 10
IE 10/11 on Windows 7 and 8I have included links to screenshots.
October 30, 2018 at 3:27 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1028067Do you have any suggested workarounds for this?
October 25, 2018 at 5:03 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1026419Also, I can reproduce the problem with Enfold 4.5, both with and without my child theme.
October 23, 2018 at 7:15 pm in reply to: Image inside tab section will not shrink to fit container with Internet Explorer #1025562Thank you. Any update on this? I’m curious if you were able to reproduce it.
Thank you very much! That got me most of the way there. The individual list items inside were still being floated left, but I added this to what you posted, and I’m now getting the desired result:
body.home #avia-menu li.menu-item-top-level{ float:none; display: inline-block; } body.home #avia-menu #menu-item-search { float:none; display: inline-block; }
- This reply was modified 8 years, 5 months ago by Scott Beyer.
Sure! The default header I am using throughout the site is lego left, menu right, sticky. Link included below.
On the home page (link below), I have increased the header height and centered the logo. I also wish to center the menu. This is the CSS I am currently using to accomplish this:
@media only screen and (min-width: 768px) { body.home #header { height:160px; position: relative!important; } body.home .logo { transform: matrix(1, 0, 0, 1, -300, 0); top:25px; left: 50%; height: 74px; } body.home .logo a, body.home .logo a img { height: 74px; width: 600px; padding: 0px; } body.home nav.main_menu { top: 100px; } }
Thanks for your help!
Thanks! Substituting either “.av_header_sticky” or “#header”for “.header-scrolled” does the trick.
January 15, 2015 at 1:32 am in reply to: Parallax background photo not displaying completely in Safari #379830Thanks Andy. I am using Safari 8.0.2 in Mac OS 10.10.
I have turned off internet plugins and all browser extensions, and cleared the browser cache. The issue still happens, About half of the time I load the page, when I scroll down to that third photo it is only partially displayed. What I;m not sure is whether it;s still loading, or just partially displaying. It’s less than 100KB in size, so not large.
I tested from a new user account on my computer and had the same result.
January 12, 2015 at 4:10 pm in reply to: Parallax background photo not displaying completely in Safari #378320This reply has been marked as private.The issue is resolved. It was more about js than css. I found an article here about how to disable the image hover effect from the avia.js file, and that solved the problem for me.
Thanks for your reply, but I don’t think an iframe would be feasible in this case, as I need the content to be generated by a WordPress short code. And yes, I have used the Avia image element but I want to use something different here.
The instances of img that I want to impact are wrapped in a div — I can certainly apply css to just those instances, that’s not a problem. I’m not going to effect the entire site. I’m just having trouble tracking down the applicable source css in Enfold.
May 22, 2014 at 9:58 pm in reply to: How to sort avia blog post element grid posts alphabetically #268857Thanks for the suggestion. In the end, this code gave me what I needed, defaulting all queries to sort by title. And this sort happens regardless of whether or not I use pagination.
add_filter( 'pre_get_posts', 'custom_get_posts' ); function custom_get_posts( $query ) { if( is_category() || is_archive() ) { $query->query_vars['orderby'] = 'name'; $query->query_vars['order'] = 'ASC'; } return $query; }
May 22, 2014 at 9:46 pm in reply to: How to sort avia blog post element grid posts alphabetically #268844No, because I want pagination. But I need the posts to sort before they are paginated, which is what I expected. That’s how it works if I code a query manually.
April 18, 2014 at 4:41 pm in reply to: Avia Layout Builder, Text Block Editor – editor populates with wrong content #253229Hmm… I deactivated all plugins, deleted my browser cache, and then relaunched my browser and logged back into WordPress. The problem is still happening. Safari 7.0.3. I have not yet tried with other browsers.
September 18, 2013 at 6:27 am in reply to: Text inside Blog Posts page element is noticeably blurred in Safari 6 #162775I’m taking a different approach now, so the links I included are no longer applicable. But if this is a familiar issue, I’d be glad to hear whatever you know about it. Thanks!
-
AuthorPosts