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
Hello ,
I changed my website in French language but I still seen some world in English .
Please could you solve this issue
Best regards
But surely you don’t want this background image to be compressed or stretched – you want to maintain the aspect ratio.
Enfold has it for a background image on: General Styling – Body Background.
If you have now selected a stretched layout, a pop-up will display a message: These options are only available if you select the ‘boxed’ or ‘framed’ layout. Your currently have a different layout selected.
So this body background-image only makes sense if you use one of those ‘boxed’ or ‘framed’ layout.
If you got one background-image in that setting – set it to cover the page.
There are possibilities to change that bg image on load by script.
__________
Mais vous ne voulez certainement pas que cette image d’arrière-plan soit comprimée ou étirée – vous voulez conserver le rapport hauteur/largeur.
Enfold l’a pour une image d’arrière-plan sur : Style général – Arrière-plan du body.
Si vous avez sélectionné une mise en page étirée, une fenêtre contextuelle affichera un message : Ces options ne sont disponibles que si vous avez sélectionné la mise en page « encadrée » ou « encadrante ». Vous avez actuellement sélectionné une mise en page différente.
Cette image d’arrière-plan n’a donc de sens que si vous utilisez l’une de ces mises en page « boxed » ou « framed ».
Si vous disposez d’une image d’arrière-plan dans ces paramètres, réglez-la de manière à ce qu’elle couvre la page.
Il est possible de modifier cette image de fond au chargement par script.
Hi,
Thanks for the update, we’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 extraeyes,
The login details you posted are not working. If you want to change the colour of the strong tag, then you can do so under Enfold->Advanced Styling.
Best regards,
Rikard
PatrickGuest
I am receiving the same error, and apparently I cannot add to this without purchasing another license, which I should not have to on a regular basis.
Receiving this error on the front-end of the site after upgrading to 6.7 WP. A saw there are a couple of other people with the problem as well. Had debugging turned on by mistake and have since turned it off from displaying as well
Deprecated: Function wp_targeted_link_rel_callback is deprecated since version 6.7.0 with no alternative available. in /var/www/vhosts/asphaltspecialties.com/httpdocs/wp-includes/functions.php on line 6114
Probably not related to Enfold, but thought I would point it out.
It was a problem!
Hi,
Thank you for the update.
You can do the modification in the enfold\includes\helper-main-menu.php. Look for the wp_nav_menu functions in the template. Please contact the plugin developer for additional assistance.
Best regards,
Ismael
Hi,
Thank you for the update.
You may need to call the enfold\js\avia-snippet-parallax.js > avia_parallax function after the interaction.
$( function()
{
//activate parallax scrolling for background images (sections) and objects.
if( $.fn.avia_parallax )
{
$( '.av-parallax,.av-parallax-object' ).avia_parallax();
}
});
Achieving the customization you described may require significant time and theme modifications, which are beyond the scope of our support. For assistance, consider hiring a freelancer via our customization page.
If you have other questions or need further help, let us know.
Best regards,
Ismael
Hi dear Enfold-team,
how can I in the Easy slider
a) Display the image title and the additional description text in a separate field below the image
b) Activate advancing only after a mouse click on the image
c) Set the edge radius to 0px
… or would another slider be a better idea?
Thank you so much for your help :)
Best regards
Andreas
Thank you, Ismael.
But the elemens will be added after a user interaction (after the page is rendered). So is there a way to “register” newly added elements to Enfolds JavaScript structure?
Hi Ismael, thanks –
do you have any idea how to implement – quadmenu – instead of enfold into the menu,
or where I can replace something like that?
We can integrate QuadMenu the following way:
<?php if( function_exists( ‘quadmenu’ ) ): ?>
<?php quadmenu(array(‘menu’=> ‘1’, ‘theme’ => ‘default_theme’)); ?>
<?php else: ?>
<nav id=”navigation”>
<?php wp_nav_menu( array( ‘menu’=> ‘1’, ‘theme’ => ‘default_theme’ ) ); ?>
</nav>
<?php endif; ?>
Hi,
Thank you for the update.
Yes, you can adjust the style as you wish and include the font-family property if you want to change the font:
.grid-entry-title {
font-size: 13px;
margin: 0;
padding: 0;
font-weight: 500;
font-family: 'Roboto';
}
If you want to adjust the font globally, go to Enfold > General Styling > Fonts tab. For more info, please refer to this documentation: https://kriesi.at/documentation/enfold/typography/#overview
Best regards,
Ismael
i guess that page with no Title has a transparency header.
in functions-enfold.php there is:
if( ! empty( $transparency ) )
{
$header['header_title_bar'] = 'hidden_title_bar';
}
Hi,
For the /artikler/ page titles to look like the /blog/ page titles,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.grid-sort-container .grid-entry-title {
font-weight: 600;
font-size: 15px;
}
or for the other way:
.av-masonry-entry-title.entry-title {
font-weight: 500;
font-size: 13px;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
I want to add Avia-Elements on runtime, especially new Color Section with parallax. I can add those elements without a problem with something like this:
const section = document.createElement('div');
section.id = 'av_section_wp' + i;
section.classList.add('avia-section', 'alternate_color', 'avia-section-default', 'avia-no-border-styling', 'avia-full-stretch', 'av-parallax-section', 'avia-bg-style-parallax', 'av-minimum-height', 'av-minimum-height-100', 'av-height-100', 'container_wrap', 'fullscreen');
section.dataset.sectionBgRepeat = 'stretch';
section.dataset.av_minimum_height_pc = '100';
section.dataset.av_min_height_opt = '100';
const sectionParallax = document.createElement('div');
sectionParallax.classList.add('av-parallax', 'active-parallax', 'enabled-parallax');
sectionParallax.dataset.aviaParallaxRation = '0.3';
...
But this new section doesn’t have a parallax effect. It seems like it is isn’t registered in the JavaScript module for parallax. Is there a way to register those elements or generally speaking, is there a better way to add Avia elements on runtime?
Best,
Henning
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
.av-section-tab-title[data-av-tab-section-title="1"] .av-tab-section-image {
opacity: 1;
filter: none;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hi,
Unfortunately there is not, if you would like to request this feature the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.
Best regards,
Mike
Hey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#header.av_header_transparency #header_main .av-logo-container {
display: none;
}
#header.av_header_transparency #header_main {
margin-top: 91px !important;
}
After applying the css, please clear your browser cache and check.
Best regards,
Mike
This reply has been marked as private.
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
The day before yesterday I updated my Enfold (followed: https://kriesi.at/support/topic/update-12/), because i can’t make new portfolio elements.
After I successfully uploaded the two portfolio items, I received the following messages in succession:
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 20480 bytes) in /web/vincent-design/vincent-design.com/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-callback.php on line 259
What should I do?
Thanks in advance,
István
Thank you @Rikard,
I’d like to use the function that @Ismael posted earlier but I’m not sure if I’m doing it right or not :)
I installed a snippet (WP Code Snippet) plugin and copied Ismael’s code into a new snippet, then published it, but nothing happened.
Alternatively, what is “use the wp_head hook” and how do I go about it/ how do I do it?
I’ll now try to add the code of another live chat service (tawk.to) to see if that show up or not and understand at this point if it’s a chat software issue, a mistake I’m making somewhere inside Enfold or…
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
How do I control whether or not a page displays a title bar? I have 2 pages that display the bar but their Title Bar Settings are different from one another. One says “Default Layout – Set in Enfold > Header” and the other one says “Display only title.” I have a third page where I want the title bar to display but no matter which setting I choose, it doesn’t display. Is there something else I should change? Thanks for you help.
Hey Woutski,
Did you clearing all caches on your site and local device? You can set h2 and h4 styling under Enfold->Advanced Styling.
Best regards,
Rikard
Hi,
Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hi,
Thanks for the update, we’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 John,
That padding seems to be coming from user input, general theme styling wouldn’t overwrite it. Did you try clearing all caches and toggling the file compression option in the theme under Enfold->Performance?
Best regards,
Rikard
Hi,
Great, I’m glad that Ismael could help you out. We’ll close this thread for now then, please open a new thread if you should have any further questions or problems.
Best regards,
Rikard