Forum Replies Created
-
AuthorPosts
-
May 2, 2022 at 5:26 am in reply to: ERROR: Call to undefined function avia_wc_clear_catalog_ordering_args_filters() #1350146
Hi,
Thank you for the update.
Is there a staging version of the site? Have you tried to actually activate the latest version of the theme instead of checking the live preview?
Best regards,
IsmaelHi,
We reverted the config.php file to its default state and adjusted the code in the functions.php file. The pagination is now displaying correctly in the custom pages and it is no longer duplicated in the category pages but the pagination only works when we removed the prdctfltr parameter from the products shortcode.
This is the updated code in the functions.php file.
add_action( 'wp', function() { if( ! is_product_category() ) { //add woo pagination back on custom pages if( is_page( array(18795, 18804, 18807, 18801, 18798, 18791, 18793, 18788, 21824) ) ) { add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 ); } } }, 999);We created a test page without the prdctfltr parameter and as you will see, the pagination is working correctly when the parameter is removed. (see private field)
Best regards,
IsmaelHey schweg33,
Thank you for the inquiry.
Would you like the ticker to slide from left to right instead of vice versa? There might be an option in the plugin that can handle this. Have you tried adjusting the plugin shortcode?
Best regards,
IsmaelHi,
Thank you for the update.
We may need to test this modification further. Please post the WP and FTP details in the private field, and make sure that the theme is updated to version 4.9.2.1.
Best regards,
IsmaelHi,
Just to clarify, are you saying that this is an incompatibility of the theme and WPML?
Did you modify the language switcher? This is probably an issue with one of the theme scripts, which builds the mobile navigation based on the default menu. Please post the site details in the private field so that we can inspect the theme options and check the issue further.
Best regards,
IsmaelHi,
We adjusted the query a bit.
if ('portfolio' === get_post_type()) { $sort = "ORDER BY p.menu_order $order LIMIT 1"; }And added this code to enable the post navigation on pages or portfolios with full width elements.
function avf_post_nav_settings_mod( array $settings ){ $settings['is_fullwidth'] = false; return $settings; } add_filter( 'avf_post_nav_settings', 'avf_post_nav_settings_mod', 10, 1 );Best regards,
IsmaelHey Jorge,
Thank you for the inquiry.
This is the official documentation for that specific function containing code examples.
// https://www.php.net/manual/en/function.setcookie.php
What are you trying to do with it?
Best regards,
IsmaelHi,
The video loads fine when we deactivate all plugins, except for the ones you mentioned above, and when we disabled the usercentrics script in the functions.php file. We kept the plugins and scripts temporarily disabled so that you can see the result. Please make sure to purge the cache and remove the browser history.
This is a screenshot of the page containing the video: https://1drv.ms/u/s!AjjTfXSRbKTvwGJ3atJFYLh7bIuR?e=JC2qTO
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for your patience.
The Mailchimp Signup element only supports basic form fields such as text and dropdowns at the moment. Make sure that the message field is a text element. You should see this notice in the element editor.
Please note: This element currently only supports basic list subscription with basic form fields (text and dropdowns). Please let us know if you would like to see more advanced features.
Best regards,
IsmaelHi,
Thank you for the clarification.
Try to use this css code to remove the box shadow and borders of the AJAX search container.
#top .avia-search-tooltip { box-shadow: none; border: none; }Again, toggling the file compression settings and purging the cache might be necessary.
Best regards,
IsmaelHi,
Glad to know that the modifications are working. For the category and archives pages, please try to add this code in the functions.php file to enable the featured images.
add_filter('avf_blog_style','avf_blog_style_mod', 10, 2); function avf_blog_style_mod($layout, $context){ if($context == 'archive') $layout = 'single-big'; return $layout; }The functions.php file in the child theme doesn’t exist at the moment, so we were not able to add the filter.
Best regards,
IsmaelHey graficaN3,
Thank you for the inquiry.
Where did you get the custom font? Please note that only Google Fonts are allowed in the Custom Font Manager option.
Best regards,
IsmaelHi,
Thank you for the update.
You can adjust the size of the logo with this css code.
.responsive .logo img { margin: 0; min-height: 200px; }Make sure to place it within the css media query that we created above. You can also adjust its vertical position by adjusting the value of the top property in the css rule that we suggested above.
div .logo { position: absolute; top: 80px; }Best regards,
IsmaelHey FamalcoGroup,
Thank you for the inquiry.
Are you trying to adjust the style of the checkbox? Where can we check the issue? Please post the page URL in the private field so that we can inspect the element.
Best regards,
IsmaelHey FamalcoGroup,
Thank you for the inquiry.
but for some reason I am not able to see this font in Slider Revolution.
Please note that the theme and the slider revolution plugin are not actually connected in a lot of ways, and they have their own separate settings. You may need to upload the custom font directly in the slider revolution panel. Please check this documentation for more info.
// https://www.sliderrevolution.com/faq/use-your-own-fonts/
Best regards,
IsmaelHey icedevelopment,
Thank you for the inquiry.
You can disallow URLs with query parameters in your robot.txt file.
Example:
Disallow: /*?avia_extended_shop_select=*&product_order=*&product_sort=*If you haven’t created a robot.txt file before, please check this documentation.
// https://developers.google.com/search/docs/advanced/robots/intro
Best regards,
IsmaelApril 28, 2022 at 5:45 am in reply to: Accordion Toggle, minimal setting, the plus sign .hor_icon isn't showing #1349730Hi,
The toggles look the same as in the screenshot. Let us know if you need more help with this.
Best regards,
IsmaelHey DUALWERK,
Thank you for the inquiry.
You can use this code in the functions.php file to disable all theme modifications for the events calendar plugin.
add_theme_support( 'deactivate_tribe_events_calendar' );This will revert the events template to default, which may look a bit different from the default theme styles and layouts.
Best regards,
IsmaelHey Akhurst,
Thank you for the inquiry.
You can disable the Page Sidebar navigation option in the Enfold > Sidebar Settings panel.
Best regards,
IsmaelHey satucker,
Thank you for the inquiry.
Did you place the API key in the Enfold > Google Services > Google Maps API field? Please provide the API key in the designated field, then click the Check API Key button or just leave it as is so that we can validate it.
Best regards,
IsmaelHey bhardy2022,
Thank you for the inquiry.
You can use this css code to adjust the style of the scroll-to top link.
#scroll-top-link { position: fixed; border-radius: 2px; height: 60px; width: 60px; line-height: 60px; text-decoration: none; text-align: center; opacity: 0; right: 50px; bottom: 50px; z-index: 1030; visibility: hidden; font-weight: bold; font-size: 30px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHey len,
Please continue on this thread: https://kriesi.at/support/?post_type=topic&p=1349710
Best regards,
IsmaelHey len,
Thank you for the inquiry.
What do you mean by “Depreciated errors”? Would you mind providing a screenshot of the actual error? Since the site is using a very old version of the theme, you will have to manually update the theme to version 4.9.2.1 via FTP. Please check the documentation below for more info about FTP update.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
After the update, please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache.
Best regards,
IsmaelHi,
UPDATE: You should also edit the video.js file, look for this code around line 88..
container.html( video );.. and replace it with:
container.append( video ); container.find('.av-video-tmpl').remove();Best regards,
IsmaelHi,
Thank you for the update.
It seems to work better if we use a separate JSON-LD markup for the video element. In the video.php file, look for this block of code around line 704..
$output = ''; $output .= $style_tag; $output .= " <div {$meta['custom_el_id']} class='{$container_class}' {$markup_video} data-original_url='{$src}'>"; $output .= $output_html; $output .= '</div>';.., then replace it with this one.
$json = ' <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "VideoObject", "name": "Another video object.", "thumbnailUrl": [ "https://example.com/photos/1x1/photo.jpg", "https://example.com/photos/4x3/photo.jpg", "https://example.com/photos/16x9/photo.jpg" ], "uploadDate": "2016-03-31T08:00:00+08:00", "duration": "PT1M54S", "contentUrl": "https://www.example.com/video/123/file.mp4", "embedUrl": "https://www.example.com/embed/123", "interactionStatistic": { "@type": "InteractionCounter", "interactionType": { "@type": "WatchAction" }, "userInteractionCount": 5647018 }, "regionsAllowed": "US,NL" } </script>'; $output = ''; $output .= $style_tag; $output .= " <div {$meta['custom_el_id']} class='{$container_class}' {$markup_video} data-original_url='{$src}'>"; $output .= $json; $output .= $output_html; $output .= '</div>';The validator should be able to recognize the video element as a separate object as shown in the screenshot below.
// https://1drv.ms/u/s!AjjTfXSRbKTvwGG1fhkWkkzFci3X?e=x3G9bb
This is based on the following documentation.
// https://developers.google.com/search/docs/advanced/structured-data/video
Best regards,
IsmaelApril 27, 2022 at 11:15 am in reply to: How to match Author page layout to Blog page layout #1349653Hi,
Thank you for the info.
We modified the includes > loop-author.php file and added this code around line 38.
$size = "entry_with_sidebar";This is how the featured images in the author page looks now.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvwGCmlntrvDGO1gqp?e=mnKkBA
Best regards,
IsmaelApril 27, 2022 at 8:48 am in reply to: Accordion Toggle, minimal setting, the plus sign .hor_icon isn't showing #1349635Hi,
The toggle icon seems to be rendering correctly now. Did you find the cause of the issue?
Best regards,
IsmaelApril 27, 2022 at 8:44 am in reply to: Accordion Anchor link doesn't load down near open toggle #1349634Hi,
Are you telling me no one on your team has made any changes?
As far as I know, no one else in the team has made any changes to the site, so it might have been a temporary glitch or an issue with something else which is no longer present. Please let us know if the issue occurs again.
Best regards,
IsmaelHey InSilentio,
Thank you for the inquiry.
You can create a custom page using the Advance Layout Builder (ALB) and do a temporary redirect from the subpage to the custom maintenance page. These plugins should help with the redirect.
// https://wordpress.org/plugins/eps-301-redirects/
// https://wordpress.org/plugins/redirection/Best regards,
IsmaelHey Andreas,
Thank you for the inquiry.
The background image of the color section is responding correctly when we checked the site on an iPad Air and iPad Mini emulation. Please check the screenshot in the private field.
Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot.
Best regards,
Ismael -
AuthorPosts
