Forum Replies Created
-
AuthorPosts
-
I’ve located the problem on this.
I had recently added in the following script to defer parsing (to speed up the site) in functions.php:
function defer_parsing_of_js ( $url ) { if ( FALSE === strpos( $url, '.js' ) ) return $url; if ( strpos( $url, 'jquery.js' ) ) return $url; return "$url' defer "; } add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
When I removed it, the problem went away.
April 13, 2017 at 7:42 am in reply to: Reduced header height – how to get rid of the bar below the header #777080thank you. that worked.
April 11, 2017 at 2:31 pm in reply to: Reduced header height – how to get rid of the bar below the header #776051Hi.
This script works, but on all the pages:
html_header_top.html_header_topbar_active.html_header_sticky #top #main { padding-top: 90px!important; }
However, I want the script to work only on the home page. But, when I use the following script, it does not work:
body.home. html_header_top.html_header_topbar_active.html_header_sticky #top #main { padding-top: 90px!important; }
April 11, 2017 at 9:18 am in reply to: Reduced header height – how to get rid of the bar below the header #775889I’d like to remove the extra spacing only on my Home page. When I add: body.home to your above script (which works by itself), it won’t work, i.e.:
body.home. html_header_top.html_header_topbar_active.html_header_sticky #top #main {
padding-top: 90px!important;
}Hi Rikard,
I finally got to test out the idea of switching templates (used twenty sixteen) and then activating the media cleaner plugin. The results were pretty much the same. It recognized attached images as unattached.
Anyway, it was worth a try.That might work. Thanks.
Hey John. You’d recommended the “WWW Optimizer plugin”. I couldn’t locate such an item. There is an “EWWW Image Optimizer” (https://wordpress.org/plugins/ewww-image-optimizer/). Would this be the same?
Thanks John. I’ll look into the options you’ve noted, which I haven’t already applied.
Hi John,
Thanks for that. I did, however, add that specific plugin and found that is sees all of my images as unattached. Perhaps because everything in the website uses the Layout Builder?
Nikko,
Thanks for those suggestions. Using them together brought me from a 25/100 score to 67/100 (that is, after I optimized several images).
Thanks for the advice, which I’ll follow, Rikard.
Hi Rikard,
Yes, thank you. Please see private for access.
Thank you, I’ll give that a try.
I did. But because there will be a unique submenu for many posts, I’d like not to go that route.
August 25, 2016 at 6:13 pm in reply to: Change the "Portfolio Items" name in admin to something else #677700I had seen that recommended fix at the top of this thread. But, when the fix is applied in: enfold-child >includes >admin >register-portfolio.php, it does not work. It does, however, work in the parent theme. And, that would be a problem on future updates.
Also (for those following this thread), there are 2 terms to find/replace with the preferred: “Portfolio Items” and “Portfolio Entry”.
Hi Basillis. Please see my link in Private. (further explanation is on that page.) Thanks.
Hi.
You know the default layout of sidebar navigation for child Page’s of a particular Parent? That kind of basic vertical list of links.cheers,
August 22, 2016 at 8:06 pm in reply to: Change the "Portfolio Items" name in admin to something else #676004This is great. Thanks for providing this. Although it does change the naming in the Dashboard sidebar, it’s not changing the name site-wise. The individual other areas where the names “Portfolio Entry” remains the same (top black bar navigation drop down: “add”, and the single post/entry.
Can this be done?
No worries. I thought I’d check my Enfold options first.
Thanks for your input.
This worked fine for me. Thanks.
Same problem here. I switched back to version 3.6.1 and the map shows again. I’ll wait for something more definative, or the new Enfold.
August 10, 2016 at 1:35 am in reply to: Google maps not working even though I followed all instructions #670564Google maps not working on this end either. (I’ve reposted this on the larger of the threads on this topic.)
- This reply was modified 8 years, 3 months ago by laptophobo.
I found your solution in your forum (described as column in a column): https://kriesi.at/support/topic/columns-within-columns/
So, please disregard the above post.
Thanks much.
Done.
Thanks Vinay. That worked!
Thanks for the try, but it didn’t change much. It just un-centered the icon.
It’s working now. Thanks!
Hi. Sorry, this didn’t work either. I’ve placed this test navigation on a different (non Home) page. So, what was:
body#top.page-id-3964 .av-submenu-container{ height: 6em ; background-color:#00FFFF; }
did give the height 6em with the color of #00FFFF–but not on responsive view.
Using your suggestion:
.page-id-3964#top .av-submenu-container{ height: 6em ; background-color:#00FFFF; }
produces the same results as above.
and finally:
.page-id-3964 .av-submenu-container { height: 6em;}
(which is what I had originally tried), does nothing at all
Hi. I’ve posted a compilation of screen shots to show you what the problem is. Please see the private content for the link.
Thanks,
Hi Rikard,
As noted at the beginning of the thread, I’m trying edit the navigation menu height, but only on a specific page. This is the original code:
#top .av-submenu-container{
height: 6em ;
}I tried the following code, but it didn’t work:
body#top.page-id-3964 .av-submenu-container{
height: 6em ;
} -
AuthorPosts