-
Search Results
-
Hello, I have updated a client’s website to Enfold Version 4.0.5. Once the update was completed the screen went blank.
A list of events is shown below:
1. Backed up database and website files using the Updraft Plus plugin
2. Update the Updraft Plus plugin from Version 1.12.34 to Version 1.12.40
3. Update Enfold theme from Version 4.0.2 to Version 4.0.5
4. Screen to the back end went whiteSince then my client has accessed their FTP and tried renaming the Enfold theme folder via FTP, once this is performed the wp-admin is again accessible. He then switched to the TwentySixteen theme and renamed the enfold theme folder back to ‘Enfold’ in FTP. Then went back into wp-admin and attempted to switch the site over to the Enfold theme but it immediately flicked him out to the ‘Error 500’ page and again, WP-Admin was no longer accessible. The site is now running the Twenty Sixteen theme so that wp-admin is accessible.
The plugins we have running on this site are Akismet, Updraft Plus, Woocommerce, Wordfence, Yoast SEO and Wp Smush IT. Nothing has been updated since the ‘white screen’ crash.
My client has created login details for you to access the website and FTP. These are posted in private content.
We have both been researching the various threads with similar issues in your support forum and it is all getting quite confusing with so many possible reasons. If you could please have a look at the website and offer some assistance on the best way forward we would really appreciate it.
Thank you for your assistance.
Topic: WPML Translation Ajax-Search
Hi Team,
WPML an Enfold most works fine together, but the ajax-search show some text
in german instead english (e.g. Beiträge, Produkte) – why? The links works correct
and shows the english items.

I have built my website and know that woocommerce and enfold were having some problems together recently. I researched and fixed my initial problem, which was getting an error message over all of the images on the variable product page. I added a code given in the forum to my child theme and it fixed that. This was the post- https://kriesi.at/support/topic/enfold-theme-woocommerce-product-images-not-showing-as-of-4-4-17/page/3/#post-773385.
The problem I am having now is that I do not have any thumbnails. All my pictures are the same size. I tried making another product page and I have the same problem. Another problem that is occurring is that the side bar menu gets pushed all the way down to the bottom of the page. Please help!
I love Enfold and have built a few sites with it!
New Site:
I need to have search filter to show properties (modular homes) that have certain components (options) like: square footage, bedrooms, baths, price range, etc. Similar to a real estate site, but not for an address, not MLS listings. Maybe more similar to a car dealership with models and options. So customers can filter by amenities and a sliding range of pricing.
Can you please, please recommend something that will work with Enfold???
• I can put in WooCommerce but we don’t need the cart/checkout. No one is purchasing through the site.
• If I use a regular post or portfolio entry, the slider needs to work with the theme. Plus, I need the ability to utilize templates.
I sure would appreciate help on this from anyone that knows of a plugin that would work.Hi,
the gravatar images in the comments are not loaded:
Firefox’ Firebug:

- I use no plugins for the gravatars.
- I have made a search/replace in my database and all is set to https
- ENFOLD 4.0.5
- PHP 7
- I use Let’s Encrypt at All-Inkl.com
I have already deactivated all other plugins without success.
I checked this post with https://www.whynopadlock.com/check.php and the result is,
that http://i0.wp.com/wp_user_avatar is an insecure URL.Is here something wrong with the gravatar URL handled in ENFOLD?
Another theme on the same server is working with the standard gravatar image: http://screencloud.net/v/sWro2
EDIT:
just discovered that only the images are blocked, that do not have a Gravatar account (= fictive test comments from “Max” and “Susan”).
The other comments do have one and shows the gravatar right.
It seems that the blank gravatar image, the standard, is not shown with an image.Topic: Centered Menu [Enfold 2017]
Topic: which theme to sell e-books
Hi Kriesi team … I am just looking at your Enfold theme for wordpress. Fabulous design.
I am a personal coach and author having written many papers. I need a new website where I can sell my writings as e-books. I am not sure if Enfold does provide the platform to sell e-books even though it offers e-commerce. My research tell me that selling e-books is different.
Can you please suggest an appropriate theme which makes it easy to include selling e-books … and if Enfold would do this too?
Thank you very much for taking the time to answer … best regards
MarcelHi,
We’re developing a corporate site and we are facing a big problem trying to translate the taxonomy base slug.
Our thought was that if we registered our custom post and taxonomies the way u register portfolio post type we would be able to translate the base slug… but it didn’t worked. Later I tried translating the portfolio base and it doesn’t work either.I have the latest update of enfold and WPML installed.
Example of our CPT & Tax:add_action('init', 'news_register_extended', 999 ); function news_register_extended() { global $avia_config; $labels = array( 'name' => _x('News Items', 'post type general name','avia_framework'), 'singular_name' => _x('News Entry', 'post type singular name','avia_framework'), 'add_new' => _x('Add New', 'portfolio','avia_framework'), 'add_new_item' => __('Add New Item Entry','avia_framework'), 'edit_item' => __('Edit News Entry','avia_framework'), 'new_item' => __('New Entry','avia_framework'), 'view_item' => __('View News Entry','avia_framework'), 'search_items' => __('Search News Entries','avia_framework'), 'not_found' => __('No News Entries found','avia_framework'), 'not_found_in_trash' => __('No News Entries found in Trash','avia_framework'), 'parent_item_colon' => '' ); $permalinks = get_option('avia_permalink_settings'); if(!$permalinks) $permalinks = array(); $permalinks['news_permalink_base'] = empty($permalinks['news_permalink_base']) ? __('news-item', 'avia_framework') : $permalinks['news_permalink_base']; $permalinks['news_entries_taxonomy_base'] = empty($permalinks['news_entries_taxonomy_base']) ? __('news_entries', 'avia_framework') : $permalinks['news_entries_taxonomy_base']; $args = array( 'labels' => $labels, 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => array('slug'=>_x($permalinks['news_permalink_base'],'URL slug','avia_framework'), 'with_front'=>false), 'query_var' => true, 'show_in_nav_menus'=> true, 'taxonomies' => array('post_tag'), 'supports' => array('title','thumbnail','excerpt','editor','comments') ); $args = apply_filters('avf_news_cpt_args', $args); $avia_config['custom_post']['news']['args'] = $args; register_post_type( 'news' , $args ); $tax_args = array( "hierarchical" => true, "label" => "News Categories", "singular_label" => "News Category", "rewrite" => array('slug'=>_x($permalinks['news_entries_taxonomy_base'],'URL slug','avia_framework'), 'with_front'=>true), "query_var" => true ); $avia_config['custom_taxonomy']['news']['news_entries']['args'] = $tax_args; register_taxonomy("news_entries", array("news"), $tax_args); //deactivate the avia_flush_rewrites() function - not required because we rely on the default wordpress permalink settings remove_action('wp_loaded', 'avia_flush_rewrites'); }Please help : ) and thank you for your effort with this theme.
Hi all,
I’m posting this in the hope to help many others who would spend LOT OF TIME in search for a solution.
I guess I’m another one who faced these product pages 404 issue after installing/updating WPML.
I’ve seen a lot of them all over, here and in WPML forums, with several different resolutions. I tried testing a lot of them. Came to the conclusion that the solution for over half of the users is very SIMPLE.
What’s the environment:
I have Kriesi’s Enfold theme, WooCommerce, WPML (with Media, Multilingual CMS, String Translation, Translation Management and WooCommerce Multilingual plugins) and Yoast all last versions. I have Portuguese as the default language and English/Spanish as translations. I don’t have any other major plugin, only a few specific ones. I have 512M memory_limit and 30s max_execution_time in php.ini.What I’m facing:
In my base language (Portuguese) everything seems fine, but product pages (only) are returning 404 in any translation. I’ve seen many people having similar problem in product category pages. Similar solution might work, it’s worth the test.What I’ve tried:
Reapplying Permanent Links (without changing – HERE’S MY MISTAKE), rescanning WooCommerce pluginfor strings (in WPML – Theme and Plugin Localization), re-added translation for all slugs. Still 404 for products. I tried disabling and re-activating WPML, not successful. I tried disabling Yoast, nothing. I tried so many other things that I can’t even remember.
WHAT IS THE SOLUTION?
On reapplying the product permanent links, if you use CUSTOM BASE, change it to DEFAULT. Translate it (there’s a translate button right below, so no big deal). Test the product page, they are going to work fine. Now get back there and change it again to CUSTOM BASE to whatever you want (make sure it isn’t your chosen word that is breaking the system) and translate it. As simple as that…I hope I could save few hours for someone!
Hi all!
Looks like I found another SEO challenge for Enfold users… Even though I configured NO SIDEBAR in Enfold options, I noticed that the sidebar source code (with all my product/pages internal links) was being included in my product page. It wasn’t displaying in the browser though. It seems to be somehow hidden.
How I noticed? I shouldn’t have too many internal links. When I went for link count, I had more than 260 links, even though my product page seemed normal. Checking source code I found out that a Sidebar was being included in the code, but it wasn’t being shown. Since I’m not using a Sidebar, my Sidebar widget elements were empty.
I searched for any known solution over the net but couldn’t find one. Then, reading instructions of parallel (not similar) problems with the Enfold’s Sidebar I decided to try something: I included a TEXT element in the Sidebar Widgets (both of them) with the following content: “Sidebar gone”.
After inserting this text element into the widgets, EVEN WITH NO SIDEBAR OPTION ACTIVATED the source code of the Sidebar changed from many internal links to “Sidebar gone”. My links count went from 260 to 125. Access attached link and search the source code for “Sidebar gone” and you’ll see that the text element is there!
I’m posting to register in case anyone looks for a simple fast solution. You can go on and close the topic!
Best regards!
Topic: Paralax Broken
I have been working on my business site (Guardian Tech Solutions) for quite some time now, and everything has been going well and working well, up until recent. To give you some quick background, 2 or so months ago my hosted account on Bluehost was hacked. This lead to MANY files across multiple websites being infected with something. Of course it was up to me to fix it, and spend hundreds of dollars to do so, not them, but that’s a whole separate rant I wont go into here. As of Easter, I was able to get the account cleaned, and start getting one of the websites online. Shortly after, I found a backup that was created a little bit before the account was hacked, and I ran a recovery and the other sites came back perfectly.
After that, everything was running great and working great. The last couple days though, I have been noticing a few weird behaviors.
1. All of the sudden when I make edits to any of the pages, I can save, hit update, then when I go to view the change on the website, it no longer shows the correction I just made.
2. My Paralax seems to be breaking down too. It works on on at least one of my pages (Home page), but not the others (Business, Residential>Pricing, or Residential>PC Tune Up to name a few). I have not touched that setting, though I have gone in to look and verify that the pages were set to use Paralax, and they all were.
3. On one of the pages that has Paralax, and isn’t working (Business), I also have a few icon lists where the icons gradually appear on the page, those no longer show at all.I’m not sure where to go or what to do to correct this. I have tried in all 3 browsers (Chrome, Firefox, and IE) all of them show the same issues. Going to the mobile site, that also is showing issues. On the mobile site from my phone, my business name doesn’t show (on the home page), which is a color section text field in WP, and the menu icon to go to other pages, also doesn’t show so I cant go to other pages. I’m not sure if there’s still something on the server causing these issues or what. The software I had to buy, Sitelock, is sending me emails saying everything is clean. I know there is a lot here, but any help in trying to fix this would be very much appreciated. I’m completely out of ideas, and I cannot start this site over. The amount of work and research put into this is too overwhelming.
Thank you.
Enfold: v.4.0.5
Word Press: v.4.7.4Hello, I am trying to be able to make a post look like the following: http://search.stillsmallvoicetriage.org/message.php?id=814&langCode=en-US
I want the picture in the upper left and the text to the right and have the text once reaching passed the picture height, move to the very left.
The issue is I have tired to duplicate this with what Enfold provides and can’t get it right. I tired doing a 2/5ths column containing a picture and 3/5ths column containing a text box and eliminated the spacing between columns. Then if there was too much text I would guess and cut the text off and put in a 1/1 column under the above mentioned columns with a text box. However this turned out awful.
The resolution of different screens causes the text and spacing to be all over the place.
I also notice with the page I am trying to mimic, it’s scaling images based on the viewers screen resolution. I can’t get Enfold to do this.
I somehow need a picture feature that has text wrapping that also will do scaling based on resolutions. I know it’s a simple layout, just how can it be done?
Thanks for your time.
Hi guys,
You see that into the feature request the changes for mobile appearance is a #1 request for a long time and the votes are keep counting.
I dont want to push this but most of us are really waiting for these changes for some time and I hope the new mobile appearance will satisfy our needs. With all the respect of Kriesi and the work done, I decided to create this topic just in case you are interested to learn what the community considers as needed for the revamping of mobile navigation. I think a topic like this would help you to consider what needs to be implemented or done differently in order to maintain Enfold as a great theme.
So here is my list of what should be changed:
-Parent menu items that contains child menu items must be expandable by a tap of a finger it must include +/- to show visitors that it can be expandable;
-Top menu (secondary menu) must be included into the mobile menu container;
-Social icons and search field must be inside the mobile menu container;
-A WPML language switcher element must be included on the top of mobile menu container – seperate placement from WP menusI hope this helps to consider what to change.
Regards
Topic: Gravity with Enfold Theme
I searched all over the web and found some custom CSS to make my radio button (actually the checkbox) a toggle button side by side versus radio buttons in a line. The css is not working with your theme, so wondering if you are able to help?
