Forum Replies Created
-
AuthorPosts
-
Hey AktivApo,
Thank you for the inquiry.
It seems to be displaying the custom style of the columns instead of the post excerpt. Where can we the issue? Please post the site details in the private field including an admin account. We would like to check the page and the theme options.
Best regards,
IsmaelHi,
You are very welcome! Please feel free to open another thread if you require more assistance. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
No problem. Glad we could be of help. Please let us know if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the clarification.
That option is not available, unfortunately. You might have to use a plugin or create a custom toggle that hides/shows a different set of table when clicked.
Example:
// https://codepen.io/kijanmaharjan/pen/dMmdej
// https://fatcatapps.com/knowledge-base/pricing-table-toggle/Best regards,
IsmaelHi,
Thank you for the inquiry.
The button displays back when we disable the mtn_setup_theme function in the child theme’s functions.php file. The function limits the ALE to the mtn-faq post type. You may need to use the avf_alb_supported_post_types filter instead.
Examples:
// https://kriesi.at/support/topic/custom-post-type-not-displaying-correctly/#post-1299723
// https://kriesi.at/support/topic/pods-enfold-advanced-layout-editor/#post-1281976Best regards,
IsmaelHi,
Great! Glad that you managed to come up with a working solution. Let us know in another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Good to know. Please feel free to open another thread if you encounter any issues, or if you require a bit of assistance with the theme. We will close this for now.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the info.
The look of the button looks different because the lightbox container is rendered outside the main container, so the default css selectors and styles that the theme is using is not applying to the contact form. You will have to adjust the style of the element (buttons, fields etc) manually.
Best regards,
IsmaelHi,
We are not really sure if it is possible to set thumbnails for Vimeo videos and show it before the player starts, but we have found the following articles, which might help.
// https://vimeo.com/blog/post/video-thumbnail-ultimate-guide/
// https://vimeo.com/blog/post/turn-any-video-frame-into-a-thumbnail/Best regards,
IsmaelHi,
@wdi: You have to update the theme from version 4.1 to 4.8.6. The update should help fix the issue with the video. You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after the update.
Best regards,
IsmaelHi,
Alright. Please do not hesitate to open another thread should you need anything else.
Have a nice day.
Best regards,
IsmaelAugust 12, 2021 at 6:17 am in reply to: Fixing incorrect behaviour of masonry sorting function #1316362Hey Marc,
Thank you for the inquiry.
It seems to be working correctly on our end — checked the page on Chrome. Which browser are you using? Please provide a screencast of the issue if possible.
Best regards,
IsmaelHey Annemarie,
Glad to know that the issue is fixed. Let us close this thread now.
Have a nice day.
Best regards,
IsmaelHey codingharu,
Thank you for the inquiry.
Would you mind explaining the issue a bit? Is this thread a continuation of a previous one? Please provide a link to the previous thread so that we could check it.
Best regards,
IsmaelAugust 11, 2021 at 8:19 am in reply to: How to change the opacity of masonry lightbox background overlay? #1316212Hey solf,
Thank you for the inquiry.
You can use the following css code to set the opacity of the lightbox container background.
.mfp-zoom-in.mfp-ready.mfp-bg, .mfp-zoom-in.mfp-ready .mfp-preloader { opacity: 0; }Please toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHey koomo,
Thank you for the inquiry.
Did you enable the spam protection or the Google ReCAPTCHA option for the contact form? The button is not clickable because it is waiting for the security or the ReCAPTCHA widget to be validated. Please post the shortcode in the private field so that we could inspect it.
You may need to disable the ReCAPTCHA option for this particular contact form.
Best regards,
IsmaelHi,
Thank you for the clarification.
You can use the following filter to change the default size of the lightbox thumbnail in the slider.
add_filter("avf_alb_lightbox_image_size", function($size, $context) { if($context = "avia_slideshow") { $size = "full"; } return $size; }, 10, 2);The filter is declared in the enfold/config-templatebuilder/avia-shortcodes/av-helper-slideshow.php file.
Best regards,
IsmaelAugust 11, 2021 at 7:28 am in reply to: Fullwidth slider, set min height for background video? #1316205Hi,
Alright. Thank you for your patience. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelAugust 11, 2021 at 7:27 am in reply to: How do I update the theme using wordpress dashboard? #1316204Hi,
Unfortunately, we are not really sure why this is happening on some installations. It might be due to server configurations and/or restrictions. Please try to contact your hosting provider for additional assistance.
You should also try and delete database transients.
// https://www.wpbeginner.com/plugins/how-to-manage-and-delete-transients-in-wordpress/
If it does not help, you may need to continue with the manual update. This thread should help.
// https://kriesi.at/support/topic/updates-not-working-2/#post-1296859
Best regards,
IsmaelAugust 11, 2021 at 5:26 am in reply to: 4.8.2 onwards Woocommerce main shop image is being lazy loaded #1316178Hi!
I see. Sorry for the confusion. Yes, you might be right. Unfortunately, I am not sure if it is possible to detect above the fold content using PHP. You might be able to unset the loading attribute using the following filter.
add_filter( 'wp_get_attachment_image_attributes', function( $attr, $attachment, $size ) { if ( $size === 'shop_single' ) { unset( $attr['loading'] ); } return $attr; } );// https://developer.wordpress.org/reference/hooks/wp_get_attachment_image_attributes/
You can create the logic based on the $attachment info, or check if the $size is equal to “shop_single”.
Regards,
IsmaelHey Tobias777G,
Thank you for the inquiry.
The font size is different because of this css rule or code.
#top #wrap_all #footer .flex_column p { font-size: 16px !important; }Did you add it in the Quick CSS field? You may need to adjust the code or remove it completely.
Best regards,
IsmaelHey NoraGTS,
Thank you for the inquiry.
You should be able to adjust the color and style of the active menu item in the Enfold > Advanced Styling. Edit the Main Menu Links element. Make sure to toggle the Apply only to mouse hover state and the Apply only to active state check boxes.
Best regards,
IsmaelHey wppoland,
Thank you for the inquiry.
The theme or the builder automatically wraps orphaned elements or elements that are not inside a color section or grid row elements to ensure that they are contained. You may need to wrap the hr element inside a color section and remove the default padding of that particular section, or just apply the spacing directly to the sections instead of using the hr element. The default padding comes from this css rule.
.content, .sidebar { padding-top: 50px; padding-bottom: 50px; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; min-height: 1px; z-index: 1; }Best regards,
IsmaelHi,
Sorry for the delay. We tested the filter in the our own installation and found out that it is not working because the attachment_overlay parameter is empty. We adjusted it a bit to fix the issue.
function fp_attorney_masonry_display($content, $entries) { // Custom - Define the attachment as the custom photo field $photo_attach_id = get_field('photo',$content['ID']); $content['thumb_ID'] = $photo_attach_id['ID']; $img_size = "full"; $content['attachment'] = !empty( $content['thumb_ID'] ) ? wp_get_attachment_image_src( $content['thumb_ID'], $img_size ) : ''; $content['attachment_overlay'] = $content['attachment']; return $content; } add_filter('avf_masonry_loop_prepare','fp_attorney_masonry_display', 10, 2)Best regards,
IsmaelHi,
Great! Glad we could be of help. Please do not hesitate to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelAugust 11, 2021 at 4:01 am in reply to: Sort Blog Post Element by "ACF" Advanced Custom Field #1316162Hi,
In the Custom Query Orderby settings, you can add the new option in the subtype parameter.
__('ACF Last Name', 'avia_framework' ) =>'acf_last_name')This should add a new option in the drop down labeled ACF Last Name.
The logic should be added in the avia_custom_query_extension function. You could check if the $avia_config[‘avia_custom_query_options’][‘orderby’]) variable is set to acf_last_name. If it is set, set the meta_query parameter accordingly.
Something like:
if($avia_config['avia_custom_query_options']['orderby']) == "acf_last_name") { $query["meta_query"] = array( 'relation' => 'AND', 'state_clause' => array( 'key' => 'state', 'value' => 'Wisconsin', ), 'city_clause' => array( 'key' => 'city', 'compare' => 'EXISTS', ), ); $query['orderby'] = 'city_clause'; }// https://make.wordpress.org/core/2015/03/30/query-improvements-in-wp-4-2-orderby-and-meta_query/
Best regards,
IsmaelHey holbizmetrics,
Thank you for the inquiry.
1-2.) You might have to decrease the font size of the slider title and captions because you are using the Fullscreen Slider. The slider automatically adapts to the size of the view port or the browser screen. You could also adjust the width of the caption container.
.slideshow_caption { width: 70%; }Default width is 42%.
On smaller screens, you have to use css media queries to decrease the size of the captions even more or just hide the slider completely and present the caption or info in a different way.
You can use the Element Visibility options to toggle the visibility of the slider or of any elements on different screen sizes.
Best regards,
IsmaelHey profumopuntoit,
Thank you for the inquiry.
Did you edit the tag.php file directly to add the title? You should be able to use the get_the_archive_title or the the_archive_title functions to render the actual title of the tag or category page.
// https://developer.wordpress.org/reference/functions/get_the_archive_title/
// https://developer.wordpress.org/reference/functions/the_archive_title/Or just enable the title in the Enfold > Header > Header Layout > Header Title and Breadcrumbs settings.
Best regards,
IsmaelHey orianos,
Thank you for the inquiry.
You can use the Table element from the builder. The table is set to have the Pricing Table layout or style by default. If you want to adjust the styling, go to the Styling > Table Styling toggle and set the Table Purpose accordingly.
The demo can be found in the following page.
// https://kriesi.at/themes/enfold/shortcodes/pricing-and-data-tables/
And you should find more info in the documentation.
// https://kriesi.at/documentation/enfold/table/
Best regards,
IsmaelAugust 11, 2021 at 3:28 am in reply to: issue with moving from frontend back to dashboard – timing out #1316156Hi,
When I do eventually get back into the page backend there are no options on the left hand side – only the “W” logo to click on.
This means that the block editor is set to full screen. You have to disable it from the block editor Options panel.
// https://www.wpbeginner.com/wp-tutorials/how-to-disable-fullscreen-editor-in-wordpress/
If you want to disable the block editor completely, please go to the Enfold > Theme Options panel and select the classic editor in the Select your Editor settings. This might also fix the loading issues.
Best regards,
Ismael -
AuthorPosts
