Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the screenshot.
What is the actual screen resolution of your monitor? This is how it looks on our end when browser viewport is less than 1280px.
Screenshot: https://imgur.com/0RlkPDa
You might want to consider adding the form as an inline popup instead.
// https://kriesi.at/support/topic/contact-form-popup-3/#post-992715
Best regards,
IsmaelHi,
Thank you for the info.
Why did you add the echo function before each line? We placed a closing PHP tag after declaring the function name so that we could embed the script tag directly. Anyway, we adjusted the code in the functions.php file a bit and added a selector for the icon link (.av_font_icon a). This should work correctly now.
Please make sure to purge the cache or do a hard refresh before testing the page. The page should reload after clicking the close button.
Best regards,
IsmaelNovember 29, 2021 at 3:30 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1330763Hi,
Thank you for the info.
We do not see any errors or unusual content in the page. Can we access a staging or development version of the site? We may need to inspect the builder shortcodes.
Best regards,
IsmaelHey lamplight1508,
Thank you for the inquiry.
Did you toggle the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin settings before? The layer slider is not getting added to the page but we are not seeing any kind of errors. Is it alright if we deactivate the plugins temporarily?
Best regards,
IsmaelHey RepsHoldings,
Thank you for the inquiry.
Looks like the pages above are now displaying as they should with grid layout and without sidebar. This is what we see on our end.
Screenshot: https://imgur.com/kMXJSRT
Did you manage to find the settings for it?
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the css code in the style.css file a bit. Please make sure to purge the cache before checking the page. This is the new css code.
#menu-item-581 .avia_mega_div { width: calc(100vw - 100px) !important; } @media only screen and (min-width: 1280px) { #menu-item-581 .avia_mega_div { width: calc(100vw) !important; right: -115px !important; left: auto !important; } } #menu-item-581 .mega_menu_title { display: none; }
Best regards,
IsmaelNovember 26, 2021 at 8:12 am in reply to: ALB shortcodes are stripped if element gets opened up in backend #1330554Hi,
The problem is, that I can’t reproduce it either. It occurs only on one of my other pages (and I have quite a lot). Even on another page (same server, same directory, same version of WP and Enfold) everything works as expected.
This is what you said in your previous reply, so we actually thought that it is only happening on a single page. You may need to clone the site to a subdomain so that we can properly check it. And please provide an actual link to the pages where the issue occurs.
Best regards,
IsmaelHi,
Thank you for the clarification.
Where can we check the page? Please provide the URL in the private field. You may need to purge the cache and remove the browser history before checking the page. Also, please note that the script will only work when you actually click the close (x) button.
Best regards,
IsmaelHi,
Thank you for the update.
The privacy popup is now correctly hidden on mobile view and only display once the privacy button is clicked. It is possible that there are invalid css code in previous css modifications. Please look for this css media query in the Quick CSS, style.css file or in the Customize > Additional CSS field and inspect the css declarations inside.
@media only screen and (min-width: 600px) { }
Best regards,
IsmaelHi,
Thank you for the update.
Try to remove the image from the menu item temporarily, then use this css code to insert an icon font inside the login menu item. The icon font should automatically switch color when the header changes or when scrolling down or up.
#menu-item-8683 a:before { font-family: 'entypo-fontello'; content: ""; font-size: 26px; } #menu-item-8683 .avia-menu-text { display: none; }
Best regards,
IsmaelHi,
Great! Glad we could be of help. 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,
As shown in the screenshot above, the modification is working properly on our installation, so there might be something in your site that is conflicting with the filter. Unfortunately, we cannot figure out what that is. Adding two masonry element above each other should be a valid solution.
Thank you for your patience.
Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts