Forum Replies Created
-
AuthorPosts
-
Hi,
A server error occurs whenever we try to open one of the catalogue item. The returned shortcode looks like this.
[av_catalogue+lazy_loading='enabled'+alb_description=''+id=''+custom_class=''+av_uid='av-1zajfm2'+admin_preview_bg='rgb(241,+241,+241)+none+repeat+scroll+0%+0%'][av_catalogue_item+title='Nr.1+-+DORNFELDER+-TROCKEN+'+price=''+id='738'+link=''+target=''+av_uid='av-7dn00q']<span+style="color:+#993366;">[av_hr+class='invisible'+height='6'+shadow='no-shadow'+position='center'+custom_border='av-border-thin'+custom_width='50px'+custom_border_color=''+custom_margin_top='30px'+custom_margin_bottom='30px'+icon_select='yes'+custom_icon_color=''+icon='ue808'+font='entypo-fontello'+admin_preview_bg=''+av_uid='av-1xc7xcq']2019+-+Samtig,+kräftig,+fruchtbetont+(12,5%vol.)</span>[/av_catalogue_item][av_catalogue_item+title='Nr.2+-+Blauer+Portugieser+mild'+price=''+id='738'+link=''+target=''+av_uid='av-7wjare'+disabled='']<span+style="color:+#993366;">[av_hr+class='invisible'+height='6'+shadow='no-shadow'+position='center'+custom_border='av-border-thin'+custom_width='50px'+custom_border_color=''+custom_margin_top='30px'+custom_margin_bottom='30px'+icon_select='yes'+custom_icon_color=''+icon='ue808'+font='entypo-fontello'+admin_preview_bg=''+av_uid='av-1td9r0a']2019+-+Vollmundig+–+milder+Rotwein+(11,0%vol.)</span>[/av_catalogue_item][/av_catalogue]
Please post the FTP details in the private field so that we can set the installation to debug mode. Or install this plugin.
// https://wordpress.org/plugins/wp-debugging/
Best regards,
IsmaelHey Christoph_Wagener,
Thank you for the inquiry.
Where did you get the font files? Please note that font manager only accepts Google font files, and to be able to upload different fonts, you have to make sure that the name of font files or sets are different.
Best regards,
IsmaelHey diefleischerei,
Thank you for the inquiry.
The theme’s default Gallery element only supports captions inside a tooltip by default. You may need to use a different gallery element such as the Masonry Gallery or the default WordPress gallery shortcode. For more info about the default gallery shortcode, please check the following documentation.
// https://wordpress.org/support/article/the-wordpress-gallery/
Best regards,
IsmaelHi,
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 scroll
And 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,
Ismael -
AuthorPosts