Forum Replies Created
-
AuthorPosts
-
Hey Lin84,
Thank you for the inquiry.
The name of the blog_style should be bloglist-excerpt instead of single-big. Please replace the snippet or filter with the following code.
add_filter('avf_blog_style','avia_change_archive_blog_layout', 10, 2); function avia_change_archive_blog_layout($layout, $context){ if($context == 'archive') $layout = 'bloglist-excerpt'; return $layout; }Best regards,
IsmaelHey 7thflow,
Thank you for the inquiry.
The file that holds the sticky header script is called avia-snippet-sticky-header.js which is inside the enfold > js folder. The shrink behaviour starts around line 75.
Best regards,
IsmaelHey KeyshaunSmith,
Thank you for the inquiry.
The product gallery uploader is still available in the site when we checked. You probably disabled it accidentally from the Screen Options before.
Best regards,
IsmaelHi,
Thank you for the info.
We will forward your request to our channel for further considerations. We might add a small note directly in the element informing the users how or where they could adjust the size of the product thumbnails.
Best regards,
IsmaelHi,
Thank you for the info.
The sticky header option is disabled on mobile devices by default but we could use the following css code to enable it back.
@media only screen and (max-width: 767px) { #header { position: fixed !important; } }Best regards,
IsmaelHey holgerlietz,
Thank you for the inquiry
1.) The related posts section should display automatically when the default or classic editor is active, but not when the Advance Layout Builder (ALB) is used, which is probably why it does not show in this case. To automatically insert additional content after the default content when ALB is active, we might be able to use the avf_template_builder_content filter to render the Blog Posts shortcode.
Usage example:
2.) To remove the comment count and date, please use this css code.
.post-meta-infos .text-sep-date, .post-meta-infos .comment-container { display: none !important; }If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Thank you for the inquiry.
Have you tried updating the page after enabling the option? This should rebuild the element index and include the mailchimp element in the list of enabled elements. If updating did not work, try to remove the mailchimp element from the page, update the page, add the element back, then update the page again. This should not be necessary but it usually helps to rebuild the element index.
We could also try the solution in the following thread.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Looks like the Advance Layout Builder is not active for that page because the sections including the tab section are wrapped inside a single container, which should only happen when the builder is not used. Did you switch to the default editor?
Best regards,
IsmaelHi,
Thank you for following up.
We have added the code in the Enfold > General Styling > Quick CSS field, but we could also insert it in the child theme’s style.css file if you prefer. Please use the same css code in the other site and toggle or temporarily disable the Performance > File Compression settings afterwards. And purge the cache or remove the browser history prior to checking the page.
We will forward this thread and notify the team about the fix or the css modification, and hopefully it will get included in the next patch.
Best regards,
IsmaelHi,
Thank you for following up.
We can now access the dashboard properly and as a quick test, we activated the Google ReCAPTCHA V2 version from the Google Services panel, and also enabled it directly in the contact form element, but we are still not able to reproduce the issue. The spam protection widget shows up as expected and we are able to successfully send the form after bypassing the puzzle widget.
Please check the screenshot of the home page on Edge browser.
Screenshot: https://imgur.com/a/PyEH4rd
We did find an error from Google Analytics in the console but we don’t really think it has anything to do in this case.
Best regards,
IsmaelOctober 26, 2020 at 5:33 am in reply to: Special Heading only loaded when "All Elements" have to be loaded #1255608Hi,
Yes, hopefully this will initiate a rebuild of the index and include all of the shortcodes or elements that are actually added in the pages or across the site, without updating the pages manually as you did previously.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for info. It will surely help a lot of users. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
We do not see any errors or warnings in the page, so it is quite difficult to know why the page breaks when the shortcode is added to it. Did you try to contact the plugin developers?
And regarding the issue with the pagination, please make sure that the version of the theme is v4.7.6.5. This contains the fix described in the following thread.
// https://kriesi.at/support/topic/gallery-pagination-only-page-1-is-visible/#post-1241975
Best regards,
IsmaelHi,
Thank you for the info.
You might be able to use the avia_masonry_entries_query filter to adjust the set query of the masonry element and include additional categories that are not selected in the editor.
Usage examples of the filter:
// https://kriesi.at/support/topic/display-pictures-by-number-order/#post-1221028
// https://kriesi.at/support/topic/out-of-stock-products-showing-up-in-search/#post-1188782
// https://kriesi.at/support/topic/show-arrows-in-easy-slider-and-full-screen-slider-but-not-dot-things/#post-1149381The selected terms or categories are defined in the tax_query.
Best regards,
IsmaelOctober 26, 2020 at 5:07 am in reply to: Adjust height of full width slider and automatically fit video to container size #1255603Hi,
We would like to set the video to always inherit the height (not size) of the container (
This will surely create black bars within the slider, or on both sides of the video because the aspect ratio of the video is 16:9, so the video is wider than it is taller. Making it overflow to the left and right means we have to distort or stretch the video because the slider container is also wider compare to its own height. Again, your best option is to set the Video Size settings to the second option so that the video overflows outside the background positioning area while maintaining its aspect ratio.
Best regards,
IsmaelHi,
Thank you for the update.
The iPad Pro device is wider and has a much bigger screen resolution compare to non-Pro tablets, so the columns will display as they do on desktop view. To make the columns stack or make them full width on this device, we have to use the following css code.
@media only screen and (max-width: 1366px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } }Best regards,
IsmaelHi,
Thank you for the clarification.
We found out that the shadow or border pseudo container covers the actual content of the flipbox, preventing the links from working correctly. We could use this css code to adjust the stack order of the border container so that it is positioned behind the actual content instead of in front of it.
.avia-icongrid-borders-all li .avia-icongrid-wrapper::after, .avia-icongrid-borders-between li .avia-icongrid-wrapper::after { z-index: -1; }You may need to toggle or temporarily disable the Performance > File Compression settings after adding the code.
Best regards,
IsmaelHi,
@Vasilis: Thank you for the inquiry. Please open or create a new thread and post the necessary details in the private field so that we could check the site properly.
Best regards,
IsmaelHi,
Thank you for the info.
We tried logging in to the dashboard but the user account above seems to be incorrect. Please check the info carefully so that we could check the issue further.
Best regards,
IsmaelHi,
What happens when you replace outline with the border property? This should create lines around the text when focused.
Best regards,
IsmaelHi,
@sthubertus & @Blatze: Have you tried enabling the Google ReCAPTCHA option instead of using the default captcha? This should help prevent spams and unwanted emails. You could also install a security plugin such as WordFence to further enhance the site security.Best regards,
IsmaelOctober 24, 2020 at 6:02 am in reply to: How to deal with custom post type and a relative custom archive page layout #1255375Hi,
Thank you for creating the staging site.
In the functions.php file, we edited the avf_blog_style filter and replaced the is_post_type_archive function with is_tax to check if the page is the tipologie_progetti taxonomy archive page, or if it is showing posts from the said taxonomy. You may need to use additional is_tax function if you are planning to add more taxonomies in the future.
Best regards,
IsmaelOctober 24, 2020 at 5:23 am in reply to: Yoast not adding page number to home pagination title #1255369Hi,
Thank you for the update.
We might have to access the file server in order to test this further. Please post the FTP details in the private field and provide the exact directory of the WordPress installation.
Best regards,
IsmaelOctober 24, 2020 at 5:21 am in reply to: Added PHP Functions for Autoplay Video and experience two bugs now: Please help #1255368Hi,
All of the videos in the page are playing automatically on our end using Firefox on Windows 10. Where are you testing the site?
Best regards,
IsmaelOctober 24, 2020 at 5:14 am in reply to: Hide play button on video elements that show while video is loading for autoplay #1255367Hi,
Thank you for the info.
For the overlay button, please use this css code instead.
.mejs-overlay.mejs-layer.mejs-overlay-play { display: none !important; }Best regards,
IsmaelOctober 24, 2020 at 5:10 am in reply to: Special Heading only loaded when "All Elements" have to be loaded #1255366Hey!
Thank you for the info.
According to one of our developers, editing the config-templatebuilder\avia-template-builder\php\element-manager.class.php — exec_version_update() function will force the theme to rebuild the element index. We need to edit line 19..
const VERSION = '1.0.1';.. and replace the value of the VERSION constant with 1.0.1.1.
Cheers!
IsmaelOctober 22, 2020 at 11:41 am in reply to: Color Section for Elements – Please include a Set of "Branded colors" #1254940Hi,
UPDATE: Looks like this is possible with the default WP color picker using the palletes option, which the theme is also using.
// http://automattic.github.io/Iris/
Best regards,
IsmaelOctober 22, 2020 at 11:35 am in reply to: Color Section for Elements – Please include a Set of "Branded colors" #1254937Hey S.,
We are not really sure if this is possible because by default it is not available in the plugin that the theme is using to create the color picker. We will forward the request to our channel for further consideration.
This is the color picker that the theme is currently using.
// https://www.eyecon.ro/colorpicker/#about
Best regards,
IsmaelOctober 22, 2020 at 7:54 am in reply to: Different positions for Header logo and transparency logo: Please help #1254873Hi,
Thank you for the update.
We could use the following css code to hide the white logo on scroll and only display it when the other logo is not visible.
#media_image-2 { display: none; } .av_header_transparency #media_image-2 { display: block; }Best regards,
IsmaelHi,
Thank you for the info.
STYLING
Background Attachment: Fixed
Background Image Position: Center Center
Background Repeat: SCALE TO FITThe Styling > Background Image > Gentag baggrund settings of the section with the clock image is set to Stretch to fit, not Scale to fit. You have to set it to Scale to Fit if you want the whole image to be visible, but as we mentioned previously, this might create spaces within the container, or around the background image.
Best regards,
Ismael -
AuthorPosts
