Forum Replies Created

Viewing 30 posts - 8,761 through 8,790 (of 67,449 total)
  • Author
    Posts
  • in reply to: Can I password protect one of my subpages? #1398756

    Hi,

    Alright. Let us know in a different thread if you have more questions.

    Best regards,
    Ismael

    in reply to: Favicon not showing #1398755

    Hey Kersversbusiness,

    Thank you for the inquiry.

    Did you check the favicon URL after enabling SSL? You may need to adjust the URL of the favicon (Enfold > Theme Options > Favicon) and make sure that the URL is using https instead of http.

    Best regards,
    Ismael

    in reply to: delete zoom effect in masonry gallery #1398751

    Hey morfologia,

    Thank you for the inquiry.

    You can adjust the hover effect of the Masonry Gallery by adjusting the Image Hover Effect settings in the Advanced > Animation panel. Set it to the last option to disable the hover effect.

    Best regards,
    Ismael

    in reply to: Full Width Easy Slider Video Issue #1398750

    Hi,

    But the other format also points to the same URL. The URL above is just shortened. If you enter the shortened URL in your browser, it will just redirect to the other URL, which is the accepted format in the Advance Layout Builder. Not really sure what is the difference when sharing.

    Best regards,
    Ismael

    in reply to: Full Width Easy Slider Video Issue #1398732

    Hi,

    . YouTube’s current default sharing link protocol isn’t recognised by the ALB theme element.

    What do you mean? Would you mind providing a link to a documentation about this? We edited the Youtube URL above.

    Best regards,
    Ismael

    in reply to: Full Width Easy Slider Video Issue #1398728

    Hi,

    The video elements in the builder including the background video options in the slider only accepts the first format. You will get issues if you use the other format because the theme doesn’t recognize it. Before choosing a video, you will actually see a note about the accepted URL format.

    Choose Video
    Either upload a new video, choose an existing video from your media library or link to a video by URL

    A list of all supported Video Services can be found on WordPress.org. YouTube videos will display additional info like title, share link, related videos, …

    Working examples, in case you want to use an external service:

    https://www.youtube.com/watch?v=G0k3kHtyoqc

    Best regards,
    Ismael

    in reply to: Error updating functions.php #1398727

    Hi,

    Have you tried enabling debugging? There might be an error generated somewhere, which prevents saving from going through. You should also deactivate the plugins temporarily.

    // https://wordpress.org/documentation/article/debugging-in-wordpress/#example-wp-config-php-for-debugging

    Best regards,
    Ismael

    in reply to: Animation #1398726

    Hey BELHADJAsma,

    Thank you for the inquiry.

    Most of the animations in the demo are created using the Advanced > Animation options in the Column elements. You can then place other elements such as the Special Heading inside the column.

    Let us know if you need more help with the options.

    Best regards,
    Ismael

    in reply to: Dots Menu (Fullwidth submenu element) with current class #1398725

    Hi,

    Thank you for the update.

    It was not working because the selector for the “social media” section is incorrect. We modified the code in the functions.php file a bit.

    
    // 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 = ["#home", "#klassiker", "#ice", "#spritz", "#free", "#social-media"];
    
    				anchors.map(anchor => {
    					createObserver(anchor);
    				});
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
    

    We also added this css code in the child theme’s style.css file to differentiate the active item from the rest of the menu items.

    .av-subnav-menu .current-menu-item {
        color: red;
        background: red;
    }
    

    You can adjust it as needed.

    Best regards,
    Ismael

    in reply to: Blog posts 3 questions #1398724

    Hey tom_on_wheels,

    Thank you for the inquiry.

    1.) These elements will only be enabled or will only be visible in the single post page. If you want to adjust grid layout, you have to modify the shortcode templates in the enfold\config-templatebuilder\avia-shortcodes\postslider file directly.

    2.) Since you are using the Advance Layout Builder (ALB) for the post, you have to add the Comments element manually in the builder or the editor in order to display the discussions and the comment form.

    3.) You can add this filter in the functions.php file to adjust the layout of the archive or category pages.

    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2);
    function avia_change_category_blog_layout($layout, $context){
       if($context == 'archive') $layout = 'blog-grid';
       return $layout;
    }
    

    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

    in reply to: Error updating functions.php #1398722

    Hi,

    Sorry about that. Have you tried editing the file in your IDE or any text editor directly instead of doing it in the Appearance > File Editor panel? Since this is a local installation, it will be difficult for us to debug issue. Editing via the theme file editor works correctly on our local installation using the latest version of the theme.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Looks like you have modified some of the shortcodes or builder elements in your child theme. Please get a fresh copy of the shortcode files from the enfold\config-templatebuilder\avia-shortcodes folder in the parent theme, make sure to copy the folder structure for each shortcodes, then redo the modifications.

    Best regards,
    Ismael

    in reply to: Client Login Section #1398719

    Hey Triton,

    Thank you for the inquiry.

    1-2.) The theme doesn’t contain a custom login option or template, but there are available plugins that you can use to customize the default login page.

    // https://www.wpbeginner.com/plugins/how-to-create-custom-login-page-for-wordpress/

    3-4.) We do not offer installation service for our themes, so it is up to the user or the developer to install it to their chosen server or hosting provider. You may need to hire a freelance developer or contact a web agency if you are not familiar with this process.

    Best regards,
    Ismael

    in reply to: Error updating functions.php #1398717

    Hey Pete,

    Thank you for the inquiry.

    This might be an issue with the file permissions, which you will have to check with your hosting provider. Have you tried editing the file via S/FTP?

    // https://wordpress.org/documentation/article/using-filezilla/

    Best regards,
    Ismael

    in reply to: Image hover color change #1398716

    Hey Stretchspot,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the image overlay on hover.

    .av-overlay-hover-deactivate .avia-image-overlay-wrap:hover .av-caption-image-overlay-bg {
        opacity: 0.4 !important;
        background-color: red;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code.

    Best regards,
    Ismael

    in reply to: Scroll down without parameter in the url #1398714

    Hey Createve_Solutions,

    Thank you for the inquiry.

    This is possible but you will have to directly modify the enfold\js\avia.js file and look for this code around line 892.

    newHash = '#' + container.attr('id') ;
    

    Replace it with.

    newHash = "";
    

    Please make sure to toggle the file compression and purge the cache before testing the page.

    Best regards,
    Ismael

    in reply to: GDPR e Cookie Privacy 2022 #1398713

    Hey jbond82,

    Thank you for the inquiry.

    Unfortunately, this is not available in the current implementation of the GDPR or privacy options in the theme. You may need to look for a third party plugin or hire a freelance developer to build this feature on top of the current options.

    Best regards,
    Ismael

    in reply to: tiktok icon addition #1398576

    Hi,

    Let us know in another thread if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    The issue seems to be coming from the following plugin: Relevanssi Premium.

    You may need to contact the plugin developers for more info about this issue. For the meantime, you may need to revert back to the default search template without the modification.

    Best regards,
    Ismael

    in reply to: FULLSCREEN SLIDER (captions do not update) #1398313

    Hey godux,

    Thank you for the inquiry.

    You might have accidentally enabled the Use first slides caption as permanent caption option in the Styling > Slides panel. Please check if the option is enabled.

    Best regards,
    Ismael

    in reply to: Does your plugin support php 8? #1398309

    Hey Jim Zeigler ,

    Thank you for the inquiry

    We do not sell plugins, only WordPress themes. Are you using the Enfold theme? And yes, the theme supports the latest versions of PHP.

    Best regards,
    Ismael

    in reply to: Advanced Layer slider – Premium! #1398307

    Hey Johan,

    Thank you for the inquiry.

    You have to disable the native layer slider plugin by adjusting the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin settings first, before installing and activating the stand-alone plugin. You should be able to register after that.

    Best regards,
    Ismael

    in reply to: Woocommerce – Enfold template notifications #1398305

    Hey bonsaimedia,

    Thank you for the inquiry.

    Where do you see the notifications? Do you see any layout issues in the product pages? If there are no layout issues, then you can just ignore the warnings for now.

    Best regards,
    Ismael

    in reply to: Flash on loading header widget #1398304

    Hey jaimemerz,

    Thank you for the inquiry.

    Have you tried hiding the amp menu using css media queries?

    @media only screen and (min-width: 768px) {
    	/* Add your desktop Styles here */
    
    }

    Best regards,
    Ismael

    in reply to: Parallax over fullwidth slider #1398302

    Hey Fred,

    Thank you for the inquiry.

    There is a parallax option in the Fullscreen Slider element. You can also use the Layer Slider if you need more options.

    Best regards,
    Ismael

    Hey simplycoding15,

    Thank you for the inquiry.

    Where do the issues occur? Please create a test page and provide screenshots so that we can understand the problem better. You should also update the theme to version 5.4 and remove the older Enfold folder to avoid confusion.

    Best regards,
    Ismael

    in reply to: Tab section/masonry gallery alignment issue #1398300

    Hey Silvio,

    Thank you for the inquiry.

    You may need to edit the tab section’s items and set the Styling > Alignment > Vertical align settings from Middle to Top.

    Best regards,
    Ismael

    Hey M-Graphics24,

    Please refrain from creating duplicate threads: https://kriesi.at/support/topic/uploaded-font-suddently-not-working/

    Best regards,
    Ismael

    in reply to: UPLOADED FONT SUDDENTLY NOT WORKING #1398298

    Hey M-Graphics24,

    Thank you for the inquiry.

    Did you upload a Google font? Please note that only Google fonts are allowed in the Custom Font Manager, other fonts have to be added manually using the @font-face rule.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face

    Best regards,
    Ismael

    in reply to: Code Block : Format or Syntax #1398296

    Hi,

    Yes, the code has to be added in the functions.php file. And if you want to only apply it on a single page, just look for this line.

    const body = document.querySelector('body');
    

    Replace “body” with the unique class name of the page.

    const body = document.querySelector('.page-id-123');
    

    Best regards,
    Ismael

Viewing 30 posts - 8,761 through 8,790 (of 67,449 total)