Forum Replies Created
-
AuthorPosts
-
September 7, 2020 at 10:44 am in reply to: FAQ Accordion – Tab did not open on Link anymore #1243898
Hi,
Sorry. We don’t have a static IP address. Could you maybe set the account so that it can be accessed by any IP address or from any country?
Best regards,
IsmaelHey stupaul22,
Thank you for the inquiry.
The shortcode files or templates are located in the enfold/config-templatebuilder/aviashortcodes directory and in order to include anything in the Masonry element, we have to modify the av-helper-masonry.php file. The markup for the title and excerpt starts from line 485. You can include the additional content from the plugin around that block.
$items .= "<{$heading} class='av-masonry-entry-title entry-title {$css}' {$markup}>{$the_title}</{$heading}>";Best regards,
IsmaelSeptember 7, 2020 at 5:30 am in reply to: Home page with Layer Slider – reduce menu bar at the top #1243851Hi,
Thank you for the inquiry.
This css code should remove the top bar and adjust the height of the header as if the page has been scrolled down.
.home #header_meta { display: none !important; } .home .container.av-logo-container, .home .container.av-logo-container li, .home .container.av-logo-container li a, .home .container.av-logo-container .logo a, .home .container.av-logo-container .logo a img { height: 58px !important; max-height: 58px !important; line-height: 58px !important; } .html_header_top.html_header_topbar_active.html_header_sticky.html_large .home #main { padding-top: 90px; }Best regards,
IsmaelHi,
Thank you the update. Please check our locations in the following page.
The size of the selected background for the header is only 300px. Please make sure to select the original size in the media library or uploader when setting the image as background.
Best regards,
IsmaelHey genno,
Thank you for the inquiry.
The whole page is already visible above the fold and there’s nothing else below, so the “back to top” button doesn’t display because it’s not needed. Could you explain the issue a bit more, or maybe provide a screenshot so that we can understand it better?
Best regards,
IsmaelHey Ramon,
Thank you for the inquiry.
Did you try the script from this thread?
// https://kriesi.at/support/topic/linking-to-an-open-tab/#post-1225309
The URL format should contain the tabsort parameter with the ID of the tab as its value. The URL should look like something like this.
http://site.com/sample-page/?tabsort=3The selector or tab section ID in this line might have to be adjusted as well.
scrollTop: $("#av-tab-section-1").offset().topBest regards,
IsmaelSeptember 7, 2020 at 4:43 am in reply to: Yoast Video SEO showing error message on every post having video #1243839Hey 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=1Best 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,
Ismael -
AuthorPosts
