Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
You can try @Guenni007’s suggestion above.
p, li { text-align: justify; } .modern-centered .av-subheading p { text-align: center; }Best regards,
IsmaelHi,
, the green button in desktop, i
The button is still green when we check it in mobile device emulation. Could you provide a screenshot? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot.
Best regards,
IsmaelHi,
Thank you for the update.
On my other site, I would like to fix the image issue on the category page too
You can use the same filter on the other site; just adjust the values as needed.
Best regards,
IsmaelHey blizzmarketing,
Thank you for the inquiry.
There is no option for this out of the box, but you can try one of the following plugins.
// https://wordpress.org/plugins/all-in-one-wp-sticky-anything/
// https://wordpress.org/plugins/sticky-on-scroll/Best regards,
IsmaelHi,
I noticed it would pull the number 3 when I queries using dynamic data for the “av_acf_slideshow_ids” which happens to be the number of slides I have assigned to that records repeater field.
Did you use the IDs of the images in an array as the value for the av_acf_slideshow_ids field? When you try to debug the code, what is the value of
$slide_ids? This should be an array containing the IDs of the images that you’d like to use in the slider.Best regards,
IsmaelHey!
We have made the necessary adjustment to the avia_small_fixes function, and this should be included in the next patch.
Cheers!
IsmaelHi,
Thank you for the update.
You can add this css code to hide the container on mobile view:
@media only screen and (max-width: 989px) { /* Add your Mobile Styles here */ .av-sidebar-header-text { display: none; } }Best regards,
IsmaelNovember 1, 2024 at 5:55 am in reply to: Comment form for an article on mobile is not displaying correctly #1470395Hi,
Thank you for the update.
Concerning the subject. On tiny the labels are displayed on 2 lines and the warning is half hidden under the textarea.
We can’t find any posts with the comment section. Please provide a direct link.
Another small thing, the comment form and the share buttons are both intended to be displayed at the end of one article but their titles do not have the same font size. H3 to Leave a comment and H5 to Share this post.
Try to modify the enfold\comments.php file and look for this code around line 180:
$default_heading = 'h3'; $args = array( 'heading' => $default_heading, 'extra_class' => '' );Best regards,
IsmaelHi,
Thank you for following up.
Can the hamburger menu also be displayed on the right side
You can add this css code to move the burger menu to the right.
.responsive #top .av-main-nav .menu-item-avia-special { float: right; }Make sure to place this modification inside this css media query:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }Best regards,
IsmaelHi,
Thank you for the update.
Maybe it is only for actual Portfolio items, which I don’t have?
Yes, you have to create Portfolio Items for the Portfolio Grid element.
So a combination of Blog Posts and Magazine will do it.
Alright, let us know if you need more assistance with this. We’ll keep the thread open.
Best regards,
IsmaelHi,
Thank you for the links.
We can’t access the editor. Please provide the login details in the private field. It doesn’t look like the page is using the Advanced Layout Builder based on the html.
Best regards,
IsmaelHi,
Thank you for the update.
We are not really seeing the issue in the page. Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. This might help: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHi,
UPDATE: You can try applying a custom css class name to the element. Please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
Best regards,
IsmaelHi,
Thank you for the update.
How do I change it for just this page?
You can edit the Icon List element in the page and configure the options as suggested above.
Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts
