Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
Would you mind providing the WP and FTP login account so that we could check the issue properly? Please post the login details in the private field.
Best regards,
IsmaelHi,
Great! Glad it worked! Thank you for your support and for using the theme. Please do not hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
That should be possible with the following css code but you may need to also adjust the rest of the elements within the header container. Please look for the css using this selector..
.responsive #top #header #header_main .inner-container .main_menu
.. and add these properties..
position: absolute; width: 110vw; bottom: -30px; left: -20vw;
Or just use this css code.
.responsive #top #header #header_main .inner-container .main_menu { order: 3; flex-basis: 100%; align-items: center; align-self: center; height: inherit !important; background: gold; justify-content: center; position: absolute; width: 110vw; bottom: -30px; left: -20vw; }
Best regards,
IsmaelFebruary 2, 2021 at 11:02 am in reply to: Paralax option blows picture up while extremely wide pic doesn't fill whole wndw #1277057Hi,
Yes, that is one way to control the position of the background image. We could also use css to adjust it manually on mobile view. Try this css code in the Quick CSS field or in the child theme’s style.css file.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .home #av_section_1 .av-parallax-inner { background-position: 35% 30% !important; } }
// https://www.w3schools.com/cssref/pr_background-position.asp
Best regards,
IsmaelHi,
The left side is still broken with the image below the text.
As we mentioned above, there is an unclosed html tag in the title field of the post contained in the left navigation, which is why it is broken. You have to edit that post and make sure that all tags are closed properly. And you may need to refrain from using span tags inside the title field because it is the same tag used in the post nav.
Best regards,
IsmaelFebruary 2, 2021 at 10:50 am in reply to: How to make the Advanced Layer Builder DEFAULT when creating a new page/post? #1277046Hi,
Glad that you found a workaround! And regarding the jQuery Migrate, that option is actually useless at this point because jQuery Migrate is no longer enabled by default on WP 5.6. We will forward the issue to our channel and maybe have that option removed in the next versions of the theme.
Best regards,
IsmaelFebruary 2, 2021 at 10:44 am in reply to: Youtube video in slider does not go to next slide #1277044Hi,
Looks like the onStateChange is triggered properly on Safari. Please look for this code in the slideshow-video.js around line 310:
var command = _self.options.loop != false ? 'loop' : 'av-video-ended';
Below, add this code.
console.log("YOUTUBE ENDED");
After that, make sure to purge any cache and in the browser console, check if you can see the log that we created above.
Is it working correctly when minification or compression is completely disabled? Please try to disable the WP Rocket plugin temporarily, remove the browser cache, then test it again.
Best regards,
IsmaelHi,
We have not tested this on a multisite installation, but it should work fine as long as the theme is active. Do you have a multisite installation to test this with?
Best regards,
IsmaelHi,
is there a way where both can work together?
This may not be possible because when the responsive image option is enabled, WP will automatically select the appropriate size based on the current screen resolution instead of the selected thumbnail. Did you refresh the site or purge the cache before regenerating the images? Please make sure that the site is using the latest version of the theme, 4.7.6.4.
Would you mind providing the WP and FTP login details again so that we could test it properly?
Best regards,
IsmaelHi,
Sorry for the delay. Yes, please create a new thread or ticket and post the FTP details in the private field along with the dashboard account. We will close this one for now.
Best regards,
IsmaelFebruary 2, 2021 at 10:25 am in reply to: Homepage element not scaling properly with iPhones #1277034Hi,
Sorry for the delay. Looks like css and js files are currently minified or compressed. Have you tried disabling that option temporarily? You may also need to disable the cache plugin while testing the site.
Usually, errors on iOS also occurs on older versions of IE but this is not what is happening in this case — the site looks fine even on older version of IE.
Screenshot of the site on IE: https://imgur.com/Wy5KAzr
Best regards,
IsmaelHey Susanne,
Thank you for the inquiry.
There is no option for that in theme out of the box, but you might be able to use the Portfolio Grid element to show specific portfolio items from a particular category. The gallery or slider elements in the Advance Layout Builder does not have a category option by default.
Best regards,
IsmaelHey edavies34,
Thank you for the inquiry.
It is not working correctly when added inside a builder because of the input tags. You may need to create a custom shortcode for the form and use the shortcode inside a text or code block instead of directly embedding the code.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHey Taryn,
Thank you for the inquiry.
You may need to use the following filter in the functions.php file to enable shortcodes that were added outside the Advance Layout Builder (ALB).
function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake ) { return true; } add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
Let us know if that helps.
Best regards,
IsmaelFebruary 1, 2021 at 2:11 pm in reply to: Shortcode problem – It displays outside the place of placement #1276820Hey creativeopole,
Thank you for the inquiry.
Are you sure the plugin URL above is correct? It just redirects to the plugin search page with the keyword “garden-product-checker”.
Sadly, we do not provide support for third party plugins as stated on our support policy. You may need to contact the plugin developers for additional assistance.
Best regards,
IsmaelHey schwabino,
Thank you for the inquiry.
This is not possible due to the browser policy. Only muted videos are allowed to play automatically on page load. Please check the following article for more info about the autoplay policy.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
The user has added the site to their home screen on mobile or installed the PWA on desktop.
Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.Best regards,
IsmaelFebruary 1, 2021 at 2:04 pm in reply to: Portfolio Masonry Grid when "Overwrite Portfolio Link setting" is used. #1276817Hey kaylesimon,
Thank you for the inquiry.
There is a way to set the post navigation to display only items that belong in the same category using the avia_post_nav_entries filter. Just make sure that the items that you want to be excluded are not in the same category as the others.
function avia_post_nav_entries_mod($entries, $settings) { if($settings['type'] == 'portfolio') { $settings['same_category'] = true; } return $entries; } add_filter( 'avia_post_nav_entries', 'avia_post_nav_entries_mod', 10, 2);
Best regards,
IsmaelHey Ralf,
Thank you for the inquiry.
Try to use this css code to fix the alignment of span tags within the post navigation.
.avia-post-nav .entry-info span { display: inline; vertical-align: middle; } .avia-post-nav .entry-title, .avia-post-nav .entry-image { display: table-cell !important; }
And please make sure that all html tags in the title field are closed properly because they could break the layout of the navigation. Please check one of the product items with unclosed html tag. (see private field)
Best regards,
IsmaelHey Ralf,
Thank you for the inquiry.
Try to use this css code to fix the alignment of span tags within the post navigation.
.avia-post-nav .entry-info span { display: inline; vertical-align: middle; } .avia-post-nav .entry-title, .avia-post-nav .entry-image { display: table-cell !important; }
And please make sure that all html tags in the title field are closed properly because they could break the layout of the navigation. Please check one of the product items with unclosed html tag. (see private field)
Best regards,
IsmaelHey Mark,
Thank you for the inquiry.
You have to set the video as background of a Color Section element or insert it as one of the item in a slider element if you want to create a full width background video. Using a video element in this particular case will not work because it inherits the width of the main container.
Best regards,
IsmaelHey Asterios,
Thank you for the inquiry.
Did you enable the updated calendar designs? The single event page looks broken when this option is enabled because the default-template.php file from the theme is not loaded. You have to use this snippet in the functions.php file to make sure that the required template file is used.
// register default v2 templates if( ! function_exists( 'avia_events_template_paths_v2' ) ) { add_filter( 'tribe_template_file', 'avia_events_template_paths_v2', 10, 2 ); function avia_events_template_paths_v2( $found_file, $name ) { if( $name[0] == "default-template" && is_single() ) { $file = AVIA_EVENT_PATH . "views/" . $name[0] . '.php'; } return $found_file; } }
Best regards,
IsmaelHey RMConnection,
Thank you for the inquiry.
Have you tried setting the Enfold > Shop Options > Product gallery to use the Woocommerce 3.0 Product Gallery instead of the default one? Variation switching is not compatible with the theme’s default gallery, so you have to switch to the shop plugin’s actual product gallery.
Best regards,
IsmaelHey jannnnnneke,
Thank you for the inquiry.
The submenu item is not accessible because the header_meta container where the top menu resides is under the header_main container — the header_main is the logo and main menu container. We could adjust the stack order or the z-index property of the header_meta so that it is positioned above the header_main container but this will cause the header_meta container to cover the logo, which is supposed to overlap or overflow on both containers.
#header_meta { position: relative; z-index: 50; }
Another solution is to adjust the width of the top bar, but it does not look as good as the current design.
#header_meta { position: relative; z-index: 50; width: 80%; float: right; }
Best regards,
IsmaelHey gcibura1,
Thank you for the inquiry.
1.) Have you tried applying an alt text to the images in the Media > Library panel?
2.) Where can we see this issue? Please provide a link to the page where the stuttering occurs so that we could check it.
3.) How did you add a table to the product page? The theme does not create or add any table elements in the product templates, so it is probably from a plugin or a custom modification to the templates. Again, providing a link to the actual page should help.
Best regards,
IsmaelFebruary 1, 2021 at 5:26 am in reply to: Play YouTube video within page by clicking static image #1276685Hey CharlieTh,
Thank you for the inquiry.
The Video element in the builder has an option where you can set the video to only load after a user interaction — meaning user has to click on the preview image first before the actual video will load.
Please add a Video element, apply a preview or fallback image to it and in the Advanced > Privacy Settingspanel, set the Lazy Load videos settings to the second option (Wait for user interaction to load the video).
Best regards,
IsmaelFebruary 1, 2021 at 5:19 am in reply to: enfold masonry sort by date in the events calendar #1276681Hey ariane1001,
Sorry for the delay. Try to adjust the $eventquery so that the items are sorted by events date, so..
$eventquery = array(‘paged’=> false, ‘eventDisplay’ => ‘list’);
.. should be adjusted to.
$eventquery = array(‘paged’=> false, 'orderby'= => 'event_date', 'order' => 'ASC',);
Best regards,
IsmaelFebruary 1, 2021 at 5:10 am in reply to: ‘social profiles – zusätzliche Icons hinzufügen’ – mehrere icons- wie möglich #1276680Hi,
Thank you for the inquiry.
Do you have an svg file of the mewe icon? You should be able to upload it to fontello to create a custom icon font and upload it to the theme’s icon font manager. You can then follow the instructions above on how to assign a custom icon font to a social icon.
Best regards,
IsmaelHi,
Thank you for the info.
In the functions.php file, we just replaced the “ava_main_header” with the “ava_after_main_menu” hook to move the widget inside the proper container after the main menu. Please purge the cache or do a hard refresh before checking the page.
Best regards,
IsmaelHi,
You are very welcome! Glad we could help.
Yes, we removed the previous ava_remove_custom_slug and added it again along with the ava_add_cpt_post_names_to_main_query and avf_portfolio_cpt_args_mod functions. To avoid further confusion, you can copy the final code here.
// https://kriesi.at/support/topic/enfold-remove-portfolio-item-from-the-url/#post-1275954
Thank you for your patience.
Best regards,
IsmaelHi,
As we mentioned above, fixed elements or backgrounds are not fully supported on iOS devices and some mobile browsers. You may need to consider setting it to scroll on mobile view.
Unfortunately, we cannot do anything about it because fixed elements are not yet fully supported on those devices.
// https://caniuse.com/background-attachment
// https://stackoverflow.com/questions/21476380/background-size-on-iosBest regards,
Ismael -
AuthorPosts