@Ive133:
I plan to reuse elements from multiple demos to build a custom layout.
in this case – maybe my method of getting the enfold shortcodes from pages by downloading the xml files of the demo.
You find the demos here on :
https://github.com/KriesiMedia/enfold-library/tree/master/demos
Download the concerning zip file of the demo and extract the xml file.
Open it in a good text editor (f.e. on Mac sublime text – on windows pc’s use notepad++)
now you can search for “isPermaLink” (without the quotes) in that xml
or if you look for a page look for “page_id”
or for portfolio: “post_type=portfolio”
Just above, you can see the title of the page and the link
Or even more specifically, search for the title of the desired layout you want to transfer, e.g.,
<title>Home</title>
The Enfold shortcodes can be found directly below that reference wrapped by:
<content:encoded><![CDATA[
… here is the avia shortcode inside
]]></content:encoded>
Pay attention to CDATA – there are two opening square brackets and two closing brackets below.
The third closing bracket at the end usually belongs to the Enfold shortcodes.
Of course, this only provides you with the layout framework, including all element settings, but the links and images must then be edited.
Hi, I used a staging domain for developing my website, but unfortunately, I activated the Enfold theme license on that domain. Now that I’ve migrated the site to the main domain, I can’t activate the license again. Could you please tell me what I should do?
Hey Yigit,
Thanks for the information, although it doesn’t reassure me at all since this site, like the others using Enfold, is on the same server and in exactly the same hosting environment. And the others are working fine.
I’m going to change my server at the end of the month to a newer one, and I’ll see what happens then.
Best regards
Rolland
This reply has been marked as private.
Hi Rolland,
For your information, the ob_end_flush() warning is not related to Enfold. It comes from PHP’s output compression settings on the server. Please ask your hosting provider to disable PHP zlib output compression or handle gzip compression at the server level instead.
Regards,
Yigit
Hi guevaraw,
Please open a new thread and include your site details there as well.
Best regards,
Rikard
Is Enfold theme compatible with php 8.4?
thanks!
Hi Ismael,
That css doesn’t seem to work. I had injected custom code into the function.php file to get the search bar to appear above the mobile menu but I’m looking for the icon to appear in the header, I’ve removed the custom code to ensure there’s no conflicts but it’s still not working. The plugin used is Fibosearch which is set up to use Enfold’s search bars which works great on desktop but I can’t get the default one to appear on mobile. I’ve had this problem previously with other sites and have had to use custom code but I need the Enfold default one to be visible here because of Fibosearch. I have tried to add their shortcode to the top bar but it really messes with the styling of the layout, it would be much better to have the icon in the space to the left of the logo.
Hi,
Sorry that we could not help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Glad to hear that you have this sorted out, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Hi,
Glad that Ismael could help, if you have further questions please open a new thread and we will try to help. Thanks for using Enfold.
Best regards,
Mike
Many things, but one example is the price options in the woo product grid:
}
.woocommerce-grid-Price-amount.amount {
display: none;
}
I’m actually calling the CSS from a custom CSS file now rather than from the theme options by adding this to the functions.php file, to try and fix this issue, but still no joy:
// Load custom product styles after Enfold’s dynamic CSS
add_action( ‘wp_enqueue_scripts’, ‘kk_enqueue_custom_product_styles’, 20 );
function kk_enqueue_custom_product_styles() {
wp_enqueue_style( ‘kk-product-styles’, get_stylesheet_directory_uri() . ‘/kk-product-styles.css’, array(), ‘1.0’ );
}
Hi Ismael,
sorry, I forgot to unlock the file editor in admin, now you can see for yourself what modifications I made in the child.
All file sizes for all images are present in the upload folder. I’m afraid simply replacing the current images with newly generated ones won’t help Enfold find the correct format. Normally, thumbnail image tags have the classes “attachment-widget size-widget.” In my case, it’s just “attachment- size-“.
I don’t know where Enfold gets the string “widget” from. I think I destroyed this necessary value somehow. Perhaps the value of this required meta or option entry can be restored using some filter like ‘admin_post_thumbnail_size’ or directly in the database. Or am I wrong?
Best regards
Günter
Hi,
Great, I’m glad that Ismael could help you out. Please open a new thread if you should have any further questions or problems.
Best regards,
Rikard
Hey Michael,
Thanks for reaching out to us. The update to 7.1.3 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/
Best regards,
Rikard
Hello,
I would like to download an older version of Enfold. The 1.7.2 version
It doesn’t seem to be possible on your website.
Can you help me?
Michael AnderauGuest
Guten Tag, ich habe eine Webseite übernommen die mit dem WP Theme Enfold Version 4.4 läuft. Wegen einem Server updaste muss auch Enfold upgedated werden. bei themeforest steht “Free Lifetime Updates”, jedoch meldet mir der Enfold Upüdater, dass Vesion 4.4. die neueste Version ist, trotz themeforest username und API Key. Gilt das “Free Lifetime Updates” oder müssen wir das Theme nochmals kaufen?
Hello Ismael,
I do not want to enable file compression and merging.
It should be made clear that
File versioning for resources added by the theme will only be enabled when the compression and merging options are turned on.
for example, by graying out the option if file compression and merging are not in use, so the user do not waste their time in useless tentatives.
I tried with script like this and similar without success
// ============ FORCE CSS VERSION FOR CHILD THEME ============
function custom_enfold_child_css_version() {
// Rimuovi TUTTI i possibili caricamenti del CSS child
wp_deregister_style(‘avia-style’);
// Registra e carica con versione basata su data di modifica file
$css_file = get_stylesheet_directory() . ‘/style.css’;
$version = file_exists($css_file) ? filemtime($css_file) : ‘1.0’;
wp_register_style(
‘avia-style’,
get_stylesheet_uri(),
array(),
$version,
‘all’
);
wp_enqueue_style(‘avia-style’);
}
// Usa priorità ALTISSIMA per eseguire dopo tutto
add_action(‘wp_enqueue_scripts’, ‘custom_enfold_child_css_version’, 99999);
// Rimuovi l’azione originale di Enfold (se esiste)
remove_action(‘wp_enqueue_scripts’, ‘avia_register_child_backend_scripts_styles’, 10);
can you provide a working snippet please?
Thank you
Mauro
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,
1. You have the content in a 1/4, and then what looks to be an empty 1/2 to the left of it.
2. Content will be displayed within the container width, you can set that under Enfold->General Layout Dimensions.
Best regards,
Rikard
Hi Ismael,
wow, that is much better than i thought :) Great!
Here by enfold is really the best support i ever had! Thank you all!
Because of all of you my pages look much better.
Many regards rixi
Hello Ismael,
Yes i add images, and yes i did have alt and title attributes..
Like i said earlier.. it happen when i use enfold theme only..
if i use default theme the problem not exist..
edit:
i forgot to mention also.. the problem not exist in older enfold version
Best regards,
Jimmysanjaya
-
This reply was modified 4 months, 3 weeks ago by
jimmysanjaya.
Hello,
I need help with this image and image alt attributes
I think Enfold blocking Yoast SEO read the image i upload..
I confirm this because if i change wordpress theme Yoast work perfectly..
Please help me to make yoast read the image and image alt
Thanks !
Hi, for some websites, I’ve seen the menu text reduce in size as the browser window gets smaller. This would be useful for tablet responsiveness as well as just someone that had their browser window not opened as much. Is there a way to make the Enfold menu text reduce in size as the browser window reduces or a way to avoid the menu items stacking on each other? I do realize my menu has a lot of items, and I might need to lose a menu item. Still, wanting to find the best solution so it doesn’t get jumbled. URL in notes.
Thanks in advance!
I don’t see a second video slide on your test page, just the photo backdrop of London. I am also using Enfold 7.1.3 and WP 6.8.3.
hm- on my testpage this is the case : https://webers-testseite.de/slider-with-permanent-caption/: second slide is a selfhosted video
Enfold 7.1.3 and newest WP
ok – i test now the fullscreen slider – if this will work too. …
same on fullscreen sliders on my end: https://webers-testseite.de/fullscreen-slider-with-permanent-caption/
This reply has been marked as private.
Hello,
I am working on the staging site, so without minification plugins and without server-side caching, I would like to see the changes I make immediately. For this reason, I would like to enable time stamp injection after the CSS file name.
I tried all the options in Enfold > Performance > Unique Timestamp Of Merged Files And WP Object Cache Bug
The options
CSS File Compression and Merging
Javascript File Compression and Merging
are both disabled.
Nevertheless, the timestamp does not appear in the code.
Thank you,
Mauro
Ciao, sul mio sito ho impostato il tema Enfold child. Ho visto che è uscito un aggiornamento di Enfold. Come faccio ad aggiornare? Aggiorno solo Enfold oppure devo installare un aggiornamento anche del tema child?
Hi Rikard,
Unfortunately, it doesn’t change. Settings from the backend are transferred to the frontend late or not at all. The site was practically finished, and now I’m worried I’ll have to start from scratch. This hasn’t happened with any of my other Enfold websites so far. The examples remain the same as above, although some errors will be corrected after a while. Currently visible are the following errors:
Menu “School -> Team”: The content is not displayed centered at 1/2 width, but rather at 1/4 width.
Menu “School -> School ABC”: The content is not displayed centered across the entire width, but rather at 1/2 width.
The same applies to the view of the contact forms.
If I change the page spacing to optimize the responsive design, I lose all the formatting within the containers (color, margin, etc.). I’m not confident about optimizing this at the moment, as it’s currently displaying correctly again. Please check the cause. Would that work? I’m at a loss now.
I completely deleted the cache plugin (W3) in case that’s the cause of the problem. But that doesn’t work either.
Many Thanks.