And what about getting rid of the sidebar for these products?
Is it possible to have this modification from Enfold quick CSS?
hummmm
good news.
The only concern I have is that is we’re 100% clean on PHP modifications (CSS).
Everything we have is inside the quick CSS tab inside Enfold.
Any chance of having this there?
I’m always afraid to update things (template) when we have PHP moficitaions.
Guenni Thank you for responding! I did glance over your thread and understood most of it. I am not dealing with a transparent header so that bit of it through me off. Nor do I care if the main header is sticky I just need the submenu to stay sticky for navigational ease. I will have another go and read through your thread more closely as well as examine the files mentioned in the post and see what I can figure out. I have been able to partially accomplish what I am trying to do just not fully able to get it working cross browser. The two pages I mentioned I will post below.
page 1 – https://qc.pizza/menu/
page 2 – https://qc.pizza/qc-pizza-minneapolis-menu/
I do not use a child theme on this site. Most of my CSS is in Quick CSS. Some directly to the Enfold CSS files. PHP I edit directly and file merge on updates.
Thank you again Guenni
I will post my progress
stephen j mcateerGuest
Hello
Do I need to renew my ENFOLD license to get Kriesi support?
envato99
Parker999*
Thanks
Dear Enfold,
In your change log you indicated that you are working on Enfold 5.0.
Would you like to share a little more about what you’ll be adding in this major release?
And we as users still have influence on this.
I look forward to a response.
-
This topic was modified 4 years ago by
Webvriend.
Hi,
Great, I’m glad that Ismael could help you out. I’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hey clapdrone,
Did you try following this? https://kriesi.at/documentation/enfold/theme-registration/. The error messages on your site suggests that you haven’t given the correct permissions to the token.
Best regards,
Rikard
Hey Giorgio,
Where exactly do you need to add that code?
You can start a new thread by following this link to open a new thread. Or click this button on the Enfold support forum: https://imgur.com/a/AnoSPNb
Best regards,
Rikard
This reply has been marked as private.
Hey Portfolio,
Thank you for the inquiry.
The form fields are not displaying on certain screen sizes because of this css code.
@media only screen and (max-width: 1024px) and (min-width: 768px) {
input {
position: absolute;
opacity: 0;
z-index: -1;
}
}
We are not yet sure where this particular css code is located because the stylesheets are merged when we checked the site. Please try to disable the Enfold > Performance > File Compression settings temporarily.
Best regards,
Ismael
Offtopic:
PS : if i like to insert something on that position – i would have placed it inside wrap_all container and maybe used the hook: ava_after_footer_output
because that will work with all footer settings – even with curtain effect – because it will be part of that.
f.e.: something like this will be more elegant:
function subsocket_color_set($color_sets){
$color_sets['subsocket_color'] = 'Subsocket';
return $color_sets;
}
add_filter( 'avf_color_sets', 'subsocket_color_set', 999, 1 );
add_action('ava_after_footer_output', function() {
echo '<div id="subsocket" class="container_wrap subsocket_color"><div class="container">YOUR HTML CONTENT HERE</div></div>';
});
Result: you will have that extra container : #subsocket and you can style it in enfold general styling by an extra styling set : Subsocket ;)
Hi,
Glad Rikard could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
first: you know best how you put in that additional container under wrap_all.
Your additonal Container is not part of that #wrap_all (as the enfold #footer is) – and besides that i would not give it the same ID as the Enfold Footer !!! ID’s have to be unique.
it is a top-border of 5px set on that section#footer:
section#footer {
border-top: none !important;
}
or do you like to get rid of the whole new container – guess you did that insertion via functions.php – or do you have a child-theme footer.php ?
First read this please : did you fill in the enfold options on transparency header? or how did you set up your white font on transparency header?
Dashboard – Enfold Child – Header : “Transparency Options” – there is that setting for : “Transparency Menu Color”
The default way would be to set the font color options on General Styling : Logo Area Background Colors – and for transparency see above.
________
Have you set a shrinking header? then you can do it page dependent – by using that additional Class on #header : header-scrolled
#top.page-id-123 .header_color.header-scrolled .main_menu ul:first-child > li > a {
color: red
}
Hey lilei218,
Thank you for the inquiry.
We are getting a few jQuery errors in the console but we cannot figure out where they are coming from because the scripts are merged. Please disable the Enfold > Performance > File Compression settings temporarily so that we can check the issue further.
It was an issue with the Enfold > Performance > File Compression settings. We disabled the compression settings temporarily.
Best regards,
Ismael
Hello
I just bought a new license for my wordpress site today and the license does not activate I created a token ticked the boxes and still no license in wordpress
Hey Daniel,
Thank you for the inquiry.
All modifications or configurations for the shop plugin are located in the enfold > config-woocommerce folder and you can disable those by adding this snippet in the functions.php file.
add_theme_support('avia_exclude_WooCommerce');
This might cause issues with the Advance Layout Builder (ALB) but it should be fine as long as you are not using it for your products.
Best regards,
Ismael
Hey terishka1,
Thank you for the inquiry.
You can use this css code instead to remove the border or padding around the gallery items.
#top div .avia-gallery img {
padding: 0;
}
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
Ismael
GiorgioGuest
Hi, I’ve just bought an Enfold licence and need support to solve a technical problem with the theme.
How can I submit a ticket? By using this section? Follow my question
To resolve a conflict with an a specific plugin, I need to re-initialize the image gallery on the product page every time our plugin updates it. To do thie, I would need to insert a script using this JS trigger:
$(document).trigger( ‘yith_wccl_product_gallery_loaded’ );
how can I do?
Hi Rikard, I also need to do this for an enfold child theme.
Can you explain to me or point me to information that explains how to do this in the child theme as there is no /logoslider.php file?
Hey dweddell,
Thank you for the inquiry.
Since the phone number and the free trial button is part of the menu container, there is no other way to center align the rest of the menu items aside from adjusting the margin between the very last menu item and the phone number. One workaround is to move the phone number and free trial button in a separate container or add them as widget. You can then adjust the style of this widget container separately. The following documentation should help.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
If you don’t want to use the widget, you can try this css code but you might still have to adjust the position of the phone number and the button on different screen sizes.
@media only screen and (min-width: 990px) {
/* Add your Desktop Styles here */
.responsive #top .main_menu {
width: 100%;
left: 50%;
transform: translateX(-50%);
}
.responsive #top .av-main-nav-wrap {
float: left;
position: relative;
z-index: 3;
left: 50%;
transform: translateX(-50%);
}
.responsive #top #header #menu-item-67 {
position: absolute;
right: -400px;
}
.responsive #top #header #menu-item-114 {
position: absolute;
right: -200px;
}
}
Make sure to temporarily remove the previous css code after adding the above css.
Best regards,
Ismael
Hey terishka1,
Thank you for the inquiry.
You can use this css code to disable the hover effect for the gallery items.
#top .avia-gallery .avia-gallery-thumb a:hover {
opacity: 1;
}
Opacity is set to 0.5 by default. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
Ismael
Hi,
Thank you for the inquiry.
We are not yet sure why the video is not rendering properly but it might be due to the fact that the site is still using an older version of the theme. Please try to update the theme from version 4.8.8 to the latest version 4.9.2.2, then disable the Enfold > Performance > File Compression settings temporarily. We will check the thread again once the theme has been updated.
Best regards,
Ismael
Hey FamalcoGroup,
Thank you for the inquiry.
This is not possible out of the box, unfortunately, but you can set the submenu items to always in the Enfold > Main Menu > Burger/Mobile Menu > Menu Icon Submenu items settings. Just select the first option in the dropdown. You can also create a clone of the parent menu item.
Best regards,
Ismael
Hi Chad Milburn,
Thanks for contacting us!
Please do the following but first make a backup:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/
1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
2. It should generate a new folder, open it and look for the enfold folder
3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
4. Log in to WordPress as and Admin.
5. Install and activate a maintenance plugin and put your site in Maintenance mode.
6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
7. Click on the ADD NEW button.
8. Click on the UPLOAD THEME button.
9. Click BROWSE and choose enfold.zip file
10. Click the INSTALL NOW button and switch to Enfold or your child theme.
11. Remove the maintenance mode then deactivate and remove the maintenance plugin.
Hope this helps.
Best regards,
Nikko
Hi updcreative,
Thanks for giving us both admin and FTP access.
The first one’s header.php does not seem to have any modification so I just remove header.php so the parent theme’s (Enfold) header.php file should be used instead and I have adjusted the footer.php file and it seems to work properly.
For the second site’s case, I have modified both header.php and footer.php file (the original is changed to header_backup.php and footer_backup.php) however it does not seem to make any changes, I have added an additional class name flex_column_custom for the footer columns so I could verify if it changes (after clearing cache with WP Rocket) however it does not seem to change, is there a built-in caching on the server?
Best regards,
Nikko
Hi caw67,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!
Best regards,
Nikko