Forum Replies Created

Viewing 30 posts - 15,031 through 15,060 (of 66,075 total)
  • Author
    Posts
  • Hi,

    The height of the parallax container should adjust on window resize or after the av_resize_finished event. Please post the login details in the private field so that we could check the modification and adjust it when necessary. Make sure that the Appearance > Editor panel is accessible.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Mobile menu not showing any menu items #1266206

    Hi,

    Thank you for the update.

    The items inside the mobile menu are now displaying properly. Did you figure out the issue? Which plugin are you using to switch to a different menu on mobile? It is possible that the plugin is not compatible with the theme.

    Best regards,
    Ismael

    in reply to: Header image size differs in Firefox / Chrome / IE #1266204

    Hi,

    Thank you for the update.

    This css code should keep the main logo aligned to the center on scroll.

    .logo img {
    	left: 50%;
    	transform: translateX(-50%);
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Looks like you have not installed a child theme yet. If you want to install one, please create a site backup or a restore point in case anything goes wrong, then check the following documentation.

    // https://kriesi.at/documentation/enfold/child-theme/

    Please post the WP and FTP details in the private field so that we could add the modifications.

    Best regards,
    Ismael

    in reply to: Widget Area in Nav (Logo Left, Nav Left, Widget Right) #1266199

    Hi,

    Try to revert the value of the justify-content property back to space-between, then adjust the order of the elements so that the logo comes before the menu, then move the widget or phone number to the left.

    .responsive #top #header #header_main .inner-container .main_menu {
    	order: 3;
    }
    
    .responsive #top #header #header_main .inner-container .logo {
    	order: 2;
    }
    
    .responsive #top #header #header_main .inner-container .widget {
    	order: 1;
    }
    

    You may have to remove this css code.

    .responsive #top #header #header_main .inner-container .widget {
    	right: 0;
    	position: absolute !important;
    }
    

    Best regards,
    Ismael

    in reply to: Move anchors offset on mobile #1266197

    Hi,

    Have you tried to adjust the scroll_offset even more? Currently, the snippet above adds 48px to the default offset value.

    $header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
    

    Try to adjust the value from 48 to a higher integer.

    Best regards,
    Ismael

    in reply to: PROBLEM WITH LOOP IN VIDEO #1266191

    Hi,

    Thank you for the update.

    That is odd. Does it work correctly when you remove the slider and leave the video element? If it is still not working, please use the easy slider temporarily.

    Best regards,
    Ismael

    in reply to: aamplugin – Shortcode works to 50%? :D #1266186

    Hi,

    You are very welcome! Please do not hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Align Middle on Tables in Enfold #1266184

    Hi,

    Is it possible to set padding for each column separately

    That is possible using nth-child selectors but it would be a bit more difficult to maintain. For example, to target the second cell in the second column, we can use this css code.

    .avia-table .pricing-table-wrap:nth-child(2) .pricing-table li:nth-child(2) {
    	padding: 100px 0;
    }
    

    For the 3rd cell in the 3rd column use this.

    .avia-table .pricing-table-wrap:nth-child(3) .pricing-table li:nth-child(3) {
    	padding: 80px 0;
    }
    

    The difficult part is that you may have to adjust these values on different screen sizes.

    Best regards,
    Ismael

    in reply to: Issue with Masonry on mobile #1266181

    Hi,

    Awesome. We will close the thread now. Please do not hesitate to open a another should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Setting min-height of main content window using jQuery #1266180

    Hi,

    Welcome back! Thank you for the update.

    Is it working properly again now? Please post the site or page URL so that we could check the modification.

    Best regards,
    Ismael

    in reply to: Change styling of checkout and cart page #1266179

    Hi,

    You have to replace the value of the is_page function with the actual ID of the checkout page.

    is_page(array(18))
    

    Replace 18 with the ID or name of the checkout page which is 436.

    is_page(array(436))
    

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Bug in contact.js breaking all validation logic #1266004

    Hi,

    However, if a form field has nothing filled in and is has no specific validation set, there is no remaining way for it to validate and hence that situation gets stuck without a 'valid' class.
    

    Sorry for the delay. Fields without validation is automatically assumed or deemed as not important, so it does not matter if it is validated or not or if it is empty — the form will be sent regardless. The only difference is that the fields will not receive the “valid” class, as you have observed, or will not have the green line around it if it is empty when the form is sent, but then again the form will still work as expected.

    Best regards,
    Ismael

    Hey aaziz_tensa,

    Thank you for the inquiry.

    The search icon is not visible because of this css code.

    #top #menu-item-search.menu-item-search-dropdown > a {
    	border-left: none;
    	display: none;
    }

    Please remove it or add the following css code to override it.

    #top #menu-item-search.menu-item-search-dropdown > a {
    	display: block !important;
    }
    

    Best regards,
    Ismael

    in reply to: WP media uploader issue #1265986

    Hi,

    Glad to know that it solved the issue. If possible, please open a single thread or ticket for each inquiry and avoid stacking multiple questions on a single post. And 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: Mobile cart fix #1265984

    Hi,

    Is there any way to access the live site or its staging version? We may need to inspect the elements further and test the css modifications. Which browser are you using?

    Best regards,
    Ismael

    in reply to: Portfolio Grid – Open to Ajax by Default #1265980

    Hi,

    Thank you for your patience.

    Would you like the Graham Capital menu item to open the first AJAX portfolio item in the page? If this is what you need, please try to use this snippet in the functions.php file.

    // trigger portfolio ajax on menu click
    function ava_script_events_container() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '(function($) {
    			(function($) {
    				$(document).ready(function() {
    				    // when the menu item with the ID 744 is clicked...
    				    $("#menu-item-744 a").on("click", function(event) {
    						// prevent the default action..
    						event.preventDefault();
    						// , then dispatch a click event to the portfolio item with the ID 44 to open it
    						$(".grid-entry.post-entry-44 a").trigger("click");
    					});
    				});
    			  })(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_script_events_container', 9999);
    

    As explained in the script comments, this will open the portfolio entry with the ID 44 when the menu item Graham Capital or the menu item with the ID 744 is clicked.

    Best regards,
    Ismael

    in reply to: Have both a text menu and an icon men in header #1265975

    Hi,

    Thank you for the update.

    We cannot find the custom WPML menu beside the burger menu. How did you add it? Unfortunately, you will not be able to add another menu beside the default icon menu with just css or without editing the template file as we explained in the previous thread.

    // https://kriesi.at/support/topic/hamburger-menu-next-to-default-menu-in-enfold/#post-1179337

    Best regards,
    Ismael

    in reply to: Change styling of checkout and cart page #1265973

    Hi,

    We can add a conditional function to the template file so that it only sets the palette to alternate_color when viewing the checkout page. Try to replace the snippet with this.

    
    <?php  $palette = is_page(array(18)) ? 'alternate_color' : 'main_color'; ?>
    <div class='container_wrap container_wrap_first <?php echo $palette . ' '; avia_layout_class( 'main' ); ?>'>
    

    Adjust the value inside the conditional function is_page to the actual ID of the checkout page.

    Best regards,
    Ismael

    in reply to: Google Maps Shortcode issue in a non-GDPR country #1265972

    Hi,

    Thank you for the update.

    Have you tried to disable the cache and minification plugins? The header and the rest of the scripts are currently minified and it is possible that the site is still using the outdated version of the scripts.

    Please post the login details in the private field so that we could check the site further. Make sure that the Appearance > Editor panel is accessible so that we could edit the files when necessary.

    Best regards,
    Ismael

    in reply to: The Events Calendar Won't Publish Events #1265969

    Hi,

    Did you change the password for the user account above? It is not working anymore. Please post the updated login info or create another account so that we could check the site further.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    It display back to how it should on Chrome once the browser is resized. Please try to add this snippet in the functions.php file to force a resize on page load.

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('debouncedresize resize');
    	}, 1000);
    	
    	$(window).load(function () {	
    		setTimeout(function() {
    			clearInterval(int);
    		}, 3000);
    	});
    })(jQuery);
    </script>
    <?php
    }
    

    Best regards,
    Ismael

    Hey bobfurgo,

    Thank you for the inquiry.

    Try to use the other format of the Youtube URL. Example:

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

    Or edit the icon element and add “lightbox” in the class attribute field.

    Best regards,
    Ismael

    in reply to: Potential Bug in FAQ Schema Accordeon Toggle #1265932

    Hey AlexR,

    Thank you for the inquiry.

    We cannot reproduce the issue on our end — the end of URL contains a hashtag or is in anchor format. Please check the screenshot below.

    Screenshot: https://imgur.com/a/OTfVb88

    We checked the site on Firefox Dev Windows 10. Which browser and OS are you using?

    Best regards,
    Ismael

    Hey Akiko,

    Thank you for the inquiry.

    We can use the avf_social_icons_options and avf_default_icons filters in the functions.php file to add a new social icon option in the existing list and associate a custom font icon to it. Usage example can be found in the following threads.

    // https://kriesi.at/support/topic/enfold-add-multiple-social-profile-icons/
    // https://kriesi.at/support/topic/custom-social-media-icon-in-the-socket/

    This an example of the snippet.

    // WIEBO - Register new icon as a theme icon
    function avia_add_custom_icon($icons) {
    	$icons['weibo']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	$icons['qq']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	$icons['wechat']	 = array( 'font' =>'fontawesomeregular', 'icon' => 'ue92b');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    // Add new icon as an option for social icons
    function avia_add_custom_social_icon($icons) {
    	$icons['Weibo'] = 'weibo';
    	$icons['QQ'] = 'qq';
    	$icons['WeChat'] = 'wechat';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    

    Add the snippet in the functions.php file and define the new icon after this line in the avf_social_icons_options filter.

    $icons[&#039;WeChat&#039;] = &#039;wechat&#039;;
    

    To associate a font icon to the new social icon, just follow the pattern in the avf_default_icons filter. This code defines the font icon that we have to use for the wechat social icon.

    $icons[&#039;wechat&#039;]	 = array( &#039;font&#039; =>&#039;fontawesomeregular&#039;, &#039;icon&#039; => &#039;ue92b&#039;); 
    

    Best regards,
    Ismael

    in reply to: Align Middle on Tables in Enfold #1265930

    Hi,

    Sorry for the delay. The vertical-align property will only work if the display property of the element is set to inline or table-cell. Unfortunately, setting either one of these values will break the current layout of the table.

    Best regards,
    Ismael

    in reply to: Grid Row video background #1265928

    Hey Josh,

    Thank you for the inquiry.

    Where did you get the css code? You cannot set a video file as background using css. You have to embed the video tag in the template directly and use css to adjust its size and position. Examples of these can be found in the following link.

    // https://css-tricks.com/full-page-background-video-styles/

    Best regards,
    Ismael

    in reply to: Header image size differs in Firefox / Chrome / IE #1265927

    Hi,

    Thank you for the update.

    It looks like that because the browser has to retain the aspect ratio of the image. To make it full width or to increase the width of the alternate logo image, try to use this css code.

    
    .responsive .logo {
            width: 100%;
    }
    
    .responsive .logo img.alternate {
    	left: 50%;
    	-webkit-transform: translate(-50%, 0);
    	-ms-transform: translate(-50%, 0);
    	transform: translate(-50%, 0);
    }
    

    Best regards,
    Ismael

    in reply to: Tabbed Megamenu #1265926

    Hey sastrysk,

    Thank you for the inquiry.

    What is not working? Have you managed to embed the custom menu to the template file? You may need to contact the plugin developer for additional assistance because they are more familiar with the plugin.

    The plugin’s documentation should help.

    // https://docs.themeum.com/wp-megamenu/getting-started-3/

    Best regards,
    Ismael

    Hey Leofiori,

    Thank you for the inquiry.

    It’s stated that built in enfold modules do not require a page reload after allowing cookies.

    Where is this stated? When the Default Cookie Behavior is not set to the first or the second option, users will have to accept the cookies first and manually reload the page, and only then will the map display and other external scripts will work. It is also possible to set the page to refresh automatically after the consent. The Auto Reload Page option is located in the Privacy & Cookies > Cookie Handling > Advanced Options section.

    Best regards,
    Ismael

Viewing 30 posts - 15,031 through 15,060 (of 66,075 total)