Forum Replies Created
-
AuthorPosts
-
Hi,
No problem! Glad @Guenni007 helped. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the screenshot.
It doesn’t appear that way on our end. Try viewing the site in incognito mode or using a different browser. Please check the screenshot in the private field.
Best regards,
IsmaelHi,
Good to know! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
So I sent them the error log and I’m waiting for their reply.
What does the error log show? Please temporarily disable the plugin so you can work on the pages, and post the error using Pastebin so we can review it on our end.
Best regards,
IsmaelNovember 1, 2024 at 4:56 am in reply to: Product Gallery Images now square and cropped on new images? #1470384Hi,
Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The issue doesn’t occur when we’re logged in and the WP Rocket plugin is disabled. Please try adjusting the cache options until you find a working combination. You may need to toggle the compression settings in the caching plugin.
Best regards,
IsmaelHi,
Thank you for the update.
What happens when you set the $atts[‘image_size’] value from “portfolio” to “full”?
$atts['image_size'] = 'full';
You can change the column count by adjusting this line:
$atts['columns'] = 4;
Best regards,
IsmaelHi,
Thank you for the update.
Did you try the wpml-string shortcode? We may need to access the site to properly check the issue. Please provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
There will be no additional options for these columns since they are created manually. If you need animation and other options, you will need to use the default Column element.
Best regards,
IsmaelHi,
Thank you for the update.
We received this Wordfence error when we try to access the site:
Your access to this site has been limited by the site owner
Your access to this service has been limited. (HTTP response code 503)If you think you have been blocked in error, contact the owner of this site for assistance.
Please disable the plugin temporarily.
Best regards,
IsmaelOctober 31, 2024 at 6:32 am in reply to: Search symbol on the left side of main menu is blank #1470327Hi,
Thank you for the info.
We managed to login to the site, but the frontend appears completely blank when we checked. Did you change anything? Please restore the site to a working condition, then we’ll check it again. You may need to set the installation to debug mode and enable the error logs.
Best regards,
IsmaelHi!
Thank you for the update.
Try to add this filter to adjust the thumbnail size of the featured images.
add_filter("avf_post_slider_args", function($atts, $context) { if ($context == "archive") { $atts['type'] = 'grid'; $atts['columns'] = 4; $atts['preview_mode'] = 'custom'; $atts['image_size'] = 'portfolio'; } return $atts; }, 10, 2);
Regards,
IsmaelHey Eduardo,
Thank you for the inquiry.
However, I need to apply center text alignment to subheadings into Special Heading element too
Have you tried adjusting the Content > Heading Style of the Special Heading element? You can select one of the “centered” options to center-align the heading.
Best regards,
IsmaelHey Jaroslav ,
Thank you for the inquiry.
What is the current version of the theme? You may need to do the update manually via FTP. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey lausianne,
Thank you for the inquiry.
The theme doesn’t have a Query Loop element, but you can try using post elements like Blog Posts, Magazine, Post Slider, Portfolio Grid, or Masonry. You can also manually create a similar layout by using the Column element along with other available elements in the builder.
Best regards,
IsmaelHey clintrichardson24,
Thank you for the inquiry.
We’re not exactly sure why the spaces are appearing, but you can try this css code to fix it:
.single-product div.product .woocommerce-product-gallery .flex-control-thumbs { display: flex; flex-wrap: wrap; gap: 0; }
Best regards,
IsmaelOctober 31, 2024 at 5:09 am in reply to: Magnifying glass icon not showing up on mid size screen burger menu #1470315Hey gatehealing,
Thank you for the inquiry.
We’re not sure we understand the issue. Would you mind providing a screenshot of the search icon? Could you clarify what you mean by “in-between size”. and how you get to this size? Are you using a device with a specific model?
Best regards,
IsmaelHey dsignoWerbung,
Thank you for the inquiry.
but enfold only allows 5 columns (5 x 1/5). What can I do?
You may need to manually create this using custom html and css in a Text or Code block element.
Example:
<div class="av-column-container"> <div class="av-column av-column-one-sixth">Column 1</div> <div class="av-column av-column-one-sixth">Column 2</div> <div class="av-column av-column-one-sixth">Column 3</div> <div class="av-column av-column-one-sixth">Column 4</div> <div class="av-column av-column-one-sixth">Column 5</div> <div class="av-column av-column-one-sixth">Column 6</div> </div>
Then add this css code:
.av-column-container { display: flex; flex-wrap: wrap; gap: 10px; } .av-column-container .av-column-one-sixth { flex: 1 1 calc(100% / 6 - 10px); / background-color: #f0f0f0; padding: 20px; text-align: center; box-sizing: border-box; } @media (max-width: 768px) { .av-column-container .av-column-one-sixth { flex: 1 1 calc(50% - 10px); } } @media (max-width: 480px) { .av-column-container .av-column-one-sixth { flex: 1 1 100%; } }
Best regards,
IsmaelHi,
Thank you for the update.
We may need to access the site to properly check the issue. Please provide the login details in the private field and make sure that the Appearance > Theme File Editor is accessible.
Best regards,
IsmaelOctober 31, 2024 at 4:58 am in reply to: Product Gallery Images now square and cropped on new images? #1470312Hi,
there no way to just make the images full-size as they were before?
Please switch back to the default enfold product gallery, then add this filter in the functions.php file to adjust the thumbnail size:
add_filter('single_product_small_thumbnail_size', function($size) { $size = 'full'; return $size; }, 10, 1);
Best regards,
IsmaelHi,
Thank you for the update.
The icons seem to be displaying correctly when we checked. Regarding the map, please make sure that the JavaScript API is activated in your Google project.
Review the documentation below for more info.
// https://kriesi.at/documentation/enfold/google-map/#how-to-register-a-google-maps-api-key
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
You can adjust the layout of the archive pages in the Enfold > Blog Layout > Blog Layout settings. You can also use this filter in the functions.php file:
add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); function avf_blog_style_mod($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }
Best regards,
IsmaelHi,
Thank you for the update.
You can add this css code to display the burger menu on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #header_main_alternate { display: block; } }
Best regards,
IsmaelOctober 31, 2024 at 4:32 am in reply to: Text and Picture align left instead of center on tablet #1470306Hey Monika,
Thank you for the inquiry.
The content is still center-aligned, but the text gets pushed out of the container because of the column padding.
.flex_column.av-m2w8a60p-13fc3685d08ecccadf0728ef376c8d28 { padding: 100px 100px 100px 60px; }
Have you tried adjusting the padding and margins on smaller screens? Edit the settings, then toggle the device icons to adjust the values for different sizes.
Best regards,
IsmaelHey michelebond,
Thank you for the inquiry.
Try to include this css code to change the color of the submit button on hover:
.main_color #submit:hover, .main_color input[type=submit]:hover { background-color: purple !important; color: #fff !important; border-color: purple !important; }
Best regards,
IsmaelHey michelebond,
Thank you for the inquiry.
Did you set the Styling > General Styling > List Styling settings to Minimal small list? Please try to reset it to default, or add this css code:
#top .av-iconlist-small li { padding: 10px 0; }
Best regards,
IsmaelHey michelebond,
Thank you for the inquiry.
We can’t reproduce the issue on our end; the testimonial element container responds correctly on smaller screens. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHi,
We adjusted the css code a bit:
#menu-item-691 .avia-menu-text { color: #fff; background: linear-gradient(-45deg,#FFA63D,#FF3D77,#338AFF,#3CF0C5); background-size: 600%; border: none !important; animation: anime 14s linear infinite; padding: 11px 20px !important; overflow: hidden; } @keyframes anime { 0% { background-position:0% 50% } 50% { background-position:100% 50% } 100% { background-position:0% 50% } }
Best regards,
Ismael -
AuthorPosts