Forum Replies Created
-
AuthorPosts
-
Hey AFDCO,
Thank you for the inquiry.
We are not really sure how the plugin hides the content for a specific user role, but you might be able to use the “avf_masonry_loop_prepare” to adjust the markup of the masonry items and wrap it inside the UM shortcode as shown in their documentation.
We cannot guarantee that this will work though.
If the plugin is altering the post or product query, we might be able to use the avia_masonry_entries_query to adjust the default query of the masonry element and only include the items that the current user should see. Unfortunately, we are not really sure how the plugin handles this, so additional assistance from the plugin developers may be needed.
Best regards,
IsmaelHey rmatus,
Thank you for the inquiry.
A full width image for the single blog post should be possible but you have to either modify the template directly as you did previously, or use the Advance Layout Builder (ALB) and add fullwidth elements such as a slider or a color section. However, this means that you will have to manually add the content to the posts including the meta info, the comments area and the social share section, which are all available in the builder as elements.
Best regards,
IsmaelHi,
The code above should disable the default AJAX search from the theme, but extra modification might be needed if the plugin requires it. If you need more help, please feel free to create a new thread or ticket, and post the details in the private field so that we could check the site properly.
Best regards,
IsmaelHi,
Thank you for the update.
Glad to know that you have found a temporary solution. We tested the the issue on our end, and we might have found a working solution using a simple css code. Please remove the css code above, then try this one instead.
.menu-item-edit-inactive .ui-sortable-placeholder:not(.menu-item-handle) { margin: 0 5px; }Best regards,
IsmaelHi,
@mattofelki: Good to know. Please let us know if you need more help.
@goldengate415: Thank you for the assistance.Best regards,
IsmaelHi,
Thank you for the info.
The demo is not using a locally hosted font, so it has to get the fonts from Google. We tried to login to the dashboard using the account above, but it seems to be invalid. Please check the login info or create another so that we could access the dashboard and check the settings.
Best regards,
IsmaelHi,
3.) Alright. We could use this script in the functions.php file to make the whole box or the whole slide entry clickable.
// a custom script function ava_custom_script_mod() { if ( wp_script_is( 'avia-default', 'registered' ) ) { wp_add_inline_script( 'avia-default', ' (function($) { $(".slide-entry").on("click", function() { window.location.href = $(this).find("a").attr("href"); }); })(jQuery); '); } } add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);Please make sure to add this css code in the Quick CSS field afterwards.
.slide-entry { cursor: pointer; }Best regards,
IsmaelHi,
Alright. Glad to know that you have found a solution that works for you. Let us know in another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelFebruary 23, 2021 at 1:21 pm in reply to: When I upload images I couldn´t see the thumbnails #1283071Hi,
Great! Glad we could be of help. Please do not hesitate to open a new thread should you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Awesome! You are welcome! Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
@Swarez: On opening the page, I noticed a shift once the first image is loaded, maybe because it is lazy loaded. Are you using lazy loading and/or animations for the columns or sections? Either of the two could contribute to layout shifts, so disabling these options should improve the CLS score.Best regards,
IsmaelHi,
@mattofelki Did you define a custom css class name or ID for the horizontal gallery element?// https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support
In the following css code, you have to replace “custom-css-class” with the actual class name of the element.
.responsive .custom-css-class .av-horizontal-gallery-inner { min-height: 200px !important; }Best regards,
IsmaelHi,
We cannot figure out why it is not playing on mobile devices. Temporarily, you may need to disable lazy loading and regarding user privacy, you may need to inform the users through the privacy policy page or the modal popup window that the site contains videos, which may require or store cookies.
Best regards,
IsmaelHi,
Sorry about that. Make sure to check that we are not on the admin page.
Please put this line before the first conditional.
if(is_admin()) return;Best regards,
IsmaelFebruary 23, 2021 at 12:52 pm in reply to: Left side bare under the product picture on single product page. #1283062Hi,
Thank you for the update.
Try to replace the snippet in the functions.php with the following code.
function ava534345953_init() { add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25); add_action( 'woocommerce_after_single_product_summary', 'avia_close_image_div_mod', 20); add_action( 'woocommerce_before_single_product_summary', 'avia_open_image_div_mod', 1 ); } function avia_open_image_div_mod() { echo "<div class='product-main-container'>"; } function avia_close_image_div() { echo "</div>"; } function avia_close_image_div_mod() { echo "</div>"; } function avia_add_sidebar() { if(is_product()) { $avia_config['currently_viewing'] = "shop_single"; get_sidebar(); } } add_action('init','ava534345953_init', 50);Then use this css code.
.product-main-container { width: 70%; float: right; } .product-main-container::after { content: ''; display: table; clear: both; } .product-main-container .single-product-main-image, .product-main-container .single-product-summary { width: 100%; } #top #main .sidebar { border-left: 0; border-right-style: solid; border-right-width: 1px; margin-left: 0; }Or post the FTP and WP details so that we could implement the changes.
Best regards,
IsmaelFebruary 23, 2021 at 12:08 pm in reply to: preset a portfolio to have on default a custom widget area shown. #1283047Hi,
Thank you for the info.
You may need to adjust the actual sidebar option aside from the layout option above.
// Layout > Sidebar Settings if($element['id'] == 'sidebar') { $elements[$counter]['std'] = 'Custom Widget Area'; }In the std parameter or key, define the actual name of the widget area.
It might be a good idea to change the title of the layout settings to “Layout Settings” to avoid confusion.
Best regards,
IsmaelHi,
Thank you for the update.
The max attribute corresponds to the available stocks but for some reason, it is not working. Please try to edit the themes\enfold\config-woocommerce\woocommerce-mod.js, look for this code around line 72.
avia_apply_quant_btn();Below, add this code.
$(".variations_form").on("woocommerce_variation_select_change", function () { avia_apply_quant_btn(); });This should update the quantity buttons after selecting a different variation.
Best regards,
IsmaelHi,
Thank you for following up.
Try to replace the latest css code with this one to limit the width of main menu.
.responsive #top #header #header_main .inner-container .main_menu { order: 2; flex-basis: 100%; align-items: center; align-self: center; height: 42px; background: #00607b; justify-content: center; position: absolute; width: 100vw; bottom: -25px; left: 50%; transform: translate(-50%, 0); }Then use this css code adjust the maximum width of the inner container.
.responsive #top #header #header_main .inner-container .main_menu .avia-menu { max-width: 1600px; }Best regards,
IsmaelHi,
Odd. This is how it looks on Firefox Windows 10.
Screenshot: https://imgur.com/sWuYPty
Maybe this snippet will help, just add it in the functions.php file.
function ava_custom_admin_style() { echo '<style> .title.column-title { min-width: 300px; display: block; } </style>'; } add_action('admin_head', 'ava_custom_admin_style');This should apply a minimum width to the title column.
Best regards,
IsmaelHi,
You are very welcome! Could you post the FTP details in the private field so that we could toggle the responsive image option of the gallery element? We may need to test it further and hopefully, we could come up with a better solution. And since the issue is already visible in your site, it would be a lot easier if we could test it there.
Best regards,
IsmaelHi,
Thank you for the info.
We created a js folder inside the child theme directory and place the avia-snippet-megamenu.js file inside so that it coincides with the declared path in the functions.php file, or in the wp_enqueue_script function.
add_action("after_setup_theme", function() { wp_dequeue_script('avia-megamenu'); wp_enqueue_script('avia-megamenu', get_stylesheet_directory_uri().'/js/avia-snippet-megamenu.js', array('avia-default'), '', true); }, 999);You can now tab though the mega menu items to open the sub menu container. Please purge the cache and make sure to do a hard refresh before checking the page.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We cannot reproduce the issue on our end when we used a locally uploaded font. Are you using a layer slider or a Google map element? These elements may still load custom fonts from Google, so you have to make sure that they do not load without user permission.
Best regards,
IsmaelHi,
Thank you for the update.
We cannot reproduce the same issue on IE, but we will forward the issue to our channel. Temporarily, you can keep the filter above and use videos from Youtube, instead of uploading the video to your server. It is much faster and you save a little space in your server.
Best regards,
IsmaelHi,
Sorry about that. In the css code, please look for this part or selector.
.main_menu li aReplace it with:
.main_menu > li aThis should exclude the sub menu items.
Best regards,
IsmaelHi,
Thank you for the update.
Would you mind if we check the page where this has been implemented? Did you disable the file compression and purge the cache after adding the recommended css code? It is possible that no images are showing because the opacity of the mfp-container is still set to 0.
Best regards,
IsmaelFebruary 22, 2021 at 1:38 pm in reply to: copyright option for Easy Slider (Einfacher Slider) #1282791Hi,
I was just describing the previous modifications that we have done for the color section, which could be implemented for the gallery or the slider elements as well, with some tweaks. Unfortunately, this is not yet available for the sliders and for the gallery. Please contact our partner, Codeable, or a hire a freelance developer to adjust the modification for the gallery and slider elements.
Thank you for understanding.
Best regards,
IsmaelFebruary 22, 2021 at 1:33 pm in reply to: Automatische E-Mail Antwort an den Kunden. Anrede "Du" und "Sie" / #1282788Hi,
Thank you for the inquiry.
You can use the Loco Translate plugin to adjust the existing translation for the theme.
// https://wordpress.org/plugins/loco-translate/
Or the PO Edit software to manually adjust the language files.
If you need further assistance, please create a new thread.
Best regards,
IsmaelHi,
Glad to know that you have found a working solution. For the sidebar, this css code should help.
.container .template-shop.av-content-small.units { width: 100%; } .template-shop .sidebar { display: none !important; }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,
IsmaelFebruary 22, 2021 at 1:04 pm in reply to: 403 Forbidden Access to this resource on the server is denied! #1282780Hi,
Thank you for the update.
We were able to update the home page and create another page without encountering any issues. Is this still a problem on your end? (see private field)
If this continue to be a problem, please disable the cache plugin and set the Enfold > Theme Options > Select Your Editor settings to the second option or the classic editor. Let us know if it helps.
We will tag Yigit in the thread.
Best regards,
IsmaelHey egouldmedia,
Thank you for the inquiry.
We see a few syntax errors in the browser console, which is not directly related to the layer slider but it could be causing the issue with the navigation. Do you remember adding this snippet anywhere?
// your code goes here <link rel="preconnect" href="https://fonts.gstatic.com"> <link href="https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap" rel="stylesheet">This part is not valid.
// your code goes hereBest regards,
Ismael -
AuthorPosts
