Forum Replies Created
-
AuthorPosts
-
August 6, 2021 at 10:02 am in reply to: Advanced Custom Fields Shortcode in excerpt blog post #1314788
Hi,
Are you sure that the custom field is correct? We could also use the “avf_masonry_entry_content” filter to adjust the content without editing the shortcode file directly. Try to add this code in the functions.php file.
add_filter("avf_masonry_entry_content", function($content, $entry, $atts) { return do_shortcode($content); }, 10, 3);It would also be very helpful if the shortcode in question would be automatically inserted into each new post
That should be possible but it will require modifications that are beyond the scope of support. You may need to hire a third party developer to add the feature.
Best regards,
IsmaelAugust 6, 2021 at 9:57 am in reply to: Displayed Everywhere Widgets are not displayed anymore in latest Version #1314785Hi,
No problem. Glad we could be of help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Is there a way to solve it with a function to put in functions.php that says something like: if the category name is CATX rename it with CATY?
That is not possible, unfortunately, You will have to add the modifications in the shortcode file directly, or you have to use Javascript. If you chose to use a Javascript solution, you might find this helpful.
// https://kriesi.at/support/topic/menu-position-on-header/#post-1312127
// https://kriesi.at/support/topic/4-8-2-onwards-woocommerce-main-shop-image-is-being-lazy-loaded/#post-1313773Best regards,
IsmaelHi,
Thank you for the info.
We cannot find the script in the functions.php file. Where did you add the function?
Best regards,
IsmaelHi,
Is that the password for the htaccess authentication? The site is asking for another authentication. We tried to use the login info above, including the new password, but it is still not working.
Best regards,
IsmaelAugust 6, 2021 at 9:36 am in reply to: How can I edit the "post slider" module into a "Netflix"lookalike post slider? #1314774Hi,
Thank you for the update.
Did you set the slider to have 5 columns? Try to adjust the value of the width property in the css code that we suggested above.
Best regards,
IsmaelHey Sebastian,
Thank you for the inquiry.
1.) You can choose the thumbnail size in the Styling > Grid Settings > Portfolio Grid Image Size settings, but you cannot select multiple kinds of thumbnails or image sizes.
2.) This is possible but you may need to modify the /config-templatebuilder/avia-shortcodes/portfolio/portfolio.js file around line 79.
imgParent.css({height:'auto'}).each(function(i) { var currentLink = $(this); setTimeout(function() { currentLink.animate({opacity:1},1500); }, (100 * i)); });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,
IsmaelHey gabiposch,
Thank you for the inquiry.
You can add your own custom html or elements inside a code or text block and use css code to adjust its style.
Example:
<div class="flex_column av_one_twelveth">Content here</div> <div class="flex_column av_ten_twelveth">Content here</div> <div class="flex_column av_one_twelveth">Content here</div>The css might look something like this.
.av_one_twelveth { width: 7%; } .av_ten_twelveth { width: 82%; }Best regards,
IsmaelHi,
Thank you for following up.
Are you referring to the slider images in the portfolio preview? We should be able to use the “avf_ajax_preview_image_size” filter to adjust the default thumbnail in the slider.
add_filter("avf_ajax_preview_image_size", function($size) { $size = "full"; return $size; }, 10, 1);Best regards,
IsmaelHey Jeannette,
Thank you for the inquiry.
Now that the style tag is the first child,
Have you tried to actually target the image element instead of the first div or container? Please post the site URL in the private field so that we can check the issue further.
Best regards,
IsmaelAHey Christie,
Thank you for the inquiry.
The filter above is not working because the background image is now applied using an internal style, which is generated by the get_element_styles function in the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php file. You may need to temporarily add the modification in the shortcode file instead of using the filter.
Best regards,
IsmaelAugust 5, 2021 at 9:07 am in reply to: Masonry Gallery Preloader Spining Wheel in Page Preview Mode. #1314582Hey Phet,
Thank you for the inquiry.
It might be the same issue with the loading icon that we encountered in the following thread. For some reason, the loading spinner causes the whole document to shake, or jiggle as you put it. Removing the loading icon seems to help fix the issue.
Please check the following thread.
// https://kriesi.at/support/topic/shaking-on-load-more-button-click/#post-1238460
Best regards,
IsmaelAugust 5, 2021 at 9:03 am in reply to: ENFOLD 4.8.3 + WP5.8: Import theme settings not working #1314581Hi,
Thank you for the info.
Can we have access to the site containing the version 4.5.7? We would like to export the theme settings directly from the site and test it on our own installation. We tried to re-import and re-save the theme settings in the Media > Library panel, but it is still not working. The file might be corrupted or the theme options in it are already invalid. We cannot know for sure, unfortunately.
Best regards,
IsmaelHey Greg,
Thank you for the inquiry.
How did you set it to “fixed”? The background images will revert back to “scroll” on mobile view by default. If you want to switch it back to “fixed”, try to add this css code.
.avia_mobile .avia-full-stretch { background-attachment: fixed !important; }Please do not forget to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHey iosefo,
Thank you for the inquiry.
We cannot access the site using the credentials above. Please check the info carefully.
The Modern Events Calendar plugin, unlike the Events Calendar Pro, is not fully configured in the theme, so it may require some adjustments such as template and css modifications.
Best regards,
IsmaelAugust 4, 2021 at 11:17 am in reply to: Can't accept cookie on mobile / Can't remove cookie info bar #1314338Hey maxh_muc,
Thank you for the inquiry.
Did you set the browser in your phone to accept cookies, or did you enable the local storage? In Chrome, you can do the following.
– Open the Chrome menu.
– Select Settings.
– Under Advanced, select Site settings.
– Select Allow sites to save and read cookie data.This should allow the theme to store the essential cookies and hide the message bar properly.
Best regards,
IsmaelAugust 4, 2021 at 11:13 am in reply to: Displayed Everywhere Widgets are not displayed anymore in latest Version #1314337Hi,
Thank you for the info.
The issue was caused by the avia_social_media_icons class in the child theme’s functions.php file. It is outdated. You have to copy the latest version of the class and redo the modifications.
Best regards,
IsmaelAugust 4, 2021 at 10:59 am in reply to: Advanced Custom Fields Shortcode in excerpt blog post #1314334Hi,
Thank you for the screenshots.
We may need to modify the enfold/config-templatebuilder/avia-shortcodes/av-helper-masonry.php file and adjust this code around line 562 to properly render the shortcodes.
$items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";Replace it with the following code.
$content = do_shortcode($content); $items .= "<div class='av-masonry-entry-content entry-content' {$markup}>{$content}</div>";Best regards,
IsmaelHey agiledynamicss,
Thank you for the inquiry.
There is no paginated element in the page that you posted above. Have you tried marking the issue as fixed in your console? The paginated page is already set to “follow, noindex”, so the crawlers should not mark the paginated pages as duplicate content.
You could also set a canonical URL for paginated pages.
// https://yoast.com/help/canonical-urls-in-wordpress-seo/#archives
Best regards,
IsmaelAugust 4, 2021 at 7:05 am in reply to: The Events Calendar – Layout-Problem Einzelansicht nach Update >= 5.5 #1314279Hey MargitW,
Thank you for the inquiry.
The new styles for the updated calendar designs have been included in the latest version of the theme. You have to upgrade the theme to the latest version (4.8.5) and purge all cache. You may also have to toggle or temporarily disable the Enfold > Performance > File Compression settings after the update.
Best regards,
IsmaelHi,
Thank you for the info.
You have to set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option. This should allow the videos to play automatically on page load. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after doing the changes.
Best regards,
IsmaelHi,
is there a way to tweak that so it works with the Advanced Layout Editor in the posts?
That is not possible, unfortunately. Rendering the shortcodes will break the post slider. The modification above will only work if the posts have been created using the default editor.
Best regards,
IsmaelHi,
. Now the client would like the shrunk version of the header for the contact page only,
That is what you said on your initial post. We adjusted the code a bit. It should now disable the shrinking header on the contact page.
Best regards,
IsmaelAugust 4, 2021 at 6:20 am in reply to: How can I edit the "post slider" module into a "Netflix"lookalike post slider? #1314265Hi,
Thank you for the inquiry.
You can use css media queries if you want to adjust the width of the slider entries on different screens.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .slide-entry { margin-left: 4% !important; width: 29.333333333333332% !important; clear: none !important; float: left !important; } }Unfortunately, the changes with the arrow will require modifications in theme that are beyond the scope of support. You may need to hire a freelance developer to do the modifications, or contact our partner (Codeable).
// https://kriesi.at/contact/customization
Best regards,
IsmaelHi,
@ronellenfitsch: The filter above will not prevent the document from scrolling when a tab is clicked or opened. Is that what you are trying to do? If yes, then you will have to do the modification that we suggested in the following thread.// https://kriesi.at/support/topic/faq-accordion-keeps-randomly-jumping-on-page/#post-1302789
If you have more questions, please feel free to open another thread. We will close this one for now.
Best regards,
IsmaelAugust 4, 2021 at 5:53 am in reply to: Cant find social media icons for Spotify, Apple Podcasts and Letterboxd? #1314254Hey coolicious,
Thank you for the inquiry.
It is possible to upload new icons and add new social icons in the theme. Please check the following documentation for more info on how to add a custom social icon.
And this one to add your own custom icon.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
You may need to produce an SVG file of the social media icon and convert it to an icon font. There is an icon font generator in the fontello.com site. All you need is the SVG format of the social media icon. Once you have the icon font, you can upload in the theme using the Enfold > Import/Export > Iconfont Manager.
Best regards,
IsmaelHi,
Thank you for the clarification.
Have you tried using the Tab or the Accordion element? You should be able to create a FAQ section using those elements.
What you are requesting is possible but it will require modifications that are beyond the scope of support. You may need to hire a freelance developer or contact our partner, Codeable.
// https://kriesi.at/contact/customization
If you are familiar with PHP or with programming in general, you can create a new shortcode path in the child theme and add your own custom elements to the builder.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
IsmaelHey Michael,
Thank you for your interest in the theme.
The theme Enfold is compatible with plugins such as WPML for multilanguage sites and it has its own blog features. We also provide assistance for any issues related to the theme and basic custom modifications. You will find our support policy in the following link.
// https://kriesi.at/support/register/
Additional features could be added using other extensions or with custom modifications, which may require assistance from third party developers.
Best regards,
IsmaelHey Webmaster,
Thank you for the inquiry.
We cannot seem to reproduce the issue on a browser emulation. Did you add a featured image and set the video to lazy load previously? Have you tried embedding it directly using a code or text block element?
Best regards,
IsmaelHey Max,
Thank you for the inquiry.
The portfolio item has an option where you can apply a custom link and override the default one. You can apply the video URL as custom link and so when the portfolio item is clicked, the video will popup inside a lightbox container or a modal window, instead of redirecting to the actual portfolio page.
If you want to add the video directly in the single portfolio page, just upload it in the media library and embed it in the content editor.
Best regards,
Ismael -
AuthorPosts
