-
Search Results
-
Buongiorno, fino a qualche giorno fa funzionava tutto funzionava bene poi è uscito questo messaggio.
Warning: Creating default object from empty value in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php on line 28
Warning: Cannot modify header information – headers already sent by (output started at /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php:28) in /home/customer/www/ristrutturoeciguadagno.it/public_html/wp-admin/includes/misc.php on line 1416Ho contattato Siteground e mi hanno svuotato la cache e il messaggio è andato via, però in questo modo non mi faceva modificare le pagine del sito. Ho ripristinato il sito con backup ed è ritornato come prima e con lo stesso messaggio. Ho richiamato Siteground, hanno svuotato di nuovo la cache e si è ripresentata la stessa situazione. Loro dicono che dipende da Enfold che con PHP alla versione 7.4 va in conflitto. Preciso che con PHP 7.3 il sito funziona.
.
Come posso fare a risolverlo? Grazie.Hello – The Enfold icon elements are not displaying on our test environment after updating – they show up as white boxes. WordPress 6.1.1, PHP 7.4.
I importet on mahr-consult.com the Medical Theme and now I have this:
Warning: include(/homepages/31/d96745583/htdocs/clickandbuilds/MahrConsultcom/wp-content/uploads/avia_fonts/medical/charmap.php): Failed to open stream: No such file or directory in /homepages/31/d96745583/htdocs/clickandbuilds/MahrConsultcom/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php on line 659
Warning: include(): Failed opening ‘/homepages/31/d96745583/htdocs/clickandbuilds/MahrConsultcom/wp-content/uploads/avia_fonts/medical/charmap.php’ for inclusion (include_path=’.:/usr/lib/php8.0′) in /homepages/31/d96745583/htdocs/clickandbuilds/MahrConsultcom/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php on line 659
What shall I do?
I’m taking over a website for a client and it’s been left running version 3.8 of Enfold, which didn’t support PHP beyond 7.0. It’s causing issues with my other sites as I’ve had to drop the PHP down to allow this site to run.
I’ve just bought a licence for Enfold, so that I can update the theme and get the latest PHP restored. I’ve plugged the API in and all seems well, but it’s not giving me the option to update the theme. It just says it’s up to date, at version 3.8. Am I missing something?
Please don’t tell me the only way is to download version 5.0 and install it manually, because the previous developer didn’t use a child theme, so I assume it would wipe out the site content, no?
Thanks in advance.
Topic: upgrade enfold 4.5.2
Good morning
I have Enfold 4.5.2 which seems to be not compatible with PHP 8.0 so I ‘d like to upgrade this one. My purchase code is 1a913233-0483-4b76-a984-1666bd421197.
I can’t login at the website kriesi.at because when I aks for new password I get a new password but I can’t login with my username infovanwijckict
I read somewhere that I have my license for live and I can freely update my theme enfold and that I need to register the theme. I don’t know how to do that. Could you please help me?Hallo,
i have search for hours but found nothing. I am building a regular page and use the blog as news section.
For the news page i have used a full width section including an image in the middle and below the breadcrumb. This woorks fine also for read / news detail pages but not for the category overview pages which are generated / selectable by year.So i have two options:
1) add an code snipped to function.php that includes me the area section from e.g. newspage into category page, is that possible?
2) Add code into the archive.php with the same solution. I have used some code from the page.php, the area was set but also content.Any ideas about this?
Topic: Updating Question
Hello,
I am helping maintain a website that is running Enfold 4.5.7., now the provider wants us to update to php 8. so I guess we will need to update Enfold. This does not work via the wordpress backend. Enfold Theme Update says that the latest version is already running.
The Envato Private Token seems to be intact, it is linked to the Envato account of the web designer who had created the site and purchased the license for the owner in 2016, but she is no longer maintaing the site. We have a License Certificate from the purchase.
Can you please help us to proceed?
Thanks a lot
Hi,
I’m in the process of adapting the enfold theme.
The website has worked until today. I did an update of Woocommerce plugin and since then I have the problem that the admin panel no longer works properly. I also received a mail from WP with the following error message.WordPress caught an error in my theme “Enfold”.
Error Details
==============
A type E_ERROR error was caused on line 917 of the /home/xr967hob/www/home/pamina/wp-content/themes/enfold/framework/php/class-style-generator.php file. Error message: Allowed memory size of 134217728 bytes exhausted (tried to allocate 491520 bytes)WordPress-Version 6.1.1
Aktives Theme: Enfold (Version 5.3.1.1)
PHP-Version 7.3.27Can you help me please?
Thanks,
BarbaraHi, we are upgrading with our ISP the version of PHP being used with our wordpress site. When we upgraded to PHP version 7.4 we got an error message which suggested it was a problem with the theme we were using. We rolled back to the old PHP version and I was able to update our site. Can you please advise the version of PHP that the Theme Display Version 1.4.1 works with – The error message was(from memory) the function must be a string?
If the theme we are using is too old, then can you recommend a similar theme we could use that will work with PHP version 7.4 or above. Many thanksHello all,
I’m experiencing some troubles with custom cookies in combination with cookie consent enabled.
I’ve built a form with Formidable Forms Pro to receive subscriptions and payments for a sports camp. To generate some documents or do some error handling i’m setting a custom cookie with next snippet of code:
<script src="https: (Email address hidden if logged out) /dist/js.cookie.min.js"></script> <script type="text/javascript"> function entryID(){ let timeStamp = Date.now(); console.log('timeStamp:', timeStamp); document.getElementById("field_entry_unique_id").value = timeStamp; Cookies.set('entry_unique_id', timeStamp, { expires: 1 }) } </script>When I watch the DevTools, the cookie is set correctly with the correct value and lifetime of one day.
After finishing payment through a payment service provider, the customer returns to the corresponding page (success, error, cancelled).
On the pages “error” and “cancelled” i’m using next snippet of code to read the cookie:
<script src="https: (Email address hidden if logged out) /dist/js.cookie.min.js"></script> <script type="text/javascript"> let entryID = Cookies.get('entry_unique_id'); console.log('Cookie entryID:', entryID); <do other stuff>And there comes the catch: With the cookie consent disabled everything works as expected and the cookie can be read.
However, with the cookie consent enabled, the cookie “entry_unique_id” gets deleted upon returning after the PSP returns the status of the payment.Things I tried is: adding the custom cookies to the cookie modal window (didn’t help) and adding the cookie to the essential cookies in avia-snippet-cookieconsent.js at line 489 and 493 (no success either).
What am I doing wrong / how can I fix this?
Enfold: 5.3.1.1
PHP: 8.0.27
Browser: Microsoft Edge, Version 108.0.1462.76Hi
I have limited experience working with wordpress but I will try to explain my problem(s):
When one.com stopped its support for php7.xx I got locked out of our wp admin page, so I couldn’t update enfold from /wpadmin.
After some researching, it became clear that our installed theme did not have any personal key activated, so it was stuck on version 4.xxxx,
and that’s why I got locked out of the admin page when one.com updated php to 8.1.
The employee who did our wp page is no longer with that company and did not leave us with a copy of “proof of purchase”So I bought a new license for enfold and installed an updated version via FTP and activated the theme with my newly generated personal key.
So far so good, but when I try to install a child theme is says: The main theme is missing. Install the main theme “enfold”.
it doesn’t matter if I do it (install child theme) with filezilla or /wpadmin it’s the same error.did i do something wrong when I updated the theme?
Is there something obvious that I’m not doing?Topic: After Update PHP 7.4 to 8.1
Hello together
I have installed here a trial page where I can use the plugin: NGG Smart Image Search.
You can search with %%%
The result is displayed without problems.
The PHP version is 7.4If I set the PHP version to 8.1 an error appears:
Warning: Constant hr_SIS_dump_mode already defined in /home/httpd/vhosts/dorfgeschichte.li/archiv.dorfgeschichte.li/wp-content/themes/enfold-child/class-ngg-smart-image-search-public-update-pd.php on line 13 Warning: session_start(): Session cannot be started after headers have already been sent in /home/httpd/vhosts/dorfgeschichte.li/archiv.dorfgeschichte.li/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php on line 102 Warning: session_start(): Session cannot be started after headers have already been sent in /home/httpd/vhosts/dorfgeschichte.li/archiv.dorfgeschichte.li/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php on line 53
I have contacted the plugin manufacturer.
This means he already has installations with the version PHP 8.1.
It must be the theme EnfoldMaybe they can help me
thank you
kind regards FranzTranslated with http://www.DeepL.com/Translator (free version)



