Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
You can use the email address (Email address hidden if logged out) or any other email, but make sure to generate the password, as we don’t have access to the specified email. We’ll wait for the login info.
Best regards
IsmaelHi,
Yes, a text element is now displaying for each slide.
<span class="visually-hidden hidden">Bowl360 Brooklyn</span>
Best regards,
IsmaelJanuary 21, 2025 at 4:11 am in reply to: Vimeo videos do not play automatically in Chrome first load #1475467Hi,
There’s no error, but the site keeps loading indefinitely without displaying anything. We also tried it on incognito mode.
Best regards,
IsmaelHi,
Thank you for the info.
The account is not an admin, so we are not able to edit the settings. Please add this css code to adjust the layout of the product unit.
p.wc-gzd-additional-info.product-units-wrapper.product-units { display: flex; flex-direction: row-reverse; align-items: flex-start; justify-content: flex-end; } p.wc-gzd-additional-info.product-units-wrapper.product-units span.unit { margin: 0; }
Best regards,
IsmaelHi,
Thank you for the update.
You may need to replace the Color Section with an actual Image or a Fullwidth Easy Slider element to make sure that the container resizes based on the size of the image, rather than the other way around. If you choose to use the Image element, you can adjust the container’s maximum width using css. Please refer to this documentation: https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width
Thanks @Guenni007.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We checked the server info and found that the WP_MEMORY_LIMIT is set to only 40M. Please ask your hosting provider to increase it to at least 256M.
Best regards,
IsmaelHey Richard,
Thank you for the inquiry.
You can add this code to the functions.php file:
function avf_portfolio_extra_mod($output, $entry) { if (!is_object($entry) || !isset($entry->ID)) { return $output; } $term_list = get_the_term_list( $entry->ID, 'portfolio_entries', '<div class="portfolio-term">', ', ', '</div>' ); if (!is_wp_error($term_list) && !empty($term_list)) { return $output . $term_list; } return $output; } add_filter('avf_portfolio_extra', 'avf_portfolio_extra_mod', 10, 2);
Let us know the result.
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelJanuary 21, 2025 at 3:02 am in reply to: ENFOLD Options and Extensions Noticeboard in Italian #1475459Hi,
We’ve included a copy of version 6.0.7 in the private field. Please provide your Gmail account so we can grant you access.
Thank you for your patience.
Best regards,
IsmaelJanuary 21, 2025 at 2:29 am in reply to: Vimeo videos do not play automatically in Chrome first load #1475458Hey tsays,
Thank you for the inquiry.
The background images applied to the color sections should be responsive by default. Just make sure that Styling > Background Image > Background Repeat is set to Stretch to Fit.
Best regards,
IsmaelHey UweS,
Thank you for the inquiry.
There is no option for this in the theme by default, but you can try the hyphenation settings from this plugin: https://wordpress.org/plugins/wp-typography/
Best regards,
IsmaelHey DeaPublishing,
Thank you for the inquiry.
Where can we check the site? Please provide a link to the product page so we can properly check the layout issue.
Best regards,
IsmaelJanuary 20, 2025 at 7:00 am in reply to: How to enable the Enfold “Theme Options” for editors? #1475400Hi,
Thank you for the update
Unfortunately, you cannot modify or override the class avia_adminpages in the child theme. You may need to manually override the capability value in the parent file. Also, please note that edit_theme_options is not included in the capabilities of Editor roles by default. You can find a list of capabilities in the following link: https://wordpress.org/documentation/article/roles-and-capabilities/#editor
Best regards,
IsmaelHey FW,
Thank you for the inquiry.
You can add the following filter to the functions.php file to display the date, author, and categories, but please note that they will not be accessible or will not be displayed as links.
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod_cat', 10, 2 ); function avf_masonry_loop_prepare_mod_cat( $key, $entries ) { $categories = get_the_category($key['ID']); $separator = ' '; $output = ' <div class="masonry-cat">'; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator; } } $output .= '</div>'; $post_date = get_the_date( '', $key['ID'] ); $output .= '<div class="masonry-date">' . $post_date . '</div>'; $author_id = $key['post_author']; $author_name = get_the_author_meta( 'display_name', $author_id ); $output .= '<div class="masonry-author">' . $author_name . '</div>'; $key['text_after'] .= trim( $output, $separator ); return $key; }
Best regards,
IsmaelHey seomar,
Thank you for the inquiry.
The account above is not an admin, so we were not able to check the site settings. Please change the user role to administrator. Did you install any plugins related to images?
Best regards,
IsmaelJanuary 20, 2025 at 6:33 am in reply to: Partner/Logos – Column count depending on the resolution. #1475397Hey tczubkowski_priv,
Thank you for the inquiry.
There is no option for this by default. One solution is to duplicate the current logo slider element, set it to display 4 columns, and then toggle the visibility of both elements in the Advanced > Responsive > Element Visibility settings. Configure it so that one slider is visible only on desktop and the other on smaller screens. Please refer to the screenshot below:
Best regards,
IsmaelHey sebastianpesl,
Thank you for the inquiry,
The sizes and aspect ratios of the images are different. We provided examples in the private field. Please make sure to upload images with the same size and aspect ratio.
You can also try this css code:
.team-img-container { max-height: 280px; } .team-img-container img { width: 100%; height: 100%; object-position: center; object-fit: cover; }
Best regards,
IsmaelHey tedlyc,
Thank you for the inquiry.
This might be due to a custom script or a plugin. Have you tried temporarily disabling the plugins? Please create a test page and provide the login details in the private field.
Best regards,
IsmaelJanuary 20, 2025 at 6:14 am in reply to: Burger Menu (mobile screen) not working in Safari, both desktop & iPhone #1475394Hey UweS,
Thank you for the inquiry.
The mobile menu seemed to be working correctly when we checked it on a different browser. Have you tried testing it on a different device?
Best regards,
IsmaelHi,
Thanks @Guenni007! The Icon shortcode seems to be working without the filter applied.
Best regards,
IsmaelHi,
Thank you for following up.
We added this css code to adjust the padding on mobile view:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 0 !important; } }
Please make sure to purge the cache before checking the page.
Best regards,
IsmaelJanuary 17, 2025 at 7:43 am in reply to: Get rid of payment solutions on product and cart pages #1475277Hi,
Alright! Glad to know you figured it out. Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey vancestone,
Thank you for the inquiry.
The gap is caused by the parallax effect in the Advanced > Animation settings of the Column elements. We disabled the animation to get rid of the extra space.
Best regards,
IsmaelJanuary 17, 2025 at 7:36 am in reply to: How to enable the Enfold “Theme Options” for editors? #1475275Hey Neverlands,
Thank you for the inquiry.
The suggestion is to use the plugin https://wordpress.org/plugins/members/, edit the “Editor” role, and add more capabilities to it until the Theme Options panel shows up. Did you try this?
Best regards,
IsmaelHi,
@seomar: There is a script error on the page when we checked. Please try to deactivate the plugins and temporarily remove any custom scripts. If the issue persists, please open another thread, and we’ll continue there.cabina-aspirado-filtrado-depresion-recinto-comun/:437 Uncaught ReferenceError: jQuery is not defined
at cabina-aspirado-filtrado-depresion-recinto-comun/:437:6
@raslade: Glad we could help! Let us know if you have more questions.Best regards,
IsmaelHi,
Thank you for the update.
It looks like the link title is not being added to the html. Please add this to the functions.php file:
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1); function avia_include_shortcode_template($paths) { $template_url = get_stylesheet_directory(); array_unshift($paths, $template_url.'/shortcodes/'); return $paths; }
Create a folder/file structure inside the child theme directory: shortcodes > logoslider > logoslider.php. Then, add this code to override the default logo slider element.
// https://pastebin.com/AEKjwcRe
The script should function correctly after this modification.
Best regards,
IsmaelHi,
Thank you for the update.
The shift or the spaces around the cells are due to the padding settings. Did you set the left or right padding to 20%?
.responsive #top #wrap_all .flex_cell.av-kyn9tdd8-374b8bd1892b4b8013281e9880b054a8 { padding: 4% 20% 4% 4% !important; }
You have to edit the Grid Row cells and adjust the Styling > Padding for the mobile view, as shown in the screenshot below.
Best regards,
IsmaelJanuary 17, 2025 at 7:00 am in reply to: Changing the color in the navigation background on home #1475271Hi,
Thank you for the update.
You can add this css code to adjust the header background on the home page.
.home .header_color .header_bg { background: #ffffff; }
Best regards,
Ismael -
AuthorPosts