Forum Replies Created
-
AuthorPosts
-
September 7, 2020 at 4:43 am in reply to: Yoast Video SEO showing error message on every post having video #1243839
Hey Biju,
Sorry for the delay. Unfortunately, the builder is not compatible with the analysis tool, so it won’t be able to recognize content inside the builder, but this shouldn’t affect how search engines crawl the site in the frontend.
Best regards,
IsmaelHi,
Do you want the grid layout to display in a single column on tablet portrait mode? We could use this css code to adjust the width of the columns on tablet view.
@media only screen and (max-width: 989px) { .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 0px; margin-bottom: 20px; width: 100%; } }
Best regards,
IsmaelHi,
Thank you for the update. Is it working properly now? Please don’t hesitate to open a new thread if you need anything else.
Best regards,
IsmaelSeptember 7, 2020 at 4:17 am in reply to: Woocommerce Checkout fields are visible two times #1243831Hi,
Thank you for the info.
We can use this css code to remove the duplicated field “Ondernemingsnummer”.
#billing_wooccm11-description { display: none; }
Please add it in the Quick CSS field or the child theme’s style.css file, then toggle the Performance > File Compression settings.
Best regards,
IsmaelSeptember 7, 2020 at 4:05 am in reply to: I need 3 different main menus – is there a plugin that works seamlessly in Enfol #1243825Hey pramedia,
Thank you for the inquiry.
There are plugins that adds conditional options to the menu items which allow the users to control their visibility in the front end. You might be able to use one of these plugins to display or hide specific menu items based on certain conditions.
// https://wordpress.org/plugins/if-menu/
// https://wordpress.org/plugins/menu-items-visibility-control/Best regards,
IsmaelHi,
You’re welcome! Glad we could help. In the gallery editor there is an option (Styling > Gallery Preview Image Size) where you could select the thumbnail size that the gallery should use or display in the front end.
Best regards,
IsmaelHi,
The analysis tool can only read content inside the main or default editor, and in most cases it doesn’t recognize content that were created using visual builders including the theme’s advance layout builder.
// https://yoast.com/help/is-the-plugin-compatible-with-xyz-visual-page-builder/
By default, our plugin does not analyze content that is outside of the main content box of a page or post. Some visual composer developers have modified their code to add compatibility with our plugins while others have not.
Best regards,
IsmaelHi,
Did you figure out the issue? The heading inside each column is now displaying properly on our end. Please check the screenshot below.
Screenshot: https://imgur.com/a/0PkFseZ
Best regards,
IsmaelHi,
Sorry for the delay. We could use this css code to add a scrollbar within the mini cart container when there are a lot of items in the cart.
#top .widget_shopping_cart_content { overflow-y: scroll !important; max-height: 80vh !important; }
Best regards,
IsmaelHey Chris,
Thank you for the inquiry.
Did you modify any of the theme files? The attribute controls should have a default value, or should be defined by default.
To fix the issue temporarily, please edit the /enfold/framework/php/function-set-avia-frontend.php line 779..
$controls = $attributes['controls'] == 1 ? 'controls' : '';
.. and replace it with:
$controls = isset($attributes['controls']) && $attributes['controls'] == 1 ? 'controls' : '';
Best regards,
IsmaelHi,
Thank you for the update.
Could you also include access or an account for the file server (FTP)? Unfortunately, we are not yet sure why this is not working, or why the language switch notification pops up after adding the product to the cart. We’ll forward this thread to our channel and check the issue further.
Best regards,
IsmaelSeptember 3, 2020 at 4:44 pm in reply to: How to load js & css only for shortcodes that are present on the page? #1243139Hi,
Have you tried setting the Performance > Disabling of template builder elements settings to the second option (Load only use elements)? As the option title says, it will only load elements that actually exist in the page.
Each shortcode registers its own script and stylesheets in their designated templates using the extra_asset function.
Example in the config-templatebuilder\avia-shortcodes\buttonrow\buttonrow.php file.
public function extra_assets() { //load css wp_enqueue_style( 'avia-module-button', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttons/buttons.css', array( 'avia-layout' ), false ); wp_enqueue_style( 'avia-module-buttonrow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/buttonrow/buttonrow.css', array( 'avia-layout' ), false ); }
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried appending the loop parameter to the Youtube URL?
// https://developers.google.com/youtube/player_parameters#loop
Set the parameter to 1.
Example:
https://www.youtube.com/v/VIDEO_ID?version=3&loop=1
Best regards,
IsmaelHey ThorstenFB,
Thank you for the inquiry.
The html field is not supposed to display the label field by default. You can include the title in the description or content editor.
Best regards,
IsmaelHey JBkvns,
Thank you for the inquiry.
Did you try this css code?
.av-screen-reader-only.lightbox-added { position: absolute; left: auto; top: 0; width: 100%; height: 100%; overflow: hidden; opacity: 0; }
Please toggle the Performance > File Compressions settings after adding the css code.
Best regards,
IsmaelHey SGH-GROUP,
Thank you for the inquiry.
We tried to check the page above but it doesn’t seem to exist. Did you remove the page?
Please note that we don’t provide support for third party plugins as stated on our support policy. You may need to contact the plugin developers for additional help.
Best regards,
IsmaelSeptember 3, 2020 at 3:03 pm in reply to: Layer Slider Sliders are not showing in String Translation #1243119Hey emilconsor,
Thank you for the inquiry.
Where can we see the issue? Please post the login details in the private field so that we can check the layer slider.
Best regards,
IsmaelHi,
Thank you for the update.
You might have to increase or adjust the size of the Large thumbnail in the Settings > Media panel. After the size adjustment, make sure to regenerate the thumbnails or upload the images again.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelHi,
We can wrap the previous css inside a css media query so that it will only affect the mobile view.
@media only screen and (max-width: 767px) { #top .cart_dropdown_first .cart_dropdown_link { font-size: 30px; } }
Best regards,
IsmaelHi,
Thank you for the update.
For some reason, this inline css code which also affects the search button gets added too many times.
.button { background-color: #b0008d; color: #ffffff; border-color: #90006b !important; width: 100% !important; }
Did you create a script that adds this inline style?
Best regards,
IsmaelHey Biju,
Thank you for the inquiry.
The plugin will not really affect the markup of the breadcrumb, so it will just display the very first category of the post. You may need to use the avia_breadcrumbs_trail filter to adjust the breadcrumb trail or the links included in it.
Best regards,
IsmaelHey cschmimo,
Thank you for the inquiry.
The site is on maintenance, so we couldn’t check the gallery page. Please provide a direct link to the page containing the gallery and post the login details in the private field so that we can access the site.
Best regards,
IsmaelHi,
Thank you for the update.
Try to use this css code to remove the margin above the first column table.
#top .flex_column_table.av-equal-height-column-flextable:not(:first-child) { margin-top: 0; }
Best regards,
IsmaelSeptember 3, 2020 at 1:39 pm in reply to: How to change the margins und paddings of mulitcolor accordion? #1243087Hi,
This css code should remove the padding around the toggle graphic and vertically align the title.
.toggler { max-height: 44px !important; height: 44px !important; } .toggler::before { float: left; } .av-accordion-bg-multi .av_toggle_section .toggler { padding: 0 !important; }
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
The lightbox script automatically uses the Large thumbnail for the preview, so you have to increase its size in order to get a sharper image. The size of the thumbnail can be increased in the Settings > Media panel, then use this plugin to regenerate the thumbnails.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelSeptember 2, 2020 at 6:17 pm in reply to: Icons in tab section do not fully display or load on mobile #1242883Hi,
Sorry for the delay. We checked the site on a mobile device emulation, but we couldn’t reproduce the issue. Would you mind providing a screenshot of the missing icons?
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the issue? Are you using a domain email address? Please make sure that the SMTP configuration is correct.
Do you receive the test email when you try to send one?
Best regards,
IsmaelSeptember 2, 2020 at 4:21 pm in reply to: Left align text in popup of image with hotspots, change line height and padding #1242856Hey rhae,
Great! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHey rhae,
Thank you for the inquiry.
Have you tried setting the autorotation duration from the default 5 seconds to 1 second? The option is located in the Advanced > Slider Animation toggle.
Best regards,
IsmaelHey jelle,
Thank you for the inquiry.
Are you using a plugin for the night view or dark mode? Unfortunately, we are not really sure how it alters the style of the page or if we can influence it by adjusting the css or by adding a certain script.
If you want to try and adjust the background color of the burger menu on mobile view, please use this css code.
@media only screen and (max-width: 767px) { .header_color .av-hamburger-inner, .header_color .av-hamburger-inner::before, .header_color .av-hamburger-inner::after { background-color: #ffffff; } }
Best regards,
Ismael -
AuthorPosts