Hello Yigit,
Can you please answer me? My work has stopped as I need to get to the settings, I need to change the analytics plus the font, plus I’m redesigning the site. And I can’t do anything because of this issue.
I’m glad you hijacked my topic :)
But please post the solution here when you find it.
Hi mariajoensen!
Thank you for using Enfold.
Remove this css code from the style.css file:
#top #main .avia-section .template-page {
display: none;
}
It hides all contents inside the color section.
Regards,
Ismael
Hey!
Add this in the Quick CSS field to decrease the space between the posts:
.post {
margin-top: -20px;
}
Cheers!
Ismael
Hey!
Thank you for the info. We checked the site on Firefox 42.2 and the columns do not transition more than once. It fades up and then stops. What is the version of your firefox browser?
Regards,
Ismael
Hi lara!
Thank you for using Enfold.
1.) Add this in the Quick CSS field to change border color:
.av_header_transparency li.current-menu-item > a > .avia-menu-text {
border-color: #ffffff;
}
.header-scrolled li.current-menu-item > a > .avia-menu-text {
border-color: #5f5477;
}
2.) Use this to change the logo size:
.html_header_top #top .av_logo_right .logo {
width: 380px;
height: 196px;
}
3.) Could you please provide a screenshot of this list?
Regards,
Ismael
Hey!
Please use the below CSS in Quick CSS under enfold > general Styling
.actionbar-icons .av-icon-char{
border-width:0!important;
border-style:none!important;
}
#top .actionbar-icons a.av-icon-char:hover:after {
-webkit-animation: sonarEffect 0s ease-out!important;
animation: sonarEffect 0s ease-out!important;
}
Cheers!
Vinay
Hey!
You can disable the theme’s product sort option and enable the default woocommerce sorting dropdown. Add this in the functions.php file:
add_action( 'after_setup_theme', 'after_setup_theme_mod' );
function after_setup_theme_mod(){
//add_filter('avf_builder_elements', 'avf_builder_elements_mod');
remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20);
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); /*remove woocommerce ordering dropdown*/
}
And the following code in the Quick CSS field:
#top .woocommerce-ordering {
position: relative;
right: 0;
margin: 0;
z-index: 20;
top: 50%;
margin-top: -23px;
width: 100%;
min-width: 200px;
margin-bottom: 20px;
}
I’m not sure if this is going to fix the issue with the plugin but the code should bring back the default woocommerce dropdown.
Regards,
Ismael
Hello,
The mobile version of my website is not working great. I disabled the logo on the desktop version of the webite with a custom CSS code but it’s still showing the enfold logo on the mobile version of the website. The code I included is the following :
.logo { display: none; }
Also, there is a problem with the text formatting on the section “Our Approach”. It’s broken and does not display like the other text..
How can I fix those issues ?
Thank you !
Hey!
1.
To re-size fonts only and not images please use a plugin like
https://wordpress.org/plugins/wp-font-resizer/screenshots/
https://wordpress.org/plugins/zoom-widget/
https://wordpress.org/plugins/font-resizer/
2.
To re-size logo please use the below CSS
.responsive .logo img {
margin: 0;
max-width: 160px;
}
3.
To make the mu look like the example link
Change menu position in Enfold > Header > Header Layout > Menu and Logo Position > Logo Left, Menu Below
Then add the following CSS in Quick CSS
#top #wrap_all .header_color .av-menu-button-colored > a:hover .avia-menu-text {
background-color:#000;
}
#top #wrap_all .header_color .current_page_item > a:hover .avia-menu-text {
background-color:#000;
}
4.
In page layout options please remove breadcrumbs.
5.
The reason you lose custom modification is because the theme files get over written and the solution for this is to use a child theme and add your modifications. please check http://kriesi.at/documentation/enfold/using-a-child-theme/
Request you to kindly open new tickets for new issues if they are not related so we can keep the focus on main topic and avoid confusion.
Regards,
Vinay
Hey!
Please add the below CSS in Quick CSS
@media only screen and (max-width: 767px) {
.responsive #top .logo img {
max-height: 55px!important;
}}
Cheers!
Vinay
Hi!
Not a problem. We added a extra bit of code for large monitors
@media only screen and (min-width: 1400px) {
#top #wrap_all .header_color h1 {
font-size:70px;
}
}
Please review the site now and let us know…
Cheers!
Vinay
SKParticipant
Site: http://geekrumor.com vs. https://geekrumor.com
When flipping the site to HTTPS, the following icons are gone:
Social icons top and bottom of page
Search Box bottom icon bottom of page
Scroll to Top Arrow bottom of page
Wondering if anyone else has ran into this and if there is a simple fix.
-
This topic was modified 9 years, 10 months ago by
SK.
Greetings,
I’m having trouble formatting an image on the top of my home page. I like the size and everything of how it is now, but the only way I could get it that way was to put it in a gallery (which is a problem because they can click on it and it looks funny). I tried using the image container but the resulting image was very small. I tried some of the full-width options but I didn’t really want it full-width plus it was messing up some of the formatting of the lower elements (if I could get it to work at all). I’m not sure what other containers I could use and I didn’t see a sizing option on the normal image container. Any ideas? Thanks.
Hey karlemagne!
Regarding one, take a look here
https://kriesi.at/support/topic/header-logo-url-change/
Regarding two,
You can just add [nolink] to the end of your copyright line under Theme Options -> Footer
Regarding three, there is cache that is why you can not see it. You will need t empty the cache and it will work properly
Best regards,
Basilis
Hi!
I have a following question. Is there a chance I can add a flag to change the language of my site to English. It is Polish by default so I would like to have two small flags somewhere at the top right preferably. If yes how it can be done?
My website is szkola-overseas.com
Thank You in advance!
Tom
I’ve also tried adding the following code found here: https://kriesi.at/support/topic/change-main-product-image-using-thumbnails-beneath/
function add_custom_target(){
?>
<script>
jQuery(document).on('mouseenter','.thumbnails .zoom', function(){
var photo_fullsize = jQuery(this).find('img').attr('src').replace('-200x300','').replace('-169x300','').replace('-300x111','').replace('-300x200','').replace('-214x300','').replace('-300x169','');
jQuery('.woocommerce-main-image img').attr('src', photo_fullsize);
return false;
});
</script>
<?php
}
add_action('wp_footer', 'add_custom_target');
Hi,
With the latest update enfold occurred the same error on my website that explains this link.
https://kriesi.at/support/topic/my-page-has-stopped-working-with-wordpress-4-5-and-enfold-3-5-3-please-help/
When I introduced the code in functions.php website function properly again.
Every time it is updated enfold must enter the code again in functions.php?
Thank you
We have a webpage where the first time a 1/4 and 3/4 column are next to each other in the ALB they appear on top of each other on a mobile screen. However, farther down the page when a 1/4 and 3/4 column are used, they appear next to each other on mobile. I know I’ve seen a setting for this, but where is it?
nevermind, found a problem.
it is actually making the full width submenu act strangely in desktop mode.
Is isn’t letting it go to the full width of the container anymore and is smushing it inward.
http://www.chevysminnesota.com/menu/classics/
Thanks for helping
Hello,
I was wondering if there was something in enfold theme stopping the thumbnails showing in the main product image.
At the moment i have disable lightbox to the main image but the thumbnails still show up in lightbox.
I found this script which works with the standard wordpress theme when placed in the header.php:
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(document).on('hover','.thumbnails .zoom', function() {
var photo_fullsize = jQuery(this).find('img').attr('src').replace('-250x250','');
jQuery('.woocommerce-main-image img').attr('src', photo_fullsize);
return false;
});
});
</script>
But it doesn’t work when the enfold theme is activated.
Any help with a workaround would be appreciated.
Hi Enfold support team,
I tried to use this forum post from Ismaël to create a new Avia shortcode that would open portfolio links in new tabs (target_blank) : https://kriesi.at/support/topic/need-new-tab-external-link-in-portfolio-grid/
That works wells, but now, the links from the standard Avia Portfolio Grid are also opening in new tabs …
Could you help me with that problem ? Here is the demo page :
http://586814b516.url-de-test.ws/enfoldsupport/010_test_new-element_avia_portfolio_grid-with_target_blank/
Thanks for all.
PS : PAste the demo url in the forum post gave me a screen capture with no link, so i used the “code” function for the url…
-
This topic was modified 9 years, 10 months ago by
ouranos3.
Ok, so this might work – I added it into the home page as the first item because I’m using a fullwidth easy slider. It appears at the very top before scrolling and then jumps down to below the logo and header as scrolling starts. Is there a way to have it below the logo and pancake menu at all times? I’m putting a link in the private area so you can see what we have – working on another option as well with a widget but it’s buggy (grabbing some content from the footer). thanks again!
Thanks Ismael. Much appreciated.
It’s working now but just 2 more things.
1. It doesn’t stop on click of the close button (located at the top-right of the ajax portfolio item content).
2. In a particular item(see private content) on page 1, i’m experience audio overlapping issue (first song doesn’t stop playing when another play button is clicked) when i use multiple audio shortcodes.
Could you help fix this..
Your support has been great and patient very very helpful. Thank you in advance.
-
This reply was modified 9 years, 10 months ago by
adotopanuga.
I have this site up and running from last year plus
but today when i look at it, the elements stopped working, please help asap.
for e.g, in all the sections i have image backgroud with elements, now apart from first and last section, elements on rest of sections are not displayed.
in the theme update area, it says -:
No Updates available. You are running the latest version! (3.0.4)
I am doing a complete 360 turn around on not being happy with your support services.
You made genuine and timely attempts at resolving the issues. Thank you.
We tried so many steps and as such I am not completely sure which of the steps fixed the issues, and so I unfortunately don’t have any proper technical solution to share with other users.
While this issue was going on, there was a very recent WP 4.5.1 Maintenance Release update that alluded to “..an incompatibility between certain Chrome versions and the visual editor “. Did this have any unintended effect on the Avia Layout Builder or Advanced Layout Editor functionality ?
If “Kriesi’s support” group know what the exact issues and solution was, please post here for other users of your theme. It’ll help avoid a lot of needless flaming and frustration on your forums.
But please stop suggesting the generic solutions of “install, uninstall, hard refresh, wait, wait, lather rinse and repeat solutions”. You have a great theme and your developers are obviously very smart folks – you can do much better.
If the issues are with upstream software code (WP, PHP etc) an appropriate response will be something like ….
“…Yes we are aware of some of these issues and we are working fast and furiously on it and waiting for upstream to fix bug <insert URL to bug XYZ123> ….. Please don’t make too many drastic changes to your site as, this further confuses issues. We will keep you posted. Thanks – Kriesi’s support”
Thanks for working with us on this.
Hey!
@patmc1 I already replied you here – https://kriesi.at/support/topic/home-page-not-saving/#post-623196
Your issue is user related issue. Please stop hijacking other threads.
Cheers!
Yigit