Forum Replies Created

Viewing 30 posts - 9,061 through 9,090 (of 67,449 total)
  • Author
    Posts
  • in reply to: Portfolio Item & Folders plugin Metadata #1394049

    Hey Zdeněk,

    Please refrain from creating duplicate threads: https://kriesi.at/support/?post_type=topic&p=1393957

    Best regards,
    Ismael

    in reply to: Portfolio Item & Folders plugin Metadata #1394045

    Hey 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,
    Ismael

    in reply to: Flip Box Grid #1394331

    Hey sarthakchoudhary,

    Thanks for the info @Guenni007!

    @sarthakchoudhary
    : Please try the suggestion above.

    Best regards,
    Ismael

    in reply to: Enfold Spezialist für Fehlerbehebung gesucht #1394325

    Hi,

    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,
    Ismael

    in reply to: change text color of a list #1394324

    Hey 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,
    Ismael

    in reply to: Cookie Consent Link if cookies not accepted #1394323

    Hey 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,
    Ismael

    in reply to: true fals into German contactformular #1394322

    Hey 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,
    Ismael

    Hi,

    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 200
    

    Have you tried asking the plugin developers about the issue? They should be able to provide you with more info about the error.

    Best regards,
    Ismael

    in reply to: Adjustment of the Portfolio Category page #1394048

    Hey 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,
    Ismael

    in reply to: Link or column link from column to symbol box title #1394044

    Hey 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,
    Ismael

    in reply to: Site shows blank when activating woocommerce #1394043

    Hey 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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Make link to anchor in mai menu work on mobile devices #1394041

    Hey 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,
    Ismael

    Hi,

    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,
    Ismael

    in reply to: Area section into blog categories #1394036

    Hi,

    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,
    Ismael

    in reply to: Sticky Submenu with underlined active item #1393893

    Hi,

    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,
    Ismael

    in reply to: Background colour for special heading element #1393890

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Enfold won’t update? #1393872

    Hey 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-enfold

    Best regards,
    Ismael

    in reply to: Disable lightbox @media #1393867

    Hi,

    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,
    Ismael

    in reply to: Remove crop from Enfold WooCommerce images? #1393866

    Hi!

    Related thread: https://kriesi.at/support/topic/woocommerce-make-images-in-shop-the-same-aspect-ratio/

    Best regards,
    Ismael

    in reply to: WooCommerce Make images in shop the same aspect ratio #1393865

    Hey Thomas,

    Thank you for this info. We will include it in the documentation.

    Best regards,
    Ismael

    in reply to: blog alb and full content – does not work #1393864

    Hi,

    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,
    Ismael

    Hey 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.

    // https://ahrefs.com/blog/open-graph-meta-tags/#:~:text=Open%20Graph%20meta%20tags%20are%20snippets%20of%20code,them%20in%20the%20%3Chead%3E%20section%20of%20a%20webpage.

    Best regards,
    Ismael

    in reply to: Sticky Submenu with underlined active item #1393862

    Hi,

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Cannot Use Demo Template #1393860

    Hey 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,
    Ismael

    in reply to: Since last update missing field in Theme Options #1393857

    Hey 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,
    Ismael

    in reply to: Sticky Submenu with underlined active item #1388034

    Hi,

    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,
    Ismael

    Hi,

    No problem. Glad to know that the issue has been resolved. Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 30 posts - 9,061 through 9,090 (of 67,449 total)