Forum Replies Created
-
AuthorPosts
-
Hey Zdeněk,
Please refrain from creating duplicate threads: https://kriesi.at/support/?post_type=topic&p=1393957
Best regards,
IsmaelHey Zdeněk,
Thank you for the inquiry.
Are you trying to hide the folder link from the editor? We may need to access the site and inspect the element in order to provide the required modification. Please provide the site details in the private field.
Best regards,
IsmaelHey sarthakchoudhary,
Thanks for the info @Guenni007!
@sarthakchoudhary: Please try the suggestion above.Best regards,
IsmaelHi,
We now need an enfold specialist to log into our website, look at the code and clean it up again.
Unfortunately, this is beyond the scope support because we cannot trace back code that was added by other developers and clean up after them. If you need a third-party developer to trace and remove the unwanted code, we recommend Codeable. Please check the link below.
// https://kriesi.at/contact/customization
Thank you for your understanding.
Best regards,
IsmaelHey jeel147,
Thank you for the inquiry.
There is no specific option or settings for it, but you can use a custom css to adjust the color of the list.
.avia_textblock ul li { color: red !important; }You have to remove the inline style that you’ve added recently.
Best regards,
IsmaelHey maxh_muc,
Thank you for the inquiry.
Do you want to add the notification to a page? You can modify the page.php, loop-page.php or the template-builder.php file and add the info directly. You can use the function post_password_required to check if the page or post requires a password.
// https://codex.wordpress.org/Function_Reference/post_password_required
Examples can be found in this documentation.
// https://wordpress.org/support/article/using-password-protection/
Best regards,
IsmaelHey rixi,
Thank you for the inquiry.
You can use this filter in the functions.php file to replace the words true and false in the contact form message.
add_filter('avf_form_message', 'avf_form_message_mod_checkbox', 10, 3); function avf_form_message_mod_checkbox($message, $new_post, $form_params) { $message = str_replace('true', 'Yes', $message); $message = str_replace('false', 'No', $message); return $message; }Replace the words “Yes” and “No’ with any strings or text.
Best regards,
IsmaelJanuary 19, 2023 at 9:45 am in reply to: Enfold and Nextgen on Cell Phone “Gallery could not load” #1394051Hi,
We can reproduce the issue on a browse emulation but can’t find any errors or info in the browser console. After a few tries, we get these errors but they don’t seem to be related to the gallery.
jquery.min.js?ver=3.6.1:2 POST https://www.hanswilreker.com/wp-admin/admin-ajax.php 403 quotescollectionRefresh @ quotes-collection.js?ver=2.5.2:6 (anonymous) @ (index):601 www.site.com/:271 GET https://www.site.com/wp-content/gallery/gallery/cache/A-4.jpg-nggid0268-ngg0dyn-600x472x100-00f0w010c010r110f110r010t010.jpg net::ERR_HTTP2_PING_FAILED 200Have you tried asking the plugin developers about the issue? They should be able to provide you with more info about the error.
Best regards,
IsmaelHey Zdeněk,
Thank you for the inquiry.
1.) You can use this css code to adjust the padding between the portfolio items.
.grid-sort-container .grid-entry { padding: 10px; }2.) To enable the excerpt, edit the element, then go to the Content > Excerpt panel and adjust the settings accordingly.
3.) Did you add this css code?
body .unit.alpha, body .units.alpha, body div .first { margin-left: 0; clear: left; }This modification affect the layout of the grid on tablet view.
Best regards,
IsmaelJanuary 19, 2023 at 8:59 am in reply to: Link or column link from column to symbol box title #1394044Hey rixi,
Thank you for the inquiry.
You can directly apply the link to the column element. Just edit the column, go to the Advanced > Column Link toggle and adjust the settings accordingly.
Best regards,
IsmaelHey kipperfletcher23,
Thank you for the inquiry.
We can reproduce the issue but we are not getting any info about the error. Please set your installation to debug mode and enable the error logs so that we can check the issue properly.
// https://wordpress.org/support/article/debugging-in-wordpress/
You have to add this code in the wp-config.php file.
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', true ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );Best regards,
IsmaelJanuary 19, 2023 at 8:50 am in reply to: Every menu dropdown is visible when going from mobile to desktop #1394042Hey levlaneadvertising,
Thank you for the inquiry.
How or why would someone (a casual user/visitor) go from mobile to desktop? The site visitors will either check the site on mobile, laptop or desktop. They will probably not open the developer tools and suddenly switch to mobile and go back to desktop unless they are one of the web developers. Anyway, the submenu items immediately go back to normal once you interact with any of the menu items.
Best regards,
IsmaelJanuary 19, 2023 at 8:41 am in reply to: Make link to anchor in mai menu work on mobile devices #1394041Hey tonyiatridis,
Thank you for the inquiry.
It is not working as it should because there are two sections in the page with the same ID “about”? When the menu item is clicked, it attempts to scroll to the first element with the corresponding ID but stops immediately because the section is hidden on mobile view. Each element in the page should have a unique ID.
Best regards,
IsmaelJanuary 19, 2023 at 8:24 am in reply to: Enfold and Nextgen on Cell Phone “Gallery could not load” #1394039Hi,
Thank you for the update.
Where can we check one of the galleries? We disabled the Lightbox Modal Window option in the Enfold > Theme Options. Let us know if this helps.
Best regards,
IsmaelHi,
Thank you for the info.
The snippet didn’t work because the ava_after_main_title hook in the archive.php was commented out. We reverted it back and replace the color section with the full width slider shortcode.
Best regards,
IsmaelHi,
In the following line, try to adjust the threshold value from 0.1 to 0.3 or 0.5.
{ root: null, threshold: [0.1] });Make sure to purge the cache before testing the page.
{ root: null, threshold: [0.5] });or
{ root: null, threshold: [0.3] });Best regards,
IsmaelHi,
Great! Glad to know that the issue has been resolved. Please let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelJanuary 18, 2023 at 1:01 pm in reply to: „There is an autosave of this post that is more recent than the version below. #1393889Hey trancevisionyoga,
Thank you for the inquiry.
You can actually disable autosave or adjusts its interval. Please check this article for more info.
// https://www.inmotionhosting.com/support/edu/wordpress/disable-wordpress-autosave/
You need to add this code in the wp-config.php file to adjust the interval.
define('AUTOSAVE_INTERVAL', 86400);Best regards,
IsmaelHey pikkuapuri,
Thank you for the inquiry.
The automatic update will no longer work on version 4.8.6.1. You will have to update the theme manually via FTP just this once. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHi,
We just noticed that we didn’t include the selector in the css code above. We logged in and corrected the code in the Quick CSS field. Please try it again now.
The previous css seems to be working as it should in a browser emulation.
Screenshot: https://1drv.ms/u/s!AjjTfXSRbKTvz1ldwkGM2_ufqVJd?e=8nOXh0
If the issue persists, please try to add this code in the functions.php file.
// custom script: disable lightbox mobile function ava_custom_script_disable_slider_lightbox() { ?> <script type="text/javascript"> (function($) { if(false == $.avia_utilities.isMobile) return; $('.avia-slideshow li a').on('touchstart touchmove touchend', function(e) { e.preventDefault(); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'ava_custom_script_disable_slider_lightbox', 9999 );Best regards,
IsmaelHi!
Related thread: https://kriesi.at/support/topic/woocommerce-make-images-in-shop-the-same-aspect-ratio/
Best regards,
IsmaelJanuary 18, 2023 at 8:07 am in reply to: WooCommerce Make images in shop the same aspect ratio #1393865Hey Thomas,
Thank you for this info. We will include it in the documentation.
Best regards,
IsmaelHi,
Please try this snippet.
add_filter('avf_blog_content_in_loop', function($blog_content, $current_post, $blog_style, $blog_global_style) { if($current_post['the_id'] !== 23) return; // ID of aktuelles page // do something with blog content return $blog_content; }, 10, 4);Best regards,
IsmaelJanuary 18, 2023 at 7:48 am in reply to: Emailed website "Link Previews" don't work on one of my Enfold sites #1393863Hey ColinWalton,
Thank you for the inquiry.
You may need to add meta tags that Apple recognizes, which might be the same as Facebook’s open graph meta tags. Unfortunately, we are not sure which meta tags are required for this. Please check the article below for more info about open graph meta tags.
Best regards,
IsmaelHi,
Thank you for following up.
We did notice the issue, but it seems to only happen on the last two sections or anchors. You may need to add more content to the other section so that they don’t intersect with the other.
Best regards,
IsmaelJanuary 18, 2023 at 7:40 am in reply to: STRIPE – Error encountered with avia_cookie_check_sessionStorage() function #1393861Hey Jorge,
Thank you for the inquiry.
You may need to ask the Stripe support about this issue because we are not familiar with their webhooks. Would you mind providing a screenshot of this issue? You can use imgur, savvyify or dropbox for the screenshot.
Best regards,
IsmaelHey xkicknitx,
Thank you for the inquiry.
Which demo are you trying to import, and what do you mean by “import instruction”? Did you try to import the demo manually? Please provide the WP and FTP details in the private field. We will try to import the demo for you.
Best regards,
IsmaelHey walhai,
Thank you for the inquiry.
Are you referring to the Main Menu (icon) elements in the Advanced Styling panel? The elements there are not available our end either. We will forward the issue to our channel.
Best regards,
IsmaelHi,
Thank you for the update.
We logged in and modified the code a bit. It is working correctly now.
// a custom script // add current-menu-item class to active item function ava_custom_script_mod() { if ( wp_script_is( 'avia-default', 'registered' ) ) { wp_add_inline_script( 'avia-default', ' (function($) { $(document).ready(function() { const setActive = (entry) => { $("#top .av-subnav-menu a").parent("li").removeClass("current-menu-item"); let item = $("#top .av-subnav-menu a[href*=" + entry + "]"); if(!item.attr("href").includes(entry)) return; let list = item.parent("li"); let parent = list.parent("#menu-sub-menu"); if(list.is(".current-menu-item")) return; parent.find("li").removeClass("current-menu-item"); list.addClass("current-menu-item"); } const createObserver = (entry) => { let el = document.querySelector(entry); const observer = new IntersectionObserver(function(entries) { if(entries[0].isIntersecting === true) { setActive(entry); } }, { root: null, threshold: [0.1] }); observer.observe(el); } const anchors = ["#dagsprogram", "#grad", "#praktisk", "#indkvartering", "#prisinformation"]; anchors.map(anchor => { createObserver(anchor); }); }); })(jQuery); '); } } add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);Best regards,
IsmaelJanuary 17, 2023 at 12:12 pm in reply to: WooCommerce shop — different image quality depending on how I open the product. #1388031 -
AuthorPosts
