Forum Replies Created
-
AuthorPosts
-
Hey 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,
IsmaelHi,
Thanks for the follow up questions.
autofill the E-mail Subject field in the “Backend” option for the Contact Form element
We are not really sure what you mean by that. You might be able to use the avf_form_subject filter to adjust the Subject field of the email. Examples:
// https://kriesi.at/support/topic/email-subject-in-contact-form/#post-1085790
// https://kriesi.at/support/topic/enfold-contact-form-debugging/#post-1164771Please open a new thread if the solution above is not what you are looking for, and create another thread regarding the lightbox issue. We will close this thread for now.
Best regards,
IsmaelHi,
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, and quite sorry for the late response.
Are you using a Youtube video? Try to upload the video in your server and host it locally. You can also use Vimeo. Unfortunately, the preview image is a default Youtube feature, so we will not be able to prevent it from appearing.
Best regards,
IsmaelAugust 10, 2021 at 9:09 am in reply to: Is there an easy way to change where video shows on productpage… #1316002Hi,
We did some changes in the product gallery in the later versions of the theme, so the modification above is no longer valid. The filter was also created before the release of the Woocommerce 3.0 gallery.
You might be able to accomplish the same thing by creating a copy of the woocommerce\templates\single-product\product-image.php template file in your child theme.
Best regards,
IsmaelAugust 10, 2021 at 8:58 am in reply to: Issues with Avia Layout Architect and PDF Print Plugins (shortcode rendering) #1315998Hey markt8_gmbh,
Thank you for the inquiry.
Looks like the plugin author added a shortcode support in the latest version of the plugin.
======
1.5.7
======
– FIX: Important: Shortcodes not executed======
1.5.6
======
– NEW: Option to disable “Render Shortcodes” (Enfold support)
https://imgur.com/a/5S315F7Unfortunately, we are not really sure how or when the plugin creates the PDF file, so we cannot offer any help in this case.
Best regards,
IsmaelHi,
Sorry for the delay. Looks like the meta data has been disabled or removed and the calendar layout has been corrected. Do you still need help with this?
Best regards,
IsmaelHi,
We added the header_size parameter in the filter above and set it to slim. This should decrease the size of the header in your contact page. Please replace the previous filter.
Best regards,
IsmaelHey Alwin,
Thank you for the inquiry.
You can add a Custom Link and use an img tag in the Navigation Label field.
// https://codex.wordpress.org/WordPress_Menu_User_Guide#Adding_Items_to_a_Menu
Best regards,
IsmaelHey Sabine,
Thank you for the inquiry.
1.) You can set the Enfold > Header > Header Layout > Header Style to the second option (Minimal). This should disable the active menu indicator.
2.) Add the following css code to move the menu text downwards.
#top #header .av-main-nav > li > a .avia-menu-text { top: 20px; position: relative; }
3.) You can use nth-child selectors to target the first and last menu items.
// https://css-tricks.com/almanac/selectors/n/nth-child/
Example:
.avia-menu li:first-child { border-top-left-radius: 20px; overflow: hidden; }
This should adjust the top left border radius of the first menu item,
Best regards,
IsmaelHey melanie_erfrischt,
Thank you for the inquiry.
Where can we see the issue? We tried to login to the site but the info above is invalid. Please check the info carefully or provide another admin account.
Best regards,
IsmaelHi,
Are you referring to the slider in the portfolio preview? It seems to be displaying the original version of the image (see private field). Please provide a screenshot so that we can see the issue.
Best regards,
Ismael -
AuthorPosts