This reply has been marked as private.
Hi,
You were correct about the blog page. As soon as I removed it from the Enfold settings it displayed as a grid. BUT it still does not exclude categories.
Thank you
Hey tcampaner,
Thanks for your patience, the medium image size is a WordPress image size and it is not a exact 300px square it will scale down the image so the largest side is 300px and the other side will be whatever it is. So if you have a landscape image it will be about 300×230 depending on the ratio, if you need a exact 300×300 image then you can srop your image before uploading it.
As for your blog page, it doesn’t look like you are using a blog element for the posts, so you would not be able to exclude a category. I suspect that you may have used a blog element on the page and tried to exclude a category from showing, but you may have set that page as the “blog” page in the theme settings like this:

so in this case the blog element is not used but the WordPress blog loop is, if this is your case change the theme settings to “select page” so the blog element will show the posts like this:

Best regards,
Mike
Hey huge0904,
Your version uses the old API key, Envato (Theme Forest) now uses a “Token”, see our documentation here. So you will need to manually update and then in the future you can automatically update with the token.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.

I recommend first using your web host backup tool to backup your site and database, not a backup plugin unless you have specific experience restoring from the plugin backup, if you are not sure how to use your web host backup tool, ask them for assistance. I do not expect issues with updating your version but it is good practice to have a backup.
Perhaps creating a staging site to test the update on would be a good idea, most cPanel webhosts have a staging site option, some in the dashboard:

Others add the option in the Softaculous WordPress Management

There may be other staging site options in different cPanel servers, these are the two that I have seen.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
I wanted to update the “Enfold” theme used on my website, so I purchased a new license.
I entered the downloaded “Purchase Code” into the theme’s “Enfold > Theme Update > Your Themeforest API Key”, but the update is not displayed.
I can’t update from version (3.5.2), what should I do?
Hey santanin,
Thank you for your patience, to make the cells width match the content try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:
#top .avia-table.avia-data-table {
table-layout: auto;
}
The portrait images don’t show on mobile because they have no width like the flag images do, you can try this css that sets a min width for mobile and a max width for desktops, feel free to adjust to suit:
#top .avia-table.avia-data-table tbody td:nth-child(3) img {
min-width: 5em;
width: 20em;
}
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.
Best regards,
Mike
Hey pbtouchard1,
To create a new project please click “add new project”

then in the popup click “blank project” or “browse templates”

then in the project settings you can name it

I’m not sure which “drop down” you are referring to.
Best regards,
Mike
Hey zylphe,
Thank you for your patience, I see many javascript errors on your pahe please try disabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression and enabling Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and your EWWW Image Optimizer plugin and then clear your browser cache and check.
If this doesn’t correct please include admin login in the Private Content area so we can investigate.
Best regards,
Mike
Hey Manel,
Thank you for your patience, the taxonomy name would be a category, portfolio items are a post type.
If you need further assistance please log in to the support forum and open a new thread If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.
Please note that using the contact form is not appropriate for support questions.
Best regards,
Mike
Hey block4,
Try going to Enfold Theme Options ▸ Header ▸ Extra Elements ▸ No Phone Number/Extra Info

Best regards,
Mike
Hey seomar,
The white bar at the top was due to your LayerSlider having a space above the background image, I changed the background to “cover” and now it is fixed:

To have a different logo on mobile, Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
add_filter('avf_logo','av_change_logo');
function av_change_logo($logo)
{
if(wp_is_mobile() ) {
$logo = "http://kriesi.at/wp-content/themes/kriesi/images/logo.png";
}
return $logo;
}
change the url to your new logo image
The reason your LayerSlider is not showing until someone interacts wih it is due to your WPRocket lazy load, you need to add a exclusion

Your EWWW Image Optimizer is also dong the same thing:

I added these for you please clear your browser cache and check, if you still have trouble clear your server cache or disable both plugins.
for your last question, do you mean this:

it is in your LayerSlider, please change there.
Best regards,
Mike
Hi,
When I check your site I see four portfolio categories:

and the breadcrumbs seem correct for each category:

please explain the error that you see further, perhaps a screenshot would help.
Best regards,
Mike
Hi,
Thanks for the feedback, remove the css above and keep the caption in your featured image in the media library, and then try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_post_featured_image_link( $image_link ) {
if(is_single() && has_post_thumbnail()) {
$image_link = get_the_post_thumbnail();
$thumbnail_id = get_post_thumbnail_id();
$thumbnail_caption = wp_get_attachment_caption($thumbnail_id);
$caption_div = '<div class="featured-image-caption" style="text-align: center;">' . esc_html($thumbnail_caption) . '</div>';
$image_link = $image_link . $caption_div;
}
return $image_link;
}
add_filter( 'avf_post_featured_image_link', 'custom_post_featured_image_link', 10, 3 );
the caption should show like this:

I’m not sure how it will show for your different layouts as the WordPress login above didn’t work for me so I couldn’t test, so give it a try.
Best regards,
Mike
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hey florian_WIO,
Thank you for the link to your site, this is because it is on the left edge of the page container, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field to move it over a little bit:
#avia-timeline-1 .av-milestone:first-child {
left: 10px;
}
This is the expected results:

Best regards,
Mike
Hi,
Thank you for your patience, please try following these steps, first add a caption to your featured image in the media library:

Then add this css to your child theme stylesheet or the theme option Quick CSS:
.single-post .single-big a:after {
content: attr(title);
}
and the caption should show like this:

Best regards,
Mike
Hi,
Thanks for the feedback, I did mis that. I noticed another error on your page:
[AVIA-MAP-ERROR] Latitude or Longitude missing. Make sure you did not only enter an address. You need to fetch the coordinates too.
your map address doesn’t have a city or state, try adding these and then fetch the coordinates:

Best regards,
Mike
Hi,
When I check your search fits well between the logo and the cart icon:

your css is for screen sizes starting at 990px and above, I guess you could rewite the css for other screens sizes, try modeling the css above for the screen size that you want to change.
Best regards,
Mike
Hey Peter,
Could you try updating the theme to the latest version (5.7.1) to see if that helps please? https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update.
Best regards,
Rikard
Hi,
You can try and since most of these you are not using on your site you can disable them at Enfold Theme Options ▸ Performance ▸ Disable Template Builder Elements

Blue means that it is disabled, you should see text next to the button unused or in use to help you so you don’t disable elements in use:

Best regards,
Mike
Hey robertbwc,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:
function my_woocommerce_catalog_orderby( $orderby ) {
unset($orderby["default"]);
unset($orderby["menu_order"]);
unset($orderby["price"]);
unset($orderby["date"]);
unset($orderby["popularity"]);
unset($orderby["rating"]);
unset($orderby["rand"]);
unset($orderby["relevance"]);
return $orderby;
}
add_filter( "avf_wc_product_order_dropdown_frontend", "my_woocommerce_catalog_orderby", 20 );
it will remove all except Name & ID

Best regards,
Mike
Good day,
I have two questions. Link to my website is in the private field.
1) I added an Enfold Table element on my page and in one of the columns I added code to display an image using a basic img tag. The image shows great on desktop, but it does not show on mobile. Do you know how to make images in table cells show on mobile?
2) For the Enfold Table element, is there a way to make the width of each column shrink to match the width of the content in the cell? For example, in the first column of my table, I put a single number in each cell, like “1”, “2”, “3”, etc. The first column is wide and I want it to shrink in width automatically. I don’t want to manually set the size of the width, but have the width automatically shrink to match the cell’s content. Do you know what I mean?
Thank you!
Hi,
Glad Ismael could help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike
Hi, I’m following this thread on how to add an Adobe type kit to the Enfold theme. https://kriesi.at/support/topic/adding-adobe-typekit-to-my-website/
I add the code in private to my child theme but I’m getting this error. Your PHP code changes were not applied due to an error on line 17 of file wp-content/themes/enfold-child/functions.php. Please fix and try saving again.
syntax error, unexpected ‘Regular’’ (T_STRING), expecting ‘]’
I’m not too sure of the font weight but this is the font im using Edpirito Regular. https://fonts.adobe.com/fonts/espiritu
Any help would be appriectaed!
Hi MIke,
Perhaps you missed my original message – I have already tried disabling all plugins and using the default Enfold theme.
Do we need a privacy policy page for the maps to work?
running webpagetest, I get the following are render blocking; most are theme related…Would it hurt anything for me to defer/etc. these?
/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js
/wp-content/themes/enfold/js/avia-js.js?ver=5.7.1
/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1
/wp-content/plugins/google-analytics-for-wordpress/assets/js/frontend-gtag.min.js?ver=8.26.0
/wp-content/themes/enfold/js/avia.js?ver=5.7.1
/wp-content/themes/enfold/js/shortcodes.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-compat.js?ver=5.7.1
/wp-content/themes/enfold/js/waypoints/waypoints.min.js?ver=5.7.1
/wp-includes/js/jquery/jquery.min.js?ver=3.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js?m=1715101414
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js?ver=5.7.1
/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-lightbox.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-parallax.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-fold-unfold.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js?ver=5.7.1
/wp-content/plugins/ewww-image-optimizer/includes/lazysizes.min.js?ver=760
/wp-content/themes/enfold/js/avia-snippet-hamburger-menu.js?ver=5.7.1
/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js?ver=5.7.1
/wp-content/themes/enfold/framework/js/conditional_load/avia_google_maps_front.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-sticky-header.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-footer-effects.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-widget.js?ver=5.7.1
/wp-content/themes/enfold/js/avia-snippet-megamenu.js?ver=5.7.1
We manage 20+ sites, all with the Enfold theme. For some reason, 2 sites won’t load with the most recent update. All that shows up is a spinning wheel. Does anyone else have this challenge?