Viewing 30 results - 1,741 through 1,770 (of 16,893 total)
  • Author
    Search Results
  • #1375784

    Hey woogie07,
    Thanks for the link to your site, typically if you wanted a call button you would add the tel: link to your menu item and use the button option, but I see that you have a phone number in your topbar and the topbar shows on mobile so would you like a call button there?
    If so you could use the shortcode wand to create your button and use it to create a call button shortcode that you can add anywhere to display it, such as the Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Phone Number or small info text field.
    So to do this first open a new post and in the block editor select the classic block and in the toolbar select the shortcode wand ▸ Button:
    block_editor_classic_block_shortcode_wand.png
    then the standard Advanced Layout Builder button element will open for you to design the button, after you build your button and save the button shortcode will show for you to copy
    block_editor_classic_block_shortcode.png
    Then add your button shortcode to this function:

    function call_button_shortcode( ){
    	echo do_shortcode(" button-shortcode-here ");	
    }
    add_shortcode( 'call_button', 'call_button_shortcode' );

    for my example I used this code:

    function call_button_shortcode( ){
    	echo do_shortcode("[av_button label='Call Us' icon_select='yes' icon='ue854' font='entypo-fontello' link='manually,tel://555-555-5555' link_target='_blank' size='medium' position='right' label_display='' title_attr='' size-text='' av-desktop-font-size-text='' av-medium-font-size-text='' av-small-font-size-text='' av-mini-font-size-text='' margin='' margin_sync='true' padding='' padding_sync='true' av-desktop-margin='' av-desktop-margin_sync='true' av-desktop-padding='' av-desktop-padding_sync='true' av-medium-margin='' av-medium-margin_sync='true' av-medium-padding='' av-medium-padding_sync='true' av-small-margin='' av-small-margin_sync='true' av-small-padding='' av-small-padding_sync='true' av-mini-margin='' av-mini-margin_sync='true' av-mini-padding='' av-mini-padding_sync='true' color_options='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' btn_color_bg='theme-color' btn_custom_grad_direction='vertical' btn_custom_grad_1='#000000' btn_custom_grad_2='#ffffff' btn_custom_grad_3='' btn_custom_grad_opacity='0.7' btn_custom_bg='#444444' btn_color_bg_hover='theme-color-highlight' btn_custom_bg_hover='#444444' btn_color_font='theme-color' btn_custom_font='#ffffff' btn_color_font_hover='white' btn_custom_font_hover='#ffffff' border='' border_width='' border_width_sync='true' border_color='' border_radius='' border_radius_sync='true' box_shadow='' box_shadow_style='0px,0px,0px,0px' box_shadow_color='' animation='' animation_duration='' animation_custom_bg_color='' animation_z_index_curtain='100' hover_opacity='' sonar_effect_effect='' sonar_effect_color='' sonar_effect_duration='1' sonar_effect_scale='' sonar_effect_opac='0.5' css_position='' css_position_location=',,,' css_position_z_index='' av-desktop-css_position='' av-desktop-css_position_location=',,,' av-desktop-css_position_z_index='' av-medium-css_position='' av-medium-css_position_location=',,,' av-medium-css_position_z_index='' av-small-css_position='' av-small-css_position_location=',,,' av-small-css_position_z_index='' av-mini-css_position='' av-mini-css_position_location=',,,' av-mini-css_position_z_index='' id='' custom_class='' template_class='' av_uid='' sc_version='1.0' admin_preview_bg='']");	
    }
    add_shortcode( 'call_button', 'call_button_shortcode' );

    Then add this to your child theme functions.php, and add the call button shortcode [call_button] to your Phone Number Or Small Info Text field:
    2022-12-10_011.jpeg
    This is the result for desktop and mobile:
    2022-12-10_140651.png
    You can also add this call button shortcode in other places like widgets and your footer.

    Best regards,
    Mike

    #1375775
    antilimited
    Participant

    Hi. I get the following message on one of my sites using Enfold, at the top of the editor pages when using ALB.

    Warning: Undefined variable $permalink in /homepages/1/d413740437/htdocs/sitename/wp-content/themes/enfold/config-gutenberg/class-avia-gutenberg.php on line 1433

    Please could you help fix this? Thanks!

    #1375498

    Thanks Ismael for closer view on this. I hate redirects as it slows stuff so still trying to figure this out.
    I found this old thread on forum from 2017. Do you think it could be applicable here?
    https://kriesi.at/support/topic/enfold-background-image-remove-on-mobile/

    The code part there suggests to add custom ID, adding function and then applying CSS. I expect some stuff to be outdated in script (f.e. .av-paralax)? I’ve also hit issue with using it “Uncaught ReferenceError: jQuery is not defined”

    function remove_bg(){
    ?>
    <script>
    jQuery(window).load(function(){ 
    	if (jQuery(window).width() < 768) {
    		jQuery("#unique-id").css("background-image", "");    
    	} 
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'remove_bg');

    + then css change

    @media only screen and (max-width: 480px) {
    #unique-id > .av-parallax {
        background-image: none !important;
    }}

    Just want to be super sure if something like this could work with minimum effort to adjust or I would need to figure this out somehow from scratch.
    Thanks

    #1375407
    Dean Cheuk A Lam
    Guest

    Guys,

    I am a developer and I recently took over a website that uses your theme
    Theme name: Enfold | Shared By VestaThemes.com Theme Options
    Version: 4.5.7

    Unfortunately the previous developer lost the credentials so I can’t update this theme because I can’t generate a token.

    Here are a view of my questions:
    1. Can I somehow find are reset the credentials through you? (If possible, what information do you need?)
    2. If resetting the credentials is not possible can I just by the theme with a different account and use that token for my site?
    3. After searching I think this is the latest version for this theme, Is that true?
    4. My host would like all websites to be running on PHP 8 by the end of this year, Is this theme (or a later version of this theme) compatible with PHP 8?

    I hope you can assist me with this.

    Kind regards,

    Dean

    Hi,

    Thanks for the login details. Could you try upgrading your PHP version to 7.4 or higher to see if that helps? If not, then please share server error logs with us.

    Best regards,
    Rikard

    #1375374

    In reply to: PHP compatibility

    Hey LOPB-31,

    Enfold is compatible with PHP 7.4 and above. If you need further help with your problem, then please provide us with some more details.

    Best regards,
    Rikard

    #1375344
    loghash
    Participant

    Hi,

    I am currently on an old version of Enfold which works with PHP 5.5. However we wanted to use the new Parallax theme and was wondering if there is a way we can use it. On using the new version of enfold I get the following error :

    Parse error: syntax error, unexpected ‘.’, expecting ‘&’ or variable (T_VARIABLE) in /base/data/home/apps/s~sadhu-sanga/2023:20221207t000016.448392673815095650/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-element-styling-base.php on line 633

    Can I copy some files to older version to get the parallax theme? Is there a way to make the current version backward compatible to ues with PHP 5.5?

    Hi Yigit, I made a copy of the site on a decent server optimized for WP and I see the issue occurs still.

    Here PHP 7.4 is still available, but the issue also occurs on that version, so it seems it is not related to PHP-version after all.

    #1375292
    wpsonja
    Participant

    Hey,
    I refer to the following threat: #1374215
    This threat was closed because I thought the error was fixed. Unfortunately, I just noticed that there are still errors. The payment in Woocommerce store with bank card is not possible, it displays a “fatal error”. We have this error since PHP 8.1.
    The Woocommerce debug log also shows an error in the child-theme. How can I fix this? I copy the error below in the private content.

    Best regards
    Sonja

    #1375289
    LesleyJean
    Participant

    This is a new one. We just got hosting on GoDaddy, the “Ultimate” Manage WP Hosting package. Installed Enfold, uploaded the Child Theme. Everything is working fine. Turned on Maintenance Mode and pointed to a page with a Text module with a logo and a coming soon message. In CSS, I hid the menu on that page. Looked at site in another browser and was directed to a register.com default page.

    Then started getting this message “Service Unavailable The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.”

    I was on with GoDaddy via chat for TWO hours. They thought it was because the site was so new it had not propagated. It took me two hours to convince the tech support that if it was propagation, I would not be able to access the /wp-login.php and /wp-admin pages.

    Finally tried turning off the three plugins installed. Problem persisted. Tried the standard WP Theme and the site came up. Tried the child theme, site crashed. Tried Enfold parent theme site worked. I thought there was something going on with PHP. We were running PHP 8.0. Turned it back to 7.4. Problem persisted with the child theme. Then I thought, why not turn off Maintenance mode. And bam, site is back up.

    So, I have no idea why, but Maintenance Mode: Enabled – Use selected page content without redirect and choosing the most basic of pages I created “Coming Soon” crashed the site. I turn off Maintenance Mode and the site works fine.

    #1375274

    Topic: PHP compatibility

    in forum Enfold
    LOPB-31
    Participant

    Hello,

    what are the PHP versions, Enfold is compatible with ?
    I have WordPress 6.1.1 and Enfold 5.2.1 and currently PHP 7.4.29.

    I initially tried PHP 8.0 (which I use with success on another site with another theme) : then I got a fatal error and I couldn’t even log in as an admin, I had to switch back to 7.4 which is supposed to get discontinued by end of the year.

    Regards
    Christian

    Hi,
    Thanks for the login, so your header.php is adding the Google Tag Manager code and some ontraport scripts, this can be added to the child theme functions.php and is not a big deal. We don’t recommend using a header.php or footer.php in your child theme or you will keep having to update these files in most updates.
    Your footer seems to be adding some call-to-action scripts, so this can also be moved to the functions.php
    Your custom single.php & related-posts.php files have minor edits and I have made updated versions for these for v5.2.1
    But your loop-index.php has major customizations and the v5.2.1 version is quite different so you are going to need to customize a new v5.2.1 loop-index.php for when you update. If you had hired someone to do this before please ask them to help you again because I don’t understand the customization and it is beyond what I can help you with.
    Your custom contentslider.php was only edited to show the arrow and dot navigation at the same time so it should be easy to update.
    If the theme had not changed so much from 4.5.7 to 5.2.1 then you could have just used your custom files and updated with no issues, but back around v5 the theme added more features and changed many core files like the loop-index.php
    I found that your Advanced Custom Fields plugin adds custom classes to your pages and your css is based on this, so this is why when we updated the elements on your homepage was so different because we had disabled all of your plugins so the Advanced Custom Fields plugin was not added the custom classes and your css was not working.
    So at least we figured that out.
    So we could probably update with the new files I made for you and most of your pages would be fine, but not your loop-index.php, so I imagine that you are going to want to wait to update until you get a new custom loop-index.php created.

    Best regards,
    Mike

    #1375058

    Hey lenalavendel,
    Thanks for your question Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function masonry_sort_slash_to_hyphen() { ?>
      <script>
    window.addEventListener('DOMContentLoaded', function() {
    (function($){
      $('.av-masonry-sort .text-sep').each(function() {
        var text = $(this).text();
        $(this).text(text.replace('/', '-')); 
    });
    })(jQuery);
    });
    </script>
      <?php
    }
    add_action('wp_footer', 'masonry_sort_slash_to_hyphen');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    2022-12-04_170406.png

    Best regards,
    Mike

    #1375016
    Wilfried van Sark
    Guest

    LS
    We have used enfold theme 4.4.1 as it was advised to use it as it was free. It functioned very well, up to PHP7.4
    Our WordPress site should be updated from PHP7.4 to 8.1, as our website provider requires that. We tested and most probably the old version of 4.4.1 of enfold is causing a problem. Also, we tried to update, but WordPress states that it is the most recent version.
    So, we are thinking of purchasing enfold 5.2. But we are not sure if this theme upgrade is compatible with the original 4.4.1. version we used.
    Could you advise?
    best regards
    Wilfried van Sark

    #1374823

    thank you very much for the new answer but unfortunately this is the result, I am sending you a photo, as you can see the text is always at the bottom and not at the top above the photo with the photo below with a margin as I asked above, I have replaced your code at the end of the function.php file present in the theme folder and added the css directly in the theme settings

    screenshot

    • This reply was modified 3 years, 4 months ago by hyrion.

    Hi, I managed to update the theme and switch to PHP 8. But now an error message appears. Can you do something with that? If you call up the artbase-software.de page, it appears in the header. I reverted the site back to PHP 7.4

    Error in Header:

    Warning: Undefined variable $responsive in /homepages/29/d516571436/htdocs/wp-content/themes/enfold-child/functions.php on line 51

    Warning: Constant FORCE_SSL_ADMIN already defined in /homepages/29/d516571436/htdocs/wp-config.php on line 96

    VG
    Holger

    • This reply was modified 3 years, 4 months ago by aB-Agenta.
    #1374600
    This reply has been marked as private.
    #1374586
    mediendesignerin
    Participant

    PHP version, change from 7.4 to 8.0 or 8.1 does not work. There is a fatal error here. Version 7.4 expires at the end of this year 2022. I installed the current theme version before activating PHP with my provider. also all plugins are up to date and also WordPress. Nevertheless, the conversion does not work.

    In addition, the layer slider and images on the start page are not loaded. And in the menu there are extreme shifts in the sub-menu that the words suddenly wrap around in two lines. it is the menu item, Sauter and Tools (Werkzeuge). This has all been optimized and set up well. Is it because of the old PHP version or where is the error here? I’ve spent a few hours on this now and can’t find it so I’ve renewed my support. Please reply as soon as possible.

    Many thanks and greetings from Munich.

    Thanks Mike,

    Removing the child theme header.php & footer.php has had other impacts on the styling. You can see the size difference in the above the fold elements between https://www.greatmanagers.com.au/ and https://gmcomaubrocstg.wpengine.com/

    Is there a way to check what other changes will have occurred?

    And what’s the best way to keep the custom elements in the Child as well as whatever made the Footer return to normal by removing those files?

    When following some of the suggestions from Rickard previously, I found the following;

    1. changing after_submenu_[Number] to after_grid_row_[Number] in the Styles.css file brought back the colours on the home page. I have tried this again on the Staging Site but it has NOT brought the colours back to the page – Is it possible the removal of the Child Header.php and Footer.php could have something to do with it?

    2. Removing the Padding from the “.flex_column.av-bg5p2-8b8a6aaa113dfa980309a10de497638b” css as seen in the element inspector in each column (But which does not show on the old version of the site at all) returned the columns to look 99% the same as in the old site. (I have not tried this again on the Staging site given the issue with point 1 above.

    Can you put the Child Header.php and Footer.php back where they were and we can see if it brings some of the styling back to normal?

    Thanks in advance

    bernadinea
    Participant

    Hi guys, l need assistance with the error below m getting. I have updated my theme Enfold 5.4.1 latest one and l am on PHP 8.0. I keep getting the error below. WordPress is on latest 6.1.1 and all plugins are up to date. Theme was purchased 29 November 2022

    [30-Nov-2022 16:56:20 UTC] PHP Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, non-static method wf_mm::init() cannot be called statically in /usr/www/users/vidaeadpzw/wp-includes/class-wp-hook.php:308
    Stack trace:
    #0 /usr/www/users/vidaeadpzw/wp-includes/class-wp-hook.php(332): WP_Hook->apply_filters(NULL, Array)
    #1 /usr/www/users/vidaeadpzw/wp-includes/plugin.php(517): WP_Hook->do_action(Array)
    #2 /usr/www/users/vidaeadpzw/wp-settings.php(617): do_action(‘init’)
    #3 /usr/www/users/vidaeadpzw/wp-config.php(33): require_once(‘/usr/www/users/…’)
    #4 /usr/www/users/vidaeadpzw/wp-load.php(50): require_once(‘/usr/www/users/…’)
    #5 /usr/www/users/vidaeadpzw/wp-admin/admin-ajax.php(22): require_once(‘/usr/www/users/…’)
    #6 {main}
    thrown in /usr/www/users/vidaeadpzw/wp-includes/class-wp-hook.php on line 308

    #1374505
    Gabriel
    Guest

    I saw many posts on the forum that Enfold supports PHP 8. But I’m getting compatibility errors still, and since I’m not a customer I can’t hop on the forum to mention it. So here i am.

    Enfold 5.1.2 PHP 8 Compatibility
    /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-popup-templates-responsive.php:220
    “Indirect access to variables, properties and methods will be evaluated strictly in left-to-right order since PHP 7.0. Use curly braces to remove ambiguity.”

    /html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-sub-item-query-base.php:99
    “Visibility for magic method __destruct must be public. Found: protected”

    Hi Mike,

    Thanks. I have updated the WP login details and added them below in case you need them.

    “…as I understand you have a backup for 4.5.7 where everything works correctly, but when you update to 5.2.1 the demo footer shows and you lose the homepage styling?….” YES – this is correct.

    The styling loss is 99% impacting the home page. All other pages seem to be unaffected (other than a minor padding issue on the carousel buttons below our “Just Some of our Reviews” testimonials block that is located towards the bottom of the home page and on various other pages as well, e.g. /academy)

    I don’t know “Exactly” what customisations are in the various .php files and appreciate any assistance you can provide in identifying which ones might be causing the issues.

    Can the removal and re-adding of those files be done via the WordPress Theme editor or should they be done via FTP?

    Thanks in advance for your help

    • This reply was modified 3 years, 4 months ago by CBurgo.

    Hi,
    I tried to review this thread to catch up, and as I understand you have a backup for 4.5.7 where everything works correctly, but when you update to 5.2.1 the demo footer shows and you lose the homepage styling?
    Do you lose any other styling?
    The WP login doesn’t work, but the FTP did work. It looks like you have a custom loop-index.php, related-posts.php, single.php, header.php, footer.php
    I wonder if any of these are conflicting with the latest version, quite a lot has changed since 4.5.7

    Do you know what the customizations in each of these are? If these are minor customizations I would imagine that you could remove these files to see if your footer and homepage styling returns, and then add the files back one at a time to see where the error occurs.

    Best regards,
    Mike

    #1374391
    Referee1988
    Participant

    For some unknown reason, category pages stopped working.
    Recently, WordPress has been updated to the latest version, and the PHP version has been changed from 7.4 to 8.0.
    On other themes, category pages with post pagination work fine.

    #1374372
    pamk21
    Participant

    Good afternoon – I have used your theme on multiple occasions. I just ordered a new install from Themeforest today and when importing the theme today of choice I got the following error. Rather than uninstall and reinstall I wanted you to have a look first. I have created an admin user for you. Thank you for your attention!

    Warning: include(/home/customer/www/matthewm213.sg-host.com/public_html/wp-content/uploads/avia_fonts/Flaticon/charmap.php): failed to open stream: No such file or directory in /home/customer/www/matthewm213.sg-host.com/public_html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php on line 477

    Warning: include(): Failed opening ‘/home/customer/www/matthewm213.sg-host.com/public_html/wp-content/uploads/avia_fonts/Flaticon/charmap.php’ for inclusion (include_path=’.:/usr/local/php74/pear’) in /home/customer/www/matthewm213.sg-host.com/public_html/wp-content/themes/enfold/enfold/config-templatebuilder/avia-template-builder/php/class-font-manager.php on line 477

    #1374349

    Hello,
    the code suggested by @guenni007 works like a charm in one site, but it does not do anything in another
    ######################
    function only_one_submenu_open_on_burger(){
    ?>
    <script>
    window.addEventListener(“DOMContentLoaded”, function () {
    (function($) {
    $(‘body’).on( ‘click touch’, ‘.av-active-burger-items > a’, function () {
    $(this).parent(‘li’).siblings().removeClass(‘av-show-submenu’);
    $(this).parent(‘li’).siblings().find(‘ul’).slideUp( “fast”);
    });
    $(‘body’).on( ‘click touch’, ‘.av-active-burger-items .av-width-submenu > a’, function () {
    $(this).closest(‘.sub-menu’).siblings().find(‘li’).removeClass(‘av-show-submenu’);
    $(this).closest(‘.sub-menu’).siblings().find(‘ul’).slideUp( “fast”);
    });
    })(jQuery);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘only_one_submenu_open_on_burger’);
    ###################

    Please see in private content
    Thank you
    Mauro

    aB-Agenta
    Participant

    Hello, I have installed an update to PHP 8 on our website. But then the following error message appears. If I revert back to the older PHP 7 version, the site works again. Currently PHP8 is not enabled.

    Warning: Undefined variable $responsive in /homepages/29/d516571436/htdocs/wp-content/themes/enfold-child/functions.php on line 51

    Fatal error: Uncaught ArgumentCountError: Too few arguments to function WP_Widget::__construct(), 0 passed in /homepages/29/d516571436/htdocs/wp-includes/class-wp-widget-factory.php on line 62 and at least 2 expected in /homepages/29/d516571436/htdocs/wp-includes/class-wp-widget.php:163 Stack trace: #0 /homepages/29/d516571436/htdocs/wp-includes/class-wp-widget-factory.php(62): WP_Widget->__construct() #1 /homepages/29/d516571436/htdocs/wp-includes/widgets.php(115): WP_Widget_Factory->register(‘avia_partner_wi…’) #2 /homepages/29/d516571436/htdocs/wp-content/themes/enfold/functions.php(798): register_widget(‘avia_partner_wi…’) #3 /homepages/29/d516571436/htdocs/wp-content/themes/enfold/functions.php(806): avia_register_avia_widgets() #4 /homepages/29/d516571436/htdocs/wp-settings.php(585): include(‘/homepages/29/d…’) #5 /homepages/29/d516571436/htdocs/wp-config.php(94): require_once(‘/homepages/29/d…’) #6 /homepages/29/d516571436/htdocs/wp-load.php(50): require_once(‘/homepages/29/d…’) #7 /homepages/29/d516571436/htdocs/wp-blog-header.php(13): require_once(‘/homepages/29/d…’) #8 /homepages/29/d516571436/htdocs/index.php(17): require(‘/homepages/29/d…’) #9 {main} thrown in /homepages/29/d516571436/htdocs/wp-includes/class-wp-widget.php on line 163

    #1374215
    wpsonja
    Participant

    Hi,
    my provider HostEurope no longer supports PHP 7.4 and since upgrading to PHP 8.1 / 8.0 the typical critical WordPress error showed up. I have now already read through some threads and tried to update the theme via FTP. Unfortunately without success.
    I called HostEurope support and they said that there are some customers with Enfold who have the same problem.
    Error logfile shows an error in the child theme. What can I do?

    Best regards, Sonja

    JoshuaTF
    Participant

    Hello

    We have recently come across an issue with Enfold and the Advance Layout Builder. We have the theme updated and no issues. Until a few weeks back we couldn’t edit a single page and received a constant HTTP Error 500. This happened if we used the Advance Layout Builder or the WordPress Classic Builder. To help eliminate issues our IT team updated the PHP on the website and now we are unable to access any theme editor or options via WordPress and hit with the HTTP Error 500. The site is still functional but now has the following text at the top of the each page.

    Warning: Declaration of FEE_Field_Terms::wrap($content, $taxonomy, $before, $sep, $after) should be compatible with FEE_Field_Post::wrap($content, $post_id = 0) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/post.php on line 182

    Warning: Declaration of FEE_Field_Tags::wrap($content, $before, $sep, $after) should be compatible with FEE_Field_Terms::wrap($content, $taxonomy, $before, $sep, $after) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/post.php on line 281

    Warning: Declaration of FEE_Field_Category::wrap($content, $sep, $parents) should be compatible with FEE_Field_Terms::wrap($content, $taxonomy, $before, $sep, $after) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/post.php on line 290

    Warning: Declaration of FEE_Field_Post_Thumbnail::wrap($html, $post_id, $post_thumbnail_id, $size) should be compatible with FEE_Field_Post::wrap($content, $post_id = 0) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/post.php on line 299

    Warning: Declaration of FEE_Field_Post_Meta::wrap($data, $post_id, $key, $ui, $single) should be compatible with FEE_Field_Post::wrap($content, $post_id = 0) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/post.php on line 352

    Warning: Declaration of FEE_Field_Widget::wrap($params) should be compatible with FEE_Field_Base::wrap($content, $data) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/widget.php on line 10

    Warning: Declaration of FEE_Field_Comment::wrap($content) should be compatible with FEE_Field_Base::wrap($content, $data) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/other.php on line 10

    Warning: Declaration of FEE_Field_Term_Field::wrap($content, $term_id, $taxonomy) should be compatible with FEE_Field_Base::wrap($content, $data) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/other.php on line 70

    Warning: Declaration of FEE_Field_Single_Title::wrap($title) should be compatible with FEE_Field_Term_Field::wrap($content, $term_id, $taxonomy) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/other.php on line 115

    Warning: Declaration of FEE_Field_Option::wrap($content, $key, $ui) should be compatible with FEE_Field_Base::wrap($content, $data) in /home/cluster-sites/9916/t/thomasfranks.co.uk/public_html/my/wp-content/plugins/front-end-editor/php/fields/other.php on line 231

    This error has come about with no apparent reason or change and our hosting providers have not flagged any issues. I can’t even get into the theme options to update or check for issues so a bit stuck on this. Hoping you can help me here. The site has a login in wall as it is an internal use.

    Thanks.

    Good morning, hope you are all well.
    One.com no longer supports php7.4 and forced the upgrade to 8.0/8.2.
    After reading some threads, I have tried jumping straight to 8.1 with no luck.
    https://proudlocksmot.co.uk/ – I have upgraded Enfold to the latest version.

    Thanks,
    Travis

Viewing 30 results - 1,741 through 1,770 (of 16,893 total)