-
Search Results
-
trying to update the home page of https://www.fbclancaster.com/ and when I change the text in the first color section and press save everything below the full width button disappears. See attached video.
what is wrong? WordPress is up to date, Enfold is up to date.I haven’t been able to update my Enfold themed website since version 5.6.9. If I update the theme to its current version or make any changes to the footer, which I need to do, the entire site breaks. I put a lot of money and time into creating the site the way that I want it using enfold and I’d hate to have to start over from scratch because I can’t update the footer or the site to its current version without losing it. I have more than one site using enfold because I like the them and I just renewed my support, please help. I should also note that I must restore the site from a backup once this happens.
Topic: Default formatting settings
Good morning,
We’ve had issues with not being able to override fallback settings when it comes to text and table formatting.
For instance, if I use HTML to format the color of the text, if I go back to use the visual editor as opposed to code and make a part of the text bold, then the added script breaks the formatting and makes the text blue (which was set somewhere as the default). The same thing happens with tables with HTML. The default is to make the background white and I cannot override it to make it transparent with CSS, only another colour.
I’ve added the changes for text in Advanced Styling in Enfold, but it doesn’t override the fallback formatting. I don’t want to break anything by creating conflicting formatting so I want to be sure to change it in the right place.
Thank you in advance for your help.
Best regards,
VladTopic: Focusable elements
Hi,
the topic of accessibility is currently on our minds. We actually have it well under control, and the Enfold theme is exemplary in this regard. Currently, we’re working on focusable elements, such as buttons that indicate the action behind them when hovered over. If you only use the keyboard, this change in the button color isn’t visible. This leads to complaints. Do you have any ideas how to solve this? This also applies to links or searches…basically, every interaction!Regards
Topic: how to ask !!!!!!!!!!
I have problem with Enfold theme functionality and have no idea how to ask a question online. There is no option on the website!!!!!!!!!!!!!!!!!!!!!!
Good morning,
You helped me fix this last time. I have now uploaded the child’s theme, and your settings have disappeared. I entered the code in the custom code field, and, as before, it did not work. AND THERE IS ANOTHER BIG ISSUE WITH THE NEW INSTALL. On the phone the products are majorly out of wack! Type is all over the place. Can you help with this then check on a phone to see if it appears right?? THANK YOU IN ADVANCE!! I uploaded the old Enfold theme settings with the new install but maybe because you changed it at the Php level it did not transfer.
I HAVE COPIED AND PASTED WHAT YOU DID THE LAST TIME. HERE IT IS. YOU ADDED IT TO MY PHP FUNCTION, WHICH I DO NOT KNOW HOW TO DO.
Hi,Thank you for your patience, on the page /fine-art-limited-editions/ I see the images are cropped to 450px square:
Enfold_Support_3642.jpegand your original images are in a 4:3 layout:
Enfold_Support_3644.jpegI couldn’t find the snippet that Ismael provided above anywhere, so I added it to th end of youe functions.php and now the images look like the original layout:
Enfold_Support_3646.jpegplease clear your browser cache and check.
I see you are not using a child theme and so this customization will be lost when you update next, I recommend the WPcode plugin this plugin supports PHP code snippets, JavaScript code snippets, & CSS code snippets so your customizations won’t be lost.Best regards,
Mike
HERE IS THE SNIPPET THAT THE THREAD SAID YOU ADDED.
add_filter( ‘avf_wc_before_shop_loop_item_title_img_size’, ‘avf_wc_before_shop_loop_item_title_img_size_mod’, 10, 1 );
function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) {
return ‘woocommerce_thumbnail’;Ich habe bereits mit Rikard eine konversation gestartet, leider kann ich ihm nichtmehr antworten im Forum, da das Limit von 4 schon erreicht ist.
Daher hier nochmal die Bitte an Herr Rikard, die letzte Frage von Ihm war ob das Problem auch auftritt wenn alle Plugins bis auf WPML deaktiviert sind und die Antwort ist : JA
Der Fehler tritt genauso auf, auch wenn alle Plugins bis auf WPML deaktiviert sind.
Good day,
I have recently purchased your Enfold theme, uploaded it and create a website for a client. The website was working fine but is now showing a blank page. I cannot even access wordpress in the backend. Today I have deactivated plugins in Cpanel and increased PHP memory from 128mb to 524mb.
Nothing has worked.
Please assist.
Hello,
Hope you are doing well.
We have the same reoccuring issue that we’ve had in the past with threads we’ve opened. Many elements keep not loading across the website and only reappear on reload, and not always fully.
We’ve cleared the cache on Object Cache Pro. We’ve also added Enfold theme as an exclusion for the Async plug-in. I don’t know if there could be issues such as conflicts between Async and Autoptimize. We’ve also set exclusions between them.
The issue happens more and more often and at times it seems like the whole page doesn’t load until the reload. We’ve disabled lazy load on Enfold, but have it on Autoptimize because we don’t see the option to turn it off.
Is there anything we can do?
Thank you in advance,
VladHello Enfold Support Team,
I am trying to change the default cropped size of my featured images on single blog posts to a proper 16:9 aspect ratio, so that my 1280x720px images are displayed in full without any cropping.
I have tried two different PHP-based methods based on my research, but neither has worked on my local server environment (so caching should not be the issue).
Method 1: Modifying Existing Sizes
First, I tried to modify the existing theme sizes using the avf_modify_thumb_size filter. This was the code I used in my child theme’s functions.php (respectively in a Code Snippet Plugin):
function enfold_definitive_image_ratio_fix( $size_array ) { $size_array['entry_without_sidebar'] = array('width' => 1210, 'height' => 681); $size_array['entry_with_sidebar'] = array('width' => 845, 'height' => 475); return $size_array; } add_filter( 'avf_modify_thumb_size', 'enfold_definitive_image_ratio_fix', 10, 1 );When this code is active, the “Regenerate Thumbnails” page still shows the old default dimensions (e.g., 1210×423), so the filter does not seem to be applying correctly.
Method 2: Registering a New Size and Forcing its Use
As an alternative, I also tried registering a brand new 16:9 image size (custom-16-9-hero) and then used the avf_post_featured_image_size filter to force the theme to use it. Here is the code for that attempt:
function enfold_add_custom_image_sizes() { add_image_size( 'custom-16-9-hero', 1280, 720, true ); } add_action( 'after_setup_theme', 'enfold_add_custom_image_sizes' ); function enfold_use_custom_featured_image_size( $size ) { if ( is_singular('post') ) { return 'custom-16-9-hero'; } return $size; } add_filter( 'avf_post_featured_image_size', 'enfold_use_custom_featured_image_size', 10, 1 );With this method, the “Regenerate Thumbnails” plugin does show my new custom-16-9-hero – 1280 x 720 size and creates the files correctly after regenerating. However, the theme’s single post template still ignores the filter and continues to display the old default cropped image.
My question is:
In the latest version of Enfold, what is the definitive and correct method to ensure the featured image on a single post page is displayed at a custom 16:9 ratio?
Thank you very much for your help.
Kind regards,
DavidHi
I bought the plugin of ENfold, it was few years ago here is the number of perches :
Enfold – Responsive Multi-Purpose Theme
Regular License
6 months support (expires on 28 May 2018)
Purchase code: a4e0c6a1-2e97-4f78-9eab-b6d922b36dedI’m trying to build a new site and I want to use it, my WordPress version is 6.8.1 .
when I try to import the plugin , I receive an error during the installation phase .
what is the reason please ?
do I have an old version of enfold?
I downloaded it from https://themeforest.net/downloads where i bought it.
Thanks
Viewing 30 results - 2,191 through 2,220 (of 244,538 total)


