I have some tracking code I want to place at the bottom of my child theme.
By default, enfold theme’s Google services code block place code to the top. I want to change the place of all my js or tracking code to the footer of the child theme.
Hi Rikard, thanks for your rapid response.
I deleted the social icons. As you can see the empty area is still there. I now have an empty container on top of the page and a container for the menu below. I’d like to delete the empty container. :-)
Thanks a lot! It was a simple fix, just in hiding^^
Another fix that should be simple, when you see the result of a google search, below the link that leads to “home”, in google search results, you can read :
“Home · Process · About · Contact · Research · Portfolio · Examples · Search … Initializing… stage: 500×375 file: http://irisinspire.com/wp-content/uploads/2015/11/iris-inspire-video2-movie.mp4 autoplay: false preload: none isvideo: true …”
It doesn’t look very enticing – how can I add some cooler, descriptive text instead of this technical jargon?
Hey envapk2,
Please try adding this at the very end of your themes / child themes functions.php file:
function mobile_menu_social_icons(){
?>
<script>
jQuery(document).ready(function(){
var htmlString = jQuery('.social_bookmarks').html(),
mobileMenu = jQuery('#mobile-advanced');
mobileMenu.prepend('<ul class="noLightbox social_bookmarks">' + htmlString + '</ul>');
console.log('<ul class="noLightbox social_bookmarks">' + htmlString + '</ul>');
});
</script>
<?php
}
add_action('wp_head', 'mobile_menu_social_icons');
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
/* Mobile menu social icons */
#mobile-advanced [data-av_iconfont='entypo-fontello']:before {
font-family: 'entypo-fontello';
}
#top .social_bookmarks li a:before, #mobile-advanced .social_bookmarks li a:before {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-weight: normal;
content: attr(data-av_icon);
speak: none;
}
#mobile-advanced ul.social_bookmarks li, #mobile-advanced ul.social_bookmarks li a{
border:0!important;
}
#mobile-advanced .social_bookmarks li a:before {
color: #666;
font-size: 30px!important;
}
#mobile-advanced .social_bookmarks li > a:before {
font-size: 20px;
}
If you still have any issues please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
Vinay
Hi,
We have added the below css in Quick CSS please review the site now :)
#top h1 a, #top h2 a, #top h3 a, #top h4 a, #top h5 a, #top h6 a {
text-decoration: underline!important;
}
Best regards,
Vinay
Hi,
1.) Could you please a screenshot of the comment form issue? Looks like you’re using a third party plugin.
2.) Add this in the Quick CSS field:
.main_color input[type='submit'] {
font-family: 'Capriola', 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
And one last question: Why do the titles of the posts on the blog page look different from the titles on single post pages.
3.) The title in the blog overview page is h2, not h1. Add this in the Quick CSS field:
#top #wrap_all .header_color h2, #top #wrap_all .main_color h2, #top #wrap_all .alternate_color h2, #top #wrap_all .footer_color h2 {
color: #492e26;
font-size: 23px;
font-family: 'Atma', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: bold;
text-transform: none;
}
For other inquiries, please create a separate thread.
Best regards,
Ismael
Hello,
What CSS do I need to add for the hover on my masonry grid? I would like a red color for example, instead of the opacity and to keep the originally zoom effect as well.
( Example of hover color (just the color, I don’t the text): http://peacheyphotography.co.uk/)
I’m at this point in my CSS research:
.avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
-webkit-transform: none;
-moz-transform: none;
transform: none;
opacity: 0.5!important;
}
Thanks a lot for your help.
Regards,
Bibahbuh
Hi,
@M|C Mods try to keep the focus on the main topic as several issues in one ticket leads to confusion. Please search in the forum or google with a prefix “Kriesi” or “Enfold” If you do not find a solution go ahead and create a new ticket. If you already have a ticket please await one of our Mods will get back to you.
For those who are facing the same issue please share the link to your site.
Best regards,
Vinay
-
This reply was modified 9 years, 6 months ago by
Vinay.
Hi!
The map is working in the contact page. Did you remove the footer widget? Please add it again then follow the instructions here: https://kriesi.at/support/topic/google-maps-api-error-missingkeymaperror-3/#post-677308
Cheers!
Ismael
I figured out the top menu bar.
Hi there. Is there a way to have the the logo and menu bar show up on page load? Right now it only shows up after I scroll down a bit. Here is the site. It is a one-pager. Also, do you have some css that I can use to move up the boxed caption in the hero section (the full-screen slider at the top of the page)?
Thanks for your help
Hi there. I’ve done a lot of Googling and searching in the forum. I have tried implementing some of the suggested solutions to no avail. Here are some things I have done:
The Advanced Layout Builder sometimes stops loading properly due to different factors like browser caching. Here are a few things you could try to fix it:
First of all, make sure that you are running the latest version of the theme – you can find out what the latest version is here
Clear your browser cache and restart – Guide to clearing your browser cache
Try a different browser to verify if you are getting cached results or not – preferably a browser you have never used to log into the WordPress installation in question with before. If it works as expected in this browser, then you are getting cached results in the first one
Disable all plugins to see if there is a conflict with any of them – if there is a conflict, you can reactivate them one by one to find out which one is causing the problem
If none of the above should work, then try to overwrite your theme files with a fresh copy from your Themeforest account – Please make sure to properly back your site up prior to attempting this. Refer to this guide for further instruction on updating via FTP.
PLEASE HELP ME.
Hey!
Try adding this code to the Quick CSS:
#top label.input_checkbox_label {
font-size: 20px;
}
Cheers!
Josue
Hi,
To make header meta appear regardless of header settings you’d need to use a code like this:
add_filter('avf_header_setting_filter', function($header) {
$header['header_topbar'] = 'true';
return $header;
}, 10, 1);
add_filter( 'avf_execute_avia_meta_header', '__return_true', 10, 1);
add_action('avia_meta_header', function() {
get_search_form();
});
Best regards,
Josue
-
This reply was modified 9 years, 6 months ago by
Josue.
Seems like others are having the same problem: https://kriesi.at/support/topic/special-heading-inside-color-section-styling-is-not-consistence/ – As May also explains the first two H2’s looks fine, the rest H2’s does not
Exactly the same problem I have. I have also tried duplicating and just change text without any luck. As you also explain the first two H2’s looks fine, the rest H2’s does not. https://kriesi.at/support/topic/h2-styling-not-behaving-the-same-way-on-the-same-page/
Hello,
Ive being testing for hours and found it is REV Slider plugin stopping it working.
Why now, i have not updated either plugin, it just stopped working.
Just thought id let you know incase someone else experiences the same issue
with Avia layout builder.
I hope theres a fix soon.
Regards
Jay
Hi,
I changed the background position from top right to center right, in the Color Section background settings.
Best regards,
Josue
I already reported this here:
And admin kept asking me to go out of my way to post something like this instead of trying to investigate the issue that is potentially affecting all your users.
Hey,
Refer to:
https://kriesi.at/support/topic/please-clear-this-up-for-em-ga-tracking-2/#post-348525
The tracking part would be something like this:
$('.tab_titles .tab_counter_0').on('click', function() {
ga('send', 'event', 'button', 'click', 'button-1');
});
$('.tab_titles .tab_counter_1').on('click', function() {
ga('send', 'event', 'button', 'click', 'button-1');
});
$('.tab_titles .tab_counter_2').on('click', function() {
ga('send', 'event', 'button', 'click', 'button-1');
});
$('.tab_titles .tab_counter_3').on('click', function() {
ga('send', 'event', 'button', 'click', 'button-1');
});
$('.tab_titles .tab_counter_4').on('click', function() {
ga('send', 'event', 'button', 'click', 'button-1');
});
Best regards,
Josue
Hey,
Not exactly theme related but you could use wp_head + a multi-site conditional.
Best regards,
Josue
Hi,
Now add this to Quick CSS / child theme style.css:
#header_main .fb-like.fb_iframe_widget {
position: absolute;
top: 34px;
left: 200px;
}
#header_main .fb_iframe_widget span {
vertical-align: top !important;
}
Best regards,
Josue
Hey!
Try adding this code to the Quick CSS:
.avia_desktop.avia_transform3d .bts-special .av-masonry-image-container {
transform: none !important;
}
Cheers!
Josue
@josue Thanks!
1) Logo remains intact but “Something” appears right on top of logo vs to the right.
2) It pushes the menu down
Code applied to child theme.
-
This reply was modified 9 years, 6 months ago by
M|C.
yes of course we tried all of that. come on guys.
this issue is huge, everyone is suffering, multiple threads are happening. It is not us, it is the theme and/or WordPress 4.6. PLEASE GET ON A UNIVERSAL FIX. we shouldn’t have to go into the database to fix this.
Here are the other threads
Hi
I want to make the social icon appear in the mobil slide-out menu, as in this image
http://www.peterk2.com/menuWithTwitter.jpg
I have looked at this from the forum
but it isn’t doing it. Is this possible?
many thanks
Peter
Hallo Ismael,
yes – I’ve already tried this.
I want to move Portfolio-Pages within a WP Multisite Projekt from a Subdomain to the Maindomain.
F.E.
move to
Let’s have a look at the accordion slider at the top.
How to create the relationship id=’3693′ to the according image?
Thank you for your help!
Best Regards
Peter
Hi there,
how can I add the social share buttons that are by default at the very bottom of a post also to the top of a post?