Forum Replies Created
-
AuthorPosts
-
September 16, 2020 at 4:47 am in reply to: How to set a calculated date to filter blog posts #1246146
Hi,
If you click on the category (“tipo 1” or “tipo 2”) in page id= 204 you will see what I mean in messing up the archive. If I cancel the function above, then the archive page works again!
Since the archive pages are also set to use the grid layout, we have to add a check or condition in the filter above so that we don’t alter the default archive query. We could use the is_archive function like so..
if( is_archive() ) return $query;This will return the default post grid query on archive pages. Hope that helps.
Best regards,
IsmaelHi,
The css files are currently compressed or minified. Please temporarily disable or toggle the Performance > File Compression settings, then check the page again. Make sure to remove the browser history and purge the cache.
Best regards,
IsmaelSeptember 15, 2020 at 1:09 pm in reply to: Change Woocommerce product sidebar to right side #1246029Hey Dino0103,
Thank you for the inquiry.
Would you like to adjust the default location of the product sidebar? If you want to move the sidebar from the bottom of the product image to the right of the product content, please use the snippets from the following thread.
// https://kriesi.at/support/topic/shop-sidebar-to-right-side/#post-1245585
Best regards,
IsmaelSeptember 15, 2020 at 1:03 pm in reply to: Icon List Items: Header Tags not rendered in output and TOC #1246028Hi,
@TusBolsosyMochilas: Please open a new thread and post the site details in the private field. We’ll continue there.Best regards,
IsmaelSeptember 15, 2020 at 1:02 pm in reply to: Icon List Items: Header Tags not rendered in output and TOC #1246027Hi,
@AlexR: The patch is going to be included in the next theme update. For now, we have to overwrite /config-templatebuilder/avia-shortcodes/iconlist/iconlist.php file using the content of the link in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
We could not reproduce the issue on a monitor with 1920x1020px screen resolution. What is the screen resolution of your monitor? Are you zooming the browser or page in and out?
Best regards,
IsmaelHi,
Thank you for the update.
The video quality is automatically set based on the network connection speed and the size of the video. Previously, we could use the vq or hd parameter to always play videos in the highest resolution but these parameters have been removed in the latest version of the video player.
// https://developers.google.com/youtube/player_parameters#march-29,-2012
Best regards,
IsmaelSeptember 15, 2020 at 12:42 pm in reply to: Non-indexable pages with high relevance – Canonical URL #1246019Hi,
Yes, that was probably what he did. Also, make sure to select the page as Frontpage in the Enfold > Theme Options panel. Did you create a duplicate of the home page before?
Best regards,
IsmaelHi,
Thank you for the update.
Could you give us a link to the store locator page? The css code above should have worked throughout the site. Please try to remove the browser history and make sure to purge the cache.
Best regards,
IsmaelSeptember 15, 2020 at 6:05 am in reply to: Recaptcha not working on zorbas.dk and se! [URGENT] #1245932Hi,
Sorry for the delay. We can now access the file server but the login accounts above for the dashboard is no longer valid or working. Did you remove those accounts? Please create a new account so that we could check the WP dashboard.
Best regards,
IsmaelSeptember 15, 2020 at 5:43 am in reply to: Section background images not displaying correctly on mobile devices #1245922Hi,
Thank you for the update
We tried to check the site using the login account above but the info seems to be invalid. Did you change the htaccess authentication info? Would you mind providing a screenshot of the site on iPad view?
Best regards,
IsmaelSeptember 15, 2020 at 5:38 am in reply to: Contact info at the top of the Tablet and Mobile GUI #1245921Hey Stephen,
Thank you for the inquiry.
Social icons in the top bar are hidden on tablet devices by default but we could use the following css code to display it back.
@media only screen and (max-width: 767px) { #top .av_header_transparency #header_meta { background: blue; box-shadow: none; border-bottom: 1px solid rgba(255,255,255,0.25); } .responsive.html_mobile_menu_tablet #top #header #header_meta .social_bookmarks { display: block; } }We also changed the background color of the top bar from white to blue to make the white icons visible.
Best regards,
IsmaelSeptember 15, 2020 at 5:33 am in reply to: WooCommerce filters not showing on Enfold pages in Widget are #1245918Hey kirillko,
Thank you for the inquiry.
Did you add the widget using the Advance Layout Builder? Please note that the filter widget will only work on the default shop and product category pages. It’s not going to work on pages with the Product Grid element.
Best regards,
IsmaelHey!
Thank you for the update.
According to our developers, the name of the font set is based on the content of the svg file, so only one set can be uploaded if the collection is from flaticon because there seems to be no way of supplying a unique name for each set.
Another workaround is to download the monocolored flaticon icons as svg, go to fontello.com and upload the svg as custom icons. Before downloading the webfonts, make sure to use a different font name for it.
Best regards,
IsmaelHey MediaMix1,
Thank you for the inquiry.
We found a few errors in the console related to the script above. Please look for this line..
tab = $('.av-section-tab-title[href='+ hash +']');.. and replace it with:
tab = $('.av-section-tab-title[href="'+ hash +'"]');Please don’t forget to purge the cache and remove the browser history before checking the page.
Best regards,
IsmaelHi,
@Hokuspocus: Are you requesting for a social media links/icons widget?
Best regards,
IsmaelHi,
Thank you for the update.
To display only sub categories, we could check if the parent property of the term or category is not equal to 0, which means that it has a parent term or category.
Please replace the avf_masonry_loop_prepare filter with this one.
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="ww-masonry-author">' . get_the_author() . '</div>'; $output .= '<div class="ww-masonry-cat">'; if ( ! empty( $categories ) ) { foreach( $categories as $category ) { if($category->parent != 0) { $output .= '<span alt="' . esc_attr( sprintf( __( 'View all posts in %s', 'textdomain' ), $category->name ) ) . '">' . esc_html( $category->name ) . '</span>' . $separator; } } } $output .= '</div>'; $key['text_before'] .= trim( $output, $separator ); return $key; }Best regards,
IsmaelHi,
Thank you for the update.
Have you tried adding the account icon or image as widget? We can then declare a css media query so that the icon is only visible on mobile view. Please check the following documentation for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Aside from using a widget, we could also use the ava_main_header hook in the functions.php file to insert additional content or element inside the main header container.
Example:
add_action('ava_main_header', function() { echo "account icon"; }, 10, 1);Best regards,
IsmaelSeptember 14, 2020 at 12:04 pm in reply to: Video player has grey overlay on mobile devices & doesn't appear to autoplay. #1245725Hey nestormakhno,
Thank you for the inquiry.
Background videos are disabled on mobile devices by default which is why a fallback image option is available in the element editor. You can either apply a fallback image or hide the section on mobile view and display an embedded video element instead.
Best regards,
IsmaelSeptember 14, 2020 at 12:03 pm in reply to: Video player has grey overlay on mobile devices & doesn't appear to autoplay. #1245724Hey nestormakhno,
Thank you for the inquiry.
Background videos are disabled on mobile devices by default which is why a fallback image option is available in the element editor. You can either apply a fallback image or hide the section on mobile view and display an embedded video element instead.
Best regards,
IsmaelHi,
Thank you for the update. This is the image in the other site that is used as header background. You have to create the same image, upload it in the media library and apply it as the header background. (see private field)
Best regards,
IsmaelHi,
Thank you for the update.
We are not yet sure why the the images have different sizes but we noticed that the site contains a very old version of the theme, v4.4.1. You have to download the latest version v4.7.6.3 from your Themeforest account and update the theme manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
After the update, try to install the following plugin to regenerate the thumbnails.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
Thank you for the clarification.
To adjust the width of the right sidebar, please use this css code.
.responsive #top .sidebar.sidebar_right { width: 300px; max-width: 300px; }Best regards,
IsmaelSeptember 14, 2020 at 4:52 am in reply to: Embed Facebook Video in Blog Post – Images not Showing #1245616Hi,
Thank you for the update.
We can remove or adjust the space below the facebook videos by adjusting the height of the iframe. The height of the iframes is set to 418px by default.
.home #av_section_1 .entry-content iframe { height: 200px; }And to remove the gray lines, please use this css code.
.home #av_section_1 .entry-content .post_delimiter { display: none !important; }We might also have to apply a unique ID or class name to the sections.
// https://kriesi.at/documentation/enfold/add-custom-css/
Best regards,
IsmaelSeptember 14, 2020 at 4:39 am in reply to: How to set a calculated date to filter blog posts #1245608Hi,
What is the value of the ACF or custom field? It might not be necessary to use the add_date_query function or create a new query because the query including the date_query is already available when we use the avia_post_slide_query filter. We just have to do the necessary adjustments for the date_query array based on the value of the ACF field.
Usage example of the filter can be found here:
// https://kriesi.at/support/topic/custom-archive-php/#post-849668
// https://kriesi.at/support/topic/randomize-post-slider-but/#post-1139638
// https://kriesi.at/support/topic/portfolio-items-showing-in-blog-posts-content-element-on-blog-page/#post-1200512Best regards,
IsmaelHi,
We still could not reproduce the issue on our end. It does jump a bit but not to the bottom of the page, and only to focus the toggle or accordion content. We did the test on Chrome Windows 10.
Thank you for your patience.
Best regards,
IsmaelSeptember 14, 2020 at 4:11 am in reply to: How to load js & css only for shortcodes that are present on the page? #1245592Hi,
Did you enable the File Compression settings, or install cache and minification plugins? You might have to disable the cache and compression options first. If it still doesn’t work after disabling the options or plugins, then you can proceed by using the dequeue or deregister functions to manually disable the scripts or stylesheets when they are not needed.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
From what I understand autop and texturize should only apply on the frontend. So the tags should not be showing in the Classic Editor in Text view?
Are you talking about the TinyMCE editor in the Translate Posts panel? This editor is created by the plugin, so it has its own configuration which is not controlled or can be influenced by the theme.
If the filter above is not working for the translation editor, try this plugin to toggle the wpautop settings of the text editor.
// https://wordpress.org/plugins/toggle-wpautop/
If the plugin doesn’t work, use the tiny_mce_before_init filter to adjust the options of the tinymce or ask the plugin author to disable wpautop for the translation editor manually.
Best regards,
IsmaelSeptember 14, 2020 at 3:44 am in reply to: Layer Slider Sliders are not showing in String Translation #1245588Hi,
Thank you for the update.
Does it work correctly, or do you see the text from old sliders in the string translations when the Slider Markup Caching option of the layer slider is disabled? The option is located in the Layer Slider > Options > Advanced panel. Please try to disable the option temporarily, then look for the text in the string translations editor again.
Best regards,
IsmaelHi!
Sorry for the delay. We are able to reproduce the issue on our installation, but we are not yet sure why it overrides the previous icon sets. You might have to upload all flaticon icons in a single collection temporarily until we found the issue.
We’ll forward the issue to our channel. Thank you for your patience.
Cheers!
Ismael -
AuthorPosts
