Forum Replies Created
-
AuthorPosts
-
Hi,
No problem. Glad we could be of help. Regarding the pause icon, please try to add this css code in the Quick CSS field.
.av-click-overlay, .av-click-to-play-overlay, .avia_playpause_icon { display: none !important; opacity: 0 !important; }Best regards,
IsmaelMay 13, 2021 at 1:07 pm in reply to: Main menu not working properly for the first section of the page "Home" #1300137Hey krmaeo,
Thank you for the inquiry.
It works like that because the theme prevents scroll when the current position is equal to the current target position, so the state remains the same. You can find the condition in the avia.js > line 783.
if(cur_offset != target) // if current pos and target are the same dont scrollAnd as user, I do not think someone would intentionally click on the same navigation or menu item twice.
Best regards,
IsmaelMay 13, 2021 at 12:57 pm in reply to: Missing font in frontpage after clicking enfold save button #1300135Hey Marcus,
Thank you for the inquiry.
We are not seeing the error in the site anymore, but it looks like an issue with the import process. Do you see still see the issue inside the dashboard?
Best regards,
IsmaelHi,
Thank you for the clarification.
The columns are wider in the color section because of this css code.
.kachel_home .container { width: 100%; max-width: none; }This removes the maximum width limit for the color section container, which is set to 1310px.
Best regards,
IsmaelMay 13, 2021 at 12:45 pm in reply to: Adapt the images of a slider to cover a div in width and height #1300133Hey laboiteapixels12,
Thank you for the inquiry.
Did you add an actual Image element inside the cell? Instead of adding an Image element, try to apply the image as the grid row cell’s background.
Best regards,
IsmaelHi,
Alright. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Looks like the breadcrumb is generated using the function generate_breadcrumbs but we are not yet sure how the context is generated. We might be able to filter the value of the context before passing it to the breadcrumb schema generator.
plugins\wordpress-seo\src\presentations\indexable-presentation.php > line 664
/** * Generates the breadcrumbs for the page. * * @return array The breadcrumbs. * * @codeCoverageIgnore Wrapper method. */ public function generate_breadcrumbs() { return $this->breadcrumbs_generator->generate( $this->context ); }Best regards,
IsmaelMay 13, 2021 at 11:01 am in reply to: How to add an "Add to Cart" Button in Product List option & Thumbnail Zoom #1300103Hi,
That should be possible but you have to disable the product list option that applies an add to cart link to the whole item. Then replace the snippet with this one to render an actual add to cart button with a link.
add_filter("get_the_excerpt", function($excerpt, $post) { if(get_post_type($post->ID) == "product") { ob_start(); /** * hooked by: add_action( '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_single_product_summary', '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_template_single_add_to_cart', 30 ); */ do_action( '<a href='https://refer.wordpress.com/r/84/woocommerce/' target='_blank' rel="nofollow">woocommerce</a>_single_product_summary' ); $cart = ob_get_clean(); $excerpt .= $cart; } return $excerpt; }, 10, 2);Best regards,
IsmaelMay 13, 2021 at 10:52 am in reply to: Is there a way to the ddefault header transparency for all new pages and posts #1300096Hi,
The option is saved as a post meta info or as a custom field named header_transparency, so if you want to automatically set the settings for existing pages, then you have to update the header_transparency value. You should be able to do it using the update_post_meta function.
// https://developer.wordpress.org/reference/functions/update_post_meta/
Best regards,
IsmaelHey Guenter,
Thank you for the inquiry.
Have you tried using the avf_masonry_loop_prepare to assign a different attachment or image source for a masonry item? This is the current attachment value..
//get attachment data $this->loop[ $key ]['attachment'] = ! empty( $this->loop[ $key ]['thumb_ID'] ) ? wp_get_attachment_image_src( $this->loop[ $key ]['thumb_ID'], $img_size ) : '';.. and by using the filter you can change the value of the attachment and fetch an image with a different size.
Best regards,
IsmaelHi,
Thank you for the update.
We are not yet sure what is causing the issue but we managed to make the page work correctly by selecting the first option in the Leistung > Deaktivieren von Vorlagen-Ersteller-Elementen settings. Please note that the second option from this setting will only work if the file compression settings are not enabled.
Best regards,
IsmaelMay 13, 2021 at 8:32 am in reply to: Menu not visible on the mobile phone (separate mobile menu) #1300058Hi,
Thank you for the inquiry.
The mobile menu items and the menu icon are red because of this css code.
.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a { color: #fc2306; } .html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before, .html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after { background-color: #fc2306; }You have to remove the css code or override it in the Quick CSS field.
Best regards,
IsmaelHi,
Great! Glad it works. Please feel free to open another if you need anything else.
Have a nice day.
Best regards,
IsmaelMay 13, 2021 at 8:21 am in reply to: Functions.php file in Enfold Child not updating changes #1300052Hi,
You can actually target the button and apply a top and bottom margin to it.
.html_av-overlay-side #top #wrap_all #av-burger-menu-ul > li.menu-item-2568 { margin-bottom: 20px; margin-top: 20px; }The selector or class name menu-item-2568 is unique to the QUIERO DISEÑAR! button.
Best regards,
IsmaelHey (Email address hidden if logged out) ,
Thank you for the inquiry.
Where did you add the post slider? We cannot find it in the home page.
You can adjust the position of the post slider content and move it over the image, but it might overflow when the title and the excerpt are long.
.slide-content { position: absolute; top: 0; padding: 15px; }We recommend using the Masonry element instead of the post slider.
Best regards,
IsmaelHey Snerp,
Thank you for the inquiry.
The space between the label and the input field is created by these space characters.
First Name & nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;& nbsp;Do you have any idea where it may be coming from?
Best regards,
IsmaelHey Snerp,
Thank you for the inquiry.
You can use the avf_sc_mailchimp_form_elements filter to add new elements or fields in the form. Usage example can be found here.
Related thread: https://kriesi.at/support/topic/translate-mailchimps-form-with-wpml/#post-1224803
Best regards,
IsmaelHi,
Thank you for the update.
The child theme relies on the parent theme and is currently on version 4.5.6, which is quite old. You have to upgrade the theme to version 4.8.2 manually via FTP just this once, because the auto updater will not work with your current version.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelHey berste,
Thank you for the inquiry.
Did you add the contact form as a layer? You may need to adjust or increase the z-index of the layer by declaring the css property in the Styles > Custom CSS field. Or make sure that the contact form layer is at the very top of the Layers list.
Best regards,
IsmaelHey Thomas Duerlund,
Thank you for the inquiry.
Yes, lightbox should be automatically applied to webp images, or automatically create a lightbox link for webp format. Where are you trying to use webp images? Are you using any builder elements?
This plugin might help.
// https://wordpress.org/plugins/webp-express/
If you are using the full screen slider, try this plugin.
// https://wordpress.org/plugins/allow-webp-image/
It adds webp support for the media uploader.
Best regards,
IsmaelHey Jason,
Thank you for the inquiry.
You can use this css code to adjust the border radius of the buttons and change its color.
#top #wrap_all .avia-slideshow-button, #top .avia-button, .html_elegant-blog .more-link, .avia-slideshow-arrows a:before { border-radius: 5px; border-width: 1px; } .main_color .avia-color-theme-color-subtle { background-color: #f7f7f7; color: #383838; border-color: #f1f1f1; }Best regards,
IsmaelHi,
We do not know of any plugin that has the same functionality, but you can try to search for plugins that belongs to the same category or have the same tags.
Example: https://wordpress.org/plugins/tags/smart-quotes/
Please feel free to open another thread if you need anything else. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
Glad it is working. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Looks like it is working properly now. Please check the screenshot below.
Screenshot: https://imgur.com/zNMeEPO
Try to purge the cache and toggle the file compression settings, then check the page again.
Best regards,
IsmaelHey sehlerupdegraff,
Thank you for the inquiry.
You can retain the original aspect ratio of the video and display it completely inside the slider, but black borders might display around it or within the slider. In the slide’s Styling > Video Settings, set the Video Display to the first option.
Best regards,
IsmaelMay 12, 2021 at 11:51 am in reply to: Enfold and The Events Calendar Pro — solution not working #1299896Hey rmatus,
Thank you for the inquiry.
Looks like you have already managed to adjust the style of the events calendar. This is what we see on our end.
Screenshot: https://imgur.com/P93l8Ky
Please try to disable the Performance > File Compression settings and purge the cache afterwards.
Best regards,
IsmaelHey a-l-p,
Thank you for the inquiry.
Yes, it is possible but probably not necessary because scrolling back to the top of the browser on mobile devices is already possible by tapping the top edge of the screen twice.
@media only screen and (max-width: 767px) { .responsive #scroll-top-link { display: block !important; } }Best regards,
IsmaelHi,
You have to set the image element’s Image Hover effect to the third option (Yes, slightly zoom the image) to prevent the image from overflowing. It is probably set to the second option (Yes, slightly increase the image size) right now.
Best regards,
IsmaelHey pipedream,
Thank you for the inquiry.
You are probably looking for this customization.
// https://kriesi.at/documentation/enfold/menu/#logo-centered-split-menu
Just configure header settings as suggested in the documentation and add the css code. You may have to do some adjustment on different screen sizes using css media queries.
Best regards,
IsmaelMay 12, 2021 at 11:08 am in reply to: Logo center split menu – problems with reduced screens #1299879Hey Diana,
Thank you for the inquiry.
Have you tried wrapping the css modification inside a css media query so that it only applies on larger screens? You could also add extra css media queries to adjust the style on mobile view.
@media only screen and (min-width: 989px) { /* Add your Desktop Styles here */ }To remove the indentation of the button item, use this css code.
@media only screen and (max-width: 767px) { #top .av-menu-button > a .avia-menu-text { padding: 0; } }Again, we use a css media query here to adjust the style of the button menu item when the screen width is equal or less than 767px.
Best regards,
Ismael -
AuthorPosts
