Forum Replies Created
-
AuthorPosts
-
June 25, 2025 at 7:48 am in reply to: No animation / no background on full width slider text? #1485879
Hey Tilman,
Thank you for the inquiry.
You can use this css code to deactivate the animation of the slider caption and remove the background:
.avia_transform .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; animation: none; } .caption_framed .slideshow_caption .avia-caption-content p, .caption_framed .slideshow_caption .avia-caption-title, .avia-caption .avia-caption-content p, .avia-caption .avia-caption-title { background: transparent; }
Let us know the result.
Best regards,
IsmaelJune 25, 2025 at 7:42 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485878Hi,
Thank you for the update.
We may need access to the file server to further investigate the issue. Please provide the S/FTP details in the private field. In the meantime, try to temporarily disable all modifications in the functions.php file and any template overrides (footer.php, header.php etc) in the child theme, and see if that makes any difference.
Best regards,
IsmaelHi,
The code will only work if the Text Block is placed directly next to or below the Code Block element. (screenshot S1)
It should work on the previous page. (screenshot S2)
Best regards,
IsmaelHey Tilman,
Thank you for the inquiry.
The overlay option is not available for the Easy Slider element by default, but you can recreate the same effect using this css code.
.avia-slideshow .avia-slide-wrap:before { content: ''; display: block; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 10; position: absolute; left: 0; top: 0; }
Let us know if you need more info.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Try to remove this part from the avia_post_nav_entries filter.
$entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]); $entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
Let us know if this makes any difference.
Best regards,
IsmaelHey tonyiatridis,
Thank you for the inquiry.
To adjust the color of the testimonial arrow, please add this css code:
.avia-testimonial-arrow-wrap .avia-arrow { background-color: #c8cedd !important; border-color: #c8cedd; }
The text or span element in the testimonial content has inline styling, so you’ll need to remove it in order to assign a different text color.
<span style="color: #808080;">“When it comes to customer service, Brookwood Construction is top notch. I have a great level of comfort knowing Brookwood is behind the wheel, driving the project to completion.”</span>
Remove this part:
style="color: #808080;"
Let us know the result.
Best regards,
IsmaelJune 25, 2025 at 6:35 am in reply to: Full with Easy Slider Tablet Mode and Mobile Mode text will not display #1485872Hey kurson,
Thank you for the inquiry.
Please try to add this css code to adjust the visibility of the caption on smaller screens.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .avia_transform .av_slideshow_full .avia-caption-content{ visibility: visible; } }
Best regards,
IsmaelHey kurson,
Thank you for the inquiry.
We added this code to the Quick CSS field to override the default styling of the < strong > and < b > elements.
strong, b { font-weight: normal; }
Please make sure to purge the cache before testing.
Best regards,
IsmaelHey Darren Dittrich,
Thank you for the inquiry.
And one more: is this v4.0 Enfold compatible with the latest WP 6.8.1 and PHP7.4?
The latest version of the theme is 7.1.1, so the version currently installed is a bit outdated. You may need to download the latest version from your ThemeForest account and update the theme manually via FTP.
— https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
It would also be good if we could register a support account, and possibly have this purchase tranferred to (Email address hidden if logged out) since the person who bought this plugin is no longer associated with this site.
Unfortunately, we don’t handle any sales-related inquiries in the forum. You will need to forward this issue to the ThemeForest team.
Let us know if you need more info.
Best regards,
IsmaelHi,
Glad we could be of help! Feel free to reach out if you have more questions. Have a nice day.
Best regards,
IsmaelHey minhndq,
Thank you for the inquiry.
Unfortunately, the Table element doesn’t support cell merging out of the box, but you can try to manually create your own table using a Code or Text Block element.
Example:
<table> <tr> <td>Row 1, Col 1</td> <td>Row 1, Col 2</td> <td>Row 1, Col 3</td> </tr> <tr> <td colspan="2">Row 2, Col 1-2</td> <td>Row 2, Col 3</td> </tr> <tr> <td colspan="3">Row 3, Col 1-3</td> </tr> </table>
Let us know if you need more info.
Best regards,
IsmaelJune 25, 2025 at 5:59 am in reply to: H1 Styling Issue After Embedding Map Using WP Maps Plugin #1485867Hi,
Glad to know it worked! Feel free to reach out if you have more questions. Have a nice day.
Best regards,
IsmaelHey!
No problem! Let us know if you have more questions. Have a nice day.
Regards,
IsmaelHi,
Glad to know it’s working. Regarding the class selector .dmci, it’s probably not working because it’s being overridden by css rules with higher specificity. You may need to adjust it and use more specific selectors. Please remove the previous css code, then replace it with this:
#top #header .av-main-nav > .dmci a { letter-spacing: 0.0em; }
This might help: https://css-tricks.com/specifics-on-css-specificity/
Best regards,
IsmaelHi,
Thank you for the inquiry.
Unfortunately, the burger or mobile menu doesn’t have that option out of the box. For more options and advanced menu layouts, you may need to install a mega menu plugin such as UberMenu, Max Mega Menu, WP Mega Menu, or QuadMenu. You can also contact Codeable if you need extensive customization for the burger menu. Please check the link below.
— https://kriesi.at/contact/customization
Best regards,
IsmaelHey Sven,
Thank you for the inquiry.
The LCP is the background image used in the header container (kuechen-schmidt_edelstahl_footer-bg.jpg). It’s 2000px in width and 46Kb in size, which is a bit heavy. We recommend significantly reducing the image size, make sure it’s compressed and preload it using the plugin below.
— https://wordpress.org/plugins/preload-lcp-image/
CLS could also be improved by limiting the height of the revolution slider on smaller screens, making sure it doesn’t shift the page while the slider is loading. Please add this css code:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top #main #revolutionslider_1 { max-height: 220px; overflow: hidden; } }
Best regards,
IsmaelJune 24, 2025 at 7:06 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485823Hi,
Which posts or items are under the Las Vegas category? When we checked, there was only one item under the “On The Strip” category and none under “Off The Strip”. The blog posts element for Oahu was duplicated, so the post in the duplicate under the Oahu category were already displayed in the original element. We removed the duplicate.
These are the posts under the Oahu category:
Best regards,
IsmaelHi,
On the another option can you tell me exactly where to edit the filter and add the line: $current_post[‘content’] = “”;
Try to replace the whole post-format-standard filter with this:
function avf_modify_standard_post_content( $current_post ) { if ( $current_post['post_format'] === 'standard' ) { global $avia_config; $blog_content = ! empty( $avia_config['blog_content'] ) ? $avia_config['blog_content'] : 'content'; $more_link_arrow = '<span class="more-link-arrow"></span>'; $categories = get_the_category( $current_post['ID'] ); $category_names = wp_list_pluck( $categories, 'name' ); if ( in_array( 'Dharma Talks', $category_names ) ) { $read_more_text = __( 'Listen/Read More', 'avia_framework' ); } elseif ( in_array( 'Music Recordings', $category_names ) ) { $read_more_text = __( 'Listen to this', 'avia_framework' ); } else { $read_more_text = __( 'Read more', 'avia_framework' ); } $current_post['before_content'] = ''; if ( $blog_content == 'content' ) { $current_post['content'] = get_the_content( $read_more_text . $more_link_arrow ); } else { $current_post['content'] = get_the_excerpt(); } if ( $blog_content === 'excerpt_read_more' ) { $current_post['content'] .= ' <div class="read-more-link"><a href="' . get_permalink() . '" class="more-link">' . esc_html( $read_more_text ) . $more_link_arrow . '</a></div> '; } } return $current_post; } add_filter( 'post-format-standard', 'avf_modify_standard_post_content' );
This block resets the post content to blank, then re-adds the post content or excerpt.
$current_post['before_content'] = ''; if ( $blog_content == 'content' ) { $current_post['content'] = get_the_content( $read_more_text . $more_link_arrow ); } else { $current_post['content'] = get_the_excerpt(); }
Best regards,
IsmaelHi,
Thank you for the update.
You can try this css to adjust the letter spacing of the “Download my contact info” menu item:
.html_header_sidebar #header .av-main-nav > #menu-item-4085 a { font-size: 16px; letter-spacing: 0.02em; }
Best regards,
IsmaelHey tonyiatridis,
Thanks for reaching out.
Please try this css code to adjust the font color of the sorting buttons:
#main .main_color #js_sort_items a, #top .main_color #js_sort_items a.active_sort { color: #ffffff; } #main .main_color #js_sort_items a:hover { color: #bbe2ff; } .main_color .text-sep { color: #e1e1e1; }
Example:
Best regards,
IsmaelHi,
You can try this css code to adjust the top spacing of any text block element next to a code block.
.avia_codeblock_section + .av_textblock_section { padding-top: 50px; }
Best regards,
IsmaelHey navindesigns,
Thank you for the inquiry.
1.) You can adjust the Min. Mobile Font Size in the Style > Text & Typography panel, as shown in the screenshot below. You can apply a custom css class in the Attributes tab and control the font size using custom css.
2.) Please try this css code to adjust the width and position of the SVG wave separator.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .avia-section.av-wxcp-c90200cb46284bf3caa8c1c1fbba7cb6 .avia-divider-svg-top svg { height: 50px; width: calc(100% + 300px); left: 20%; } }
Let us know the result.
Best regards,
IsmaelHey agus,
Thank you for the inquiry.
There is no element that exactly matches the layout of the page in the private field, but you might be able to recreate it with some modifications using the Magazine or Blog Posts element set to Grid Layout. Please check the links below for reference.
— https://kriesi.at/themes/enfold-2017/elements/magazine/
— https://kriesi.at/themes/enfold-2017/elements/blog-posts/Best regards,
IsmaelHey jkos,
Thank you for the inquiry.
You can configure the Main Menu > Main Menu Links in the Enfold > Advanced Styling panel. Please check the screenshot below.
Best regards,
IsmaelHi,
Thank you for the clarification.
You can place the first section in the first accordion item, the second in the second one, and so on. Then, add the css code in the Quick CSS field.
Add this to the first accordion item to display the image on the left and the text on the right, as described.
<div class="av-mod-alternate-section"> <div class="av-mod-image"> <img src="image1.jpg" alt="Image 1"></div> <div class="av-mod-text"> This is the text for section 1. Image is on the left.</div> </div>
Then, add this to the next accordion item, with the image on the right and the text on the left.
<div class="av-mod-alternate-section av-mod-reverse"> <div class="av-mod-text"> This is the text for section 2. Image is on the right.</div> <div class="av-mod-image"> <img src="image2.jpg" alt="Image 2"></div> </div>
Take note of the class name “av-mod-reverse”, which reverses the order of the element inside the section.
Best regards,
IsmaelJune 23, 2025 at 9:21 am in reply to: Settings import: couldnt’t import the config because the server didnt resp #1485784Hi,
Great! Glad to know this has been sorted out. Please don’t hesitate to open another thread if you have more questions
Have a nice day.
Best regards,
IsmaelJune 23, 2025 at 9:19 am in reply to: Custom Posts No Longer Display After Saving Blog Post Eliment #1485783Hi,
Thank you for the inquiry.
We temporarily disabled the post type selection by removing the following code from the functions.php file but the issue persists.
add_theme_support('add_avia_builder_post_type_option');
We also noticed that the issue only occurs when the Grid Layout style is selected. Please try to temporarily remove the postslider.php file from the child theme’s shortcodes folder.
Let us know the result.
Best regards,
IsmaelHi,
Glad to know that @Guenni007 was able to help you out! Feel free to reach out if you have any more questions.
Best regards,
IsmaelHi,
Thank you for the info.
You may need to manually remove this line from the includes/loop-index.php file, around line 151.
$current_post['content'] = $blog_content == 'content' ? get_the_content( __( 'Read more', 'avia_framework' ) . $more_link_arrow ) : get_the_excerpt(); $current_post['content'] = $blog_content == 'excerpt_read_more' ? $current_post['content'] . ' <div class="read-more-link"><a href="' . get_permalink() . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . $more_link_arrow . '</a></div> ' : $current_post['content']; $current_post['before_content'] = '';
To override the template, you can create a copy of /includes/loop-index.php in your child theme folder.
Another option is to edit the filter and ensure that the $current_post[‘content’] is blank before appending the new read more link.
$current_post['content'] = "";
Best regards,
IsmaelHi,
Sorry about that. Include this css code to remove the author and the extra separators:
.slide-meta-time + .slide-meta-del, .slide-meta-author, .slide-meta-author + .slide-meta-del { display: none !important; }
Best regards,
Ismael -
AuthorPosts