Forum Replies Created
-
AuthorPosts
-
Hi,
Great! Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Duplicate id – the same ID is used on more than one element.
id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyVideoEmbedsDisabledUPDATE: Tabs 3 and 4 of the privacy modal popup window contain the same privacy toggles. Did you configure this?
Best regards,
IsmaelHey Advantage09,
Thank you for the inquiry.
Did you manually add a privacy toggle inside a tab section? This causes duplicate IDs for these elements:
id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleWebfontsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyGoogleMapsDisabled id=aviaPrivacyVideoEmbedsDisabledAlthough it is not necessary, if you want to remove the role attributes from certain elements, you can use this script:
function ava_remove_roles_script() { ?> <script> (function ($) { function g() { $('#header').removeAttr('role'); $('.main_menu').removeAttr('role'); } $(document).ready(function () { g(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_remove_roles_script');Best regards,
IsmaelHey 360buddy,
Thank you for the inquiry.
We are not familiar with it but we’ve found a few plugins that might help. Please check the links below:
// https://wordpress.org/plugins/panorama/
// https://wordpress.org/plugins/search/panorama+360/Best regards,
IsmaelHey strumpumpel,
Thank you for the inquiry.
I would like that the .avia-caption-content below the .avia-caption-title.
This is the default position of the title and caption, but it was altered using this css code:
#seowie .caption_framed .slideshow_caption .avia-caption-title { top: 105px; position: relative; }Please remove the css code, then temporarily disable the Enfold > Performance > File Compression settings.
Best regards,
IsmaelHey woogie07,
Thank you for the inquiry.
If you don’t want the portfolio item to link to anywhere, you can set the Additional Portfolio Settings > Link portfolio item to external URL field to a hashtag (#). Let us know if this works for you.
Best regards,
IsmaelJuly 16, 2024 at 7:29 am in reply to: Change background for specific pages and center the text #1462126Hi,
Great! Please feel free to open another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
1.) Please add this css code to remove the background of the language switcher.
.av-main-nav ul li.menu-item-language, .av-main-nav ul li.menu-item-language a, .av-main-nav .menu-item-language .sub-menu { background: transparent !important; box-shadow: none; border: none; }2.) To reduce the space between the language switcher and the active language, please include this css rule:
.av-main-nav .menu-item-language .sub-menu { margin-top: -20px; }Best regards,
IsmaelHey fabienneRedUmb,
Thank you for the inquiry.
Yes, you have to override the shortcode file in your child theme. Please check the documentation below:
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
You will find the portfolio entry container around line 966 of the ]enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.php file.
$post_class = "post-entry post-entry-{$the_id} grid-entry-overview grid-loop-{$post_loop_count} grid-parity-{$parity} {$last}";Best regards,
IsmaelHey Aleksandra,
Thank you for the inquiry.
Did you follow the instructions in the documentation below? Please try to generate another token, and make sure that the required permissions are checked.
// https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
Best regards,
IsmaelHi,
Great! Glad to know that this has been resolved. Please don’t hesitate to reach out if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Alright! 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 update.
We may need to access the site to further check the issue. Please provide the login details in the private field.
Best regards,
IsmaelHey Advantage09,
Thank you for the inquiry.
You can add this css code to hide the featured image in the post nav container:
.avia-post-nav .entry-info span.entry-image { display: none; }Best regards,
IsmaelHey Aubin,
Thank you for the inquiry.
Where do you expect to see the widget? Please note that the filter widget will only display on the base shop page and the default product archive or category pages. The widget will not display on a custom product page or post.
Best regards,
IsmaelHey reqonsult,
Thank you for the inquiry.
You can use this css code to disable the click overlay or the invisible play/pause control.
#top .av-video-slide.av-video-playing { pointer-events: none; }Best regards,
IsmaelHey reqonsult,
Thank you for the inquiry.
Are you using the Fullscreen Slider element? Try to edit one of the slides, go to the Styling > Font Sizes panel and adjust the Caption Content Font Size and the Caption Title Font Size settings. It’s possible to set a custom font size for different screen sizes.
Best regards,
IsmaelHey Lambert,
Thank you for the inquiry.
Looks like the page is set to use a custom template. Please edit the page and check the Page Attributes > Template settings. Make sure that it is set to Default Template.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The name of the event post type is tribe_events, so you have to use the following filter.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = 'tribe_events'; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);However, please note that not all event elements are supported, and activating the ALB might limit the functionality of the event pages.
Best regards,
IsmaelHey snitt,
Thank you for the inquiry.
The background video will only load once the user has accepted the cookies because it’s a YouTube video, which stores cookies locally and requires consent. Since you’re using a custom cookie and privacy plugin, we are not sure if there is an option that allows YouTube videos to play without user consent. Please contact the plugin author for more info.
Best regards,
IsmaelHi,
Thank you for the update.
In the single post page, the default breadcrumb structure is: Home > Blog Page > First Category > Post, which is why you’re seeing the “News” category in the breadcrumb. If you want to remove the category and include the archive date instead, you can use the following code in place of the previous filter:
function avia_breadcrumbs_trail_mod($trail) { global $post; if ( is_singular( 'post' ) ) { $end = $trail['trail_end']; unset($trail['trail_end']); unset($trail[2]); $post_month = get_the_date('F Y', $post); $trail[] = '<a href="' . get_month_link(get_post_time('Y'), get_post_time('m')) . '" title="' . esc_attr($post_month) . '" rel="">' . $post_month . '</a>'; $post_year = get_the_date('Y', $post); $trail[] = '<a href="' . get_year_link($post_year) . '" title="' . esc_attr($post_year) . '" rel="">' . $post_year . '</a>'; $trail[] = $end; } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 1);Best regards,
IsmaelHi,
We will definitely forward the site on our channel. Thanks for sharing!
Best regards,
IsmaelHi,
Alright! Glad to know that this has been resolved. If you have more questions, please don’t hesitate to open another thread.
Have a nice day.
Best regards,
IsmaelJuly 12, 2024 at 7:00 am in reply to: Portfolio and Posts Reverse Navigation, Same Category, and Looped #1461894Hi,
We just noticed that this filter is incorrect:
/** * previous and next opposite order posts & reverse */ add_filter( 'avf_post_nav_entries', 'avf_post_nav_entries_mod_reverse', 10, 3); function avf_post_nav_entries_mod_reverse($entries, $settings, $queried_entries) { $settings['same_category'] = true; return $entries; }To keep the navigation in the same category, you have to replace it with this code instead:
add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1); function avf_post_nav_settings_mod($settings) { $settings['same_category'] = true; return $settings; }Also, make sure that the posts belong to a single category; having multiple categories will not work.
Best regards,
IsmaelHi,
Thank you for the update.
The update should fix the banner, but we are not sure about the tabs. Try adding this css code to display the initial tab on load.
#top div div.product .woocommerce-tabs #tab-description { display: block; }Best regards,
IsmaelJuly 12, 2024 at 6:43 am in reply to: featured image tab not available in article tool side bar #1461892Hi,
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 update.
After further checking, we confirmed that the background videos in the color section are already set to loop, so you don’t need to add the parameter. The video loops automatically when we tested it on our end.
Best regards,
IsmaelJuly 12, 2024 at 6:26 am in reply to: Videos automatically muted (although mute option not selected in back-end) #1461890Hi,
Thank you for the info.
We checked the elements in the Advanced Layout Builder but didn’t see anything unusual in the setup. Did you add any custom scripts to the site? We are unable to check the modifications because the Appearance > Theme File Editor is not accessible. Please enable the editor and try temporarily disabling all plugins. Let us know if the issue persists after the plugins are disabled.
Best regards,
IsmaelJuly 12, 2024 at 6:13 am in reply to: Translatepress shortcode not working in Advanced Layout Editor #1461889Hi,
Sorry to hear about that. Unfortunately, implementing a dedicated option for this shortcode or toggle will require a significant amount of modification, which is beyond the scope of our support. If it is crucial for you to have this functionality implemented, you have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.
If you have any other questions or require further assistance, please feel free to let us know.
Best regards,
IsmaelHi,
Thank you for the update.
If you need to adjust the default style of the animated numbers, you can add the following modification in the Quick CSS field and adjust it as necessary.
#top .avia-animated-number { border: 1px solid red; padding: 10px 20px; background: blue; }Best regards,
Ismael -
AuthorPosts
