-
Search Results
-
hello! Trying to resolve this error on my website:
Warning: session_start(): Cannot start session when headers already sent in /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.php on line 56
Warning: session_start(): Cannot start session when headers already sent in /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php on line 34
Warning: Cannot modify header information – headers already sent by (output started at /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/index.php:2) in /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/wp-includes/pluggable.php on line 1355
Warning: Cannot modify header information – headers already sent by (output started at /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/index.php:2) in /nfs/c03/h03/mnt/53173/domains/carousel-usa.com/html/wp-includes/pluggable.php on line 1358
I saw in a previous thread that this could be a php issue, the site is currently using 7.3 and we were going to migrate so we can get to 7.4. Any other ideas what could cause that so I don’t have to do the migration? thanks!
ok I also updated the theme manually to 4.9.2 and still have the errors… and also have a sticky header issue now… Please let me know!
I’m happy with enfold website in past days. but recently after yesterday updating. my popup window disappear.
when visitor click the “Ask A Quote” button. there’s a cf7 contact form coming on a modal window before.
but now it just go to the top when click. you can check the code:<h3>Ask A Quote</h3> <div id=”test-popup” class=”white-popup mfp-hide”> [contact-form-7 id=”7887″ title=”Contact form 1″] </div>and the PHP function code has be done before:
function popup_inline() { ?> <script> jQuery(window).on('load', function(){ jQuery('.open-popup-link').magnificPopup({ type:'inline', midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don’t provide alternative source in href. }); }); </script> <?php } add_action('wp_head', 'popup_inline');.
now the function is not working. could you please help me with this?
the login link under private content. thanksDear Enfold Support
As suggested by Enfold’s support member Ismael, I open this separate topic about the issue I mentioned firstly on another thread: https://kriesi.at/support/topic/accordion-toggles-deeplinking/#post-1327294
I have an accordion with the toggle’s mode “one toggle open at a time”. If I open the first toggle of an accordion on bigger screens (desktop view) and scroll down to the second toggle and open it, the first toggle closes and the document scrolls to the top of the second toggle but the toggle is covered by the sticky header. This always happens if you click from toggle to toggle. On small screens (mobile view) the open toggle is always visible on the top of the page as expected because the header isn’t sticky. I made a short screen video (see link in Private Content) that shows what I mean.
Ismael has provided the following code for the child theme’s functions.php to control the scroll offset:
function avf_header_setting_filter_mod($header) { if(!wp_is_mobile()) { $header['header_scroll_offset'] = $header['header_scroll_offset'] - 100; } return $header; } add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);Ismael also specified his solution as follows:
The theme actually ignores the main container’s offset on mobile view, so the filter above will not work. You will also have to edit the themes/enfold/js/avia.js file as instructed in this older thread.
https://kriesi.at/support/topic/scroll-postion-one-page-mobile/#post-1338429I followed Ismael’s instructions but they haven’t the expected impact yet. On desktop browsers, the sticky header still covers the toggles of the accordion.
I found out that Ismael’s PHP function might not be reloaded or reinitialized properly if you click from toggle to toggle within the same browser window/tab. It only seems to work properly if you copy the URL of a toggle in the address bar of a new browser window/tab. Then the toggle is at the defined scroll-offset position (according to the PHP function) below the sticky header.
I really appreciate if you could provide a reliable solution very soon.
Please see site details in Private Content.Kind regards
UeliTopic: Logo Slider breaking in 4.9
After upgrading to 4.9 I am now getting an error on my page that uses the Partner/Logo Element
[21-Mar-2022 18:57:40 UTC] PHP Fatal error: Uncaught Error: Call to undefined method avia_partner_logo::default_args() in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php:789 Stack trace: #0 /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php(858): avia_sc_partner_logo->get_element_styles(Array) #1 /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/class-shortcode-template.php(1142): avia_sc_partner_logo->shortcode_handler(Array, '', 'av_partner', Array) #2 /wp-includes/shortcodes.php(356): aviaShortcodeTemplate->shortcode_handler_prepare(Array, '', 'av_partner') #3 [internal function]: do_shortcode_tag(Array) #4 /wp-includes/shortcodes.php(228): preg_replace_callback('/\\[(\\[?)(av_par...', 'do_shortcode_ta...', '</p>[av_partner...') #5 /wp-content/themes/enfo in /wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/logoslider/logoslider.php on line 789I did look and many topics were quite old so I wanted to know, based on v4.9+, WordPress 5.9.2+, and PHP 7.4+, what is considered the best practice when dealing with a server that has Redis Cache enabled? I saw there were a lot of anomalies with the Post CSS file that is generated. In some situations the file would have been deleted but the object cache still says the CSS file exists causing the page to load without the proper CSS.
I do see there is few Advanced Settings within Enfold to try and fix WordPress Object Cache bugs, but that seemed more related to files being generated non-stop but this seems to be a different issue. But even if this is similar, the names for the fixes don’t seem very self-explanatory. I also see there is an option to disable the Post CSS file generation in the first place.
So what I would like to know is what is the best way to handle this situation? Is it easier/better to just disable the Post CSS file generation? Is there no real significant impact there? Or is it better to use one of the options in the Advanced Settings, and if so, which one?
== Theme Settings -> Performance -> Advanced Options ==
Unique timestamp of merged files and WP object cache bug:
– Add unique timestamps (= default)
– Disable adding unique timestamps only
– Fix WP bug, add unique timestamps
– Fix WP bug, disable unique timestamps== Disable Feature (in functions.php) ==
/**
* Filter to skip css file generation.
* You can add logic to skip for certain pages/posts only.
*
* @since 4.8.6.1
* @param boolean $create
* @return boolean true | false or anything else to skip generation of css file
*/
add_filter(‘avf_post_css_create_file’, ‘__return_false’);Topic: Upgrade to PHP 8.0
My site is running Enfold 4.7.3. My hosting provider (Bluehost) wants me to upgrade to PHP 8.+ but the theme is failing. According to my developer “I checked the code. Some theme functions are deprecated in PHP 8” For example, we get the error below:
An error of type E_COMPILE_ERROR was caused in line 2161 of the file /home1/prologik/public_html/wp-content/themes/enfold/config-layerslider/LayerSlider/helpers/phpQuery.php. Error message: Array and string offset access syntax with curly braces is no longer supportedWhat’s the resolution path here?
Hi, I’m getting internal server error on WordPress site. http://dolanddesign.com/
it is not consistent, sometimes it works and a minute later it no longer works. I have a really hard time even logging in.**********************************************************
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.Please contact the server administrator at (Email address hidden if logged out) to inform them of the time this error occurred, and the actions you performed just before this error.
More information about this error may be available in the server error log.
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.
***********************************************
I went to the error log of Bluehost and got this:
[18-Mar-2022 00:39:00 UTC] WordPress database error Table ‘dolandru_wrd2.wp_pwebcontact_forms’ doesn’t exist for query SELECTid,positionFROMwp_pwebcontact_formsWHEREpublish= 1 ANDposition= “footer” made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/enfold/404.php’), get_footer, locate_template, load_template, require_once(‘/themes/enfold/footer.php’), wp_footer, do_action(‘wp_footer’), WP_Hook->do_action, WP_Hook->apply_filters, PWebContact::displayFormsInFooter, PWebContact::getForms[17-Mar-2022 11:35:54 UTC] WordPress database error Table ‘dolandru_wrd2.wp_pwebcontact_forms’ doesn’t exist for query SELECT COUNT(
id) FROMwp_pwebcontact_formsWHEREpublish= 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/enfold/template-builder.php’), get_header, locate_template, load_template, require_once(‘/themes/enfold/header.php’), wp_head, do_action(‘wp_head’), WP_Hook->do_action, WP_Hook->apply_filters, PWebContact::displayHeader[18-Mar-2022 00:39:00 UTC] WordPress database error Table ‘dolandru_wrd2.wp_pwebcontact_forms’ doesn’t exist for query SELECT COUNT(
id) FROMwp_pwebcontact_formsWHEREpublish= 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/enfold/404.php’), get_header, locate_template, load_template, require_once(‘/themes/enfold/header.php’), wp_head, do_action(‘wp_head’), WP_Hook->do_action, WP_Hook->apply_filters, PWebContact::displayHeaderThere are hundreds of these lines. I just updated the Enfold to the latest. Also deleted the Perfect Web Contact plugin. Also tried disabling all plugins by renaming the plugins folder in the File Manager because I couldn’t log in to WordPress. None of this worked.

