Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
The first css code that we suggested above should make the submenu scrollable horizontally. Just wrap it inside a css media query to apply it on mobile view only.
@media only screen and (max-width: 767px) { #top .av-submenu-container .container { overflow: scroll; } }Can we access the site? Please provide the login details in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like the page above does not exist or it is private. We may need to login to the site in order to check the anchor issue. This is what we get when visiting the “wat-is-waar” page.
OEPS…
Sorry, de pagina die je probeert te bereiken is niet gevonden.Best regards,
IsmaelHi,
Thank you for the update.
We can now access the login page but the password for the username that you provided above seems to be incorrect. Please check the info carefully.
Did you try to install the Classic Widgets plugin that we suggested above?
Best regards,
IsmaelNovember 25, 2021 at 2:54 pm in reply to: ALB shortcodes are stripped if element gets opened up in backend #1330483Hi,
What do you mean by re-create? The whole website? It is a large project. Gave you the link in the first post.
No, just the page where the issue occurs. Could you post the login details in the private field? We would like to check the content of the page. We may need to deactivate the plugins while we are at it. Is that OK?
Best regards,
IsmaelHi,
You might have to define the maximum height of the 360 container again, but only for mobile view. Look for this code.
#main #container.wc360-container { width: 100%; }And replace it with:
#main #container.wc360-container { width: 100%; max-height: 400px; }Adjust the max-height value as necessary.
Best regards,
IsmaelHi,
Yeah, it is quite odd. We inspected the footer widgets again but we cannot see any styling issues. The 4th column weirdly breaks into the third row. Please keep the css modification to adjust the column layout on mobile view.
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the info.
The css media query that you copied is invalid, it is missing the only keyword, which we already corrected in the Quick CSS field. This is the correct one.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }Again, you can move it back in the Quick CSS field.
Best regards,
IsmaelHey xela,
Thank you for the inquiry.
Did you add this css code? The css hides the popup only when the screen is wider than 600px.
@media only screen and (min-width: 600px) { .av-inline-modal { padding: 20px; border-radius: 4px; min-width: 250px; max-width: 800px; margin: 0 auto; position: relative; display: none; -webkit-transition: opacity 0.2s ease-in-out; transition: opacity 0.2s ease-in-out; opacity: 0; } }Please toggle or temporarily disable the Enfold > Performance > File Compression settings so that we can check the issue further. There might be invalid css code (e.g unclosed declarations, missing curly braces, missing semicolon) in the Quick CSS field or in the style.css file.
Best regards,
Ismael.Hi,
Thank you for the info.
The rest of the image is not visible because of this css code.
#main #container.wc360-container { width: 100%; max-height: 300px; }You have to remove the max-height property and make sure to place the code inside a css media query.
Example:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ }Best regards,
IsmaelHey ruediger_graf,
Thank you for the update.
You can use this css code to hide the sidebar when the search returns no items.
.responsive #top.search-no-results .sidebar { display: none !important; }And if you want adjust the width of the content container as well, add this code.
.responsive .search-no-results .content { width: 100%; border: 0; }Best regards,
IsmaelHey Eleina_Shinn,
Thank you for the inquiry.
1.) Are you referring to the slider buttons? You can use this css code to adjust the size or style of the butotn on mobile view.
@media only screen and (max-width: 767px) { .avia-button.avia-size-large { padding: 11px 20px 9px; font-size: 11px; min-width: 99px; } }2.) It seems to be displaying as it should as shown in the screenshot below.
Screenshot: https://postimg.cc/QB5V1YTD
Best regards,
IsmaelHi,
Thank you for the inquiry.
I thnk is related to the focus i frame… in the theme.
What do you mean by “focus i frame”? Did you add any custom scripts in the functions.php file or anywhere else? There might be a function or script that causes the document to scroll to the section before the footer container.
Best regards,
IsmaelNovember 25, 2021 at 8:52 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1330418Hi,
Thank you for the info.
Did you add any custom html tags (e.g script or input tags) in the page? These tags could break the layout of the page and cause the builder to function or behave incorrectly.
You should also try to re-create the page from scratch if none of the suggestions above are working.
Best regards,
IsmaelHi,
Thank you for the update.
You cannot override the config file in the child theme, but you can copy the avia_woocommerce_frontend_search_params function in the child theme’s functions.php file and modify it as you please. And yes, you can use the remove_action function to completely disable or remove the custom sort options.
Best regards,
IsmaelHi,
Thank you for the update.
Unfortunately, there is no dedicated widget area for the portfolio category sidebar, so you may have to add the widgets in the Displayed Everywhere widget area and use a plugin to control their visibility.
You can also modify the sidebar.php file and add a new condition to display a different widget area on portfolio category pages. In the file, look for this code around line 65.
// general shop sidebars if ($avia_config['currently_viewing'] == 'shop' && dynamic_sidebar('Shop Overview Page') ) : $default_sidebar = false; endif;Below, add a new condition.
// portfolio category sidebars if ($avia_config['currently_viewing'] == 'portfolio' && dynamic_sidebar('Portfolio Category') ) : $default_sidebar = false; endif;You will then have to register a new sidebar or widget area called “Portfolio Category”.
register_sidebar(array( 'name' => 'Portfolio Category', 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>', 'id'=>'av_portfolio_category' ));The new widget area should display in the Appearance > Widgets panel afterwards.
Best regards,
IsmaelHi,
Thank you for the update.
We used Affinity Designer to crop and resize the image. We uses the preset (JPEG Best Quality), which sets the image quality to 100% by default, and resampling to Bilinear. You should also check the file size difference between the image that we edited and yours.
Best regards,
IsmaelHey J.,
Thank you for the inquiry.
You can set the Table element’s Styling > Table Styling > Table Design settings to “Minimal” and add a bit of css to completely remove the borders.
.responsive .avia_responsive_table .avia-data-table { border: 0; } tr:first-child th, tr:first-child td, td { border: 0; }Did you mute the video in the layer slider? Please note that only muted videos are allowed to autoplay in the browser.
Best regards,
IsmaelHi,
Thank you for the update.
The spaces between the menu items are now consistent. How did you fix it? Looks like you did remove the font-size property as suggested above.
Best regards,
IsmaelHey Jorge,
Thank you for the inquiry.
That option is not available by default but it can done using a custom script. Why do you have to reload the page?
This is an example of the script that reloads the page after clicking the lightbox close button (mfp-close).
// reload the page on lightbox close function ava_custom_script(){ ?> <script> (function($) { $(document).ready(function() { $(".avia_image").on("click", function() { setTimeout(function() { $(".mfp-wrap").on("click", function(e) { var target = e.target; if(target.classList.contains("mfp-close")) { location.reload(); } }); }, 500); }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');Best regards,
IsmaelHi,
Thank you for the inquiry.
You can apply the “noLightbox” class name to the link tag or to the Image element to disable the lightbox link.
Example:
<a class="noLightbox" href="/wp-content/uploads/2021/11/link-to-image.jpg" target="_blank" rel="noopener">Download Pressefoto Thomas Breit</a>Make sure to adjust the value of the href attribute.
Best regards,
IsmaelHi,
Thank you or the info.
Looks like you are using a third party plugin (Ubermenu) to create the tab style menus. Is there an option in the plugin where you can display the content of the tab on click instead of hover? Currently, the parent menu item closes immediately once you attempt to close the active tab or when you try to access the next items.
You may need to contact the plugin authors for additional assistance.
Best regards,
IsmaelHey Stephan_H,
Thank you for the inquiry.
Can you be more specific? What are you trying to change in the sort options?
The current sort options are created using the avia_woocommerce_frontend_search_params function in the themes/enfold/config-woocommerce/config.php around line 1503. You can manually edit the options from there.
You can also use a plugin to extend the default sorting option.
// https://wordpress.org/plugins/woocommerce-extra-product-sorting-options/
// https://wordpress.org/plugins/woocommerce-more-sorting/But you have to remove the custom sorting options that the theme added and re-enable the default sorting options from the shop plugin with these hooks.
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 ); remove_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20 );Best regards,
IsmaelHi,
It seems to be working as it should as shown in the screenshot below.
Screenshot: https://imgur.com/a/jaYIvfK
The first image (morgan2), which is unattached, is uploaded directly in the media library and added to a post called “Unattached Post” using the Image element, so the the Advance Layout Builder is active on this one. The second (morgan4) and third image (morgan3) are attached to the “Unattached Post” post because they were uploaded directly in the page using the Image element. The fourth one (morgan1) is attached to a post called “Attached Post”, which is using the default block editor. In both editors, the behavior is the same.
So if you do not want the images to be attached to a post or page, make sure to upload them directly in the Media > Library pane, edit a page, add any image element (sliders, gallery etc) and select them from there.
Best regards,
IsmaelHey micscr,
Thank you for the inquiry.
Yes, that should be possible with this css code.
.av-catalogue-content:before { content: "add to cart"; position: absolute; right: 0; top: 50px; }You can replace the content value with an image or a font icon. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for the update.
This css breaks the menu items with long titles and causes them to merge into a single line.
#top #wrap_all .av-main-nav ul>li>a {
line-height: 0em !important;
}Adjusting the top and bottom padding as suggested above should decrease the total height of the submenu.
#top .av-main-nav ul a { padding: 20px 20px; }Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after the modification.
Best regards,
IsmaelHey MikeTandySwag,
Thank you for the inquiry.
Looks like you adjusted the width of the portfolio preview container with the following css code, which also resizes the image.
.portfolio-preview-image { /* width: 30% !important; */ }Default width value is 66.6%. To remove the thumbnail, make sure to set the Ajax Portfolio Preview Settings > Display Preview Images settings to slideshow or image list.
Best regards,
IsmaelHey allespalettibystefan,
Thank you for the inquiry.
You can edit the widgets in the sidebar via the Appearance > Widgets panel. Widgets within the Displayed Everywhere widget area are displayed by default, but you can use plugins like If Widget or Widget Logic to control the visibility of the widgets.
// https://wordpress.org/plugins/if-widget/
// https://wordpress.org/plugins/widget-logic/Best regards,
IsmaelHi,
Thank you for the update.
Glad to know that you managed to find a working solution. To adjust the header style, edit the page and look for the Layout > Header visibility and transparency settings. There should be a transparent header option in the dropdown.
Best regards,
IsmaelHi,
Thank you for the screenshot.
Did you try the css code above? It should adjust the width and position of the mega menu container when the screen width is equal or less than 1280px.
Best regards,
IsmaelHey sofiadadci,
Thank you for the inquiry.
You can easily create a login/logout menu with this plugin.
// https://wordpress.org/plugins/login-logout-menu/
To change the position of the cart icon, go to the Enfold > Shop Options panel and adjust the Header Shopping Cart Icon settings.
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,
Ismael -
AuthorPosts
