Forum Replies Created

Viewing 30 posts - 22,111 through 22,140 (of 67,491 total)
  • Author
    Posts
  • in reply to: Ipad behaviour at Mega Menu #1124932

    Hey!

    Thank you for the info.

    It seems to be working properly on Edge. The mega menu container disappears on click after half a second. If it works on IE or Edge, then it will also work on older iOS devices, based on experience.

    Regards,
    Ismael

    in reply to: Info about Enfold #1124931

    Hi,

    Sorry for the delay. Yes, you can add that shortcode anywhere in the site to allow users to disable the map cookie.

    Best regards,
    Ismael

    in reply to: New Beta Version – Slider Revolution #1124930

    Hi,

    Thank you for the update.

    We set the slider sizing from “Fullwidth” to “Full Screen”. And regarding the scroll issue, try to add this code to offset the scroll position.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
    	return $header;
    }
    

    Best regards,
    Ismael

    Hi,

    It’s still not working. Please check the login credentials.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Ipad behaviour at Mega Menu #1124755

    Hi,

    Danke fur das Update, und fur die Lösung teilen.

    Funktioniert das Skript ohne diese Zeile?

    megaParent.trigger('mouseleave');
    

    Best regards,
    Ismael

    in reply to: Changing the mobile buger menu #1124753

    Hi,

    Thank you for the update.

    You have to replace it with the css code above. Here it is:

    .html_av-submenu-hidden li a .av-submenu-indicator {
        font-size: 30px;
    }
    

    Best regards,
    Ismael

    in reply to: Change featured image in shop when category is selected #1124751

    Hi,

    Thank you for the update.

    Are you trying to hide the first image of the products with the category “bonji-dab”? This css code might help.

    .product_cat-bonji-dab .thumbnail_container img:nth-child(1) {
        opacity: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: PHP-Problem / Startpage has an php-memory-error! #1124746

    Hi,

    You’re welcome. Indeed, you shouldn’t stop learning.
    Let us know if you need anything else.

    Have a good one!

    Best regards,
    Ismael

    in reply to: Change Footer font #1124742

    Hi,

    That is possible, but you have to modify the includes > admin > register-widget-area.php file.

    	#footer
    	$footer_columns = avia_get_option( 'footer_columns', '5' );
    
    	for ($i = 1; $i <= $footer_columns; $i++)
    	{
    		register_sidebar(array(
    			'name' => 'Footer - column'.$i,
    			'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    			'before_title' => '
    <h3 class="widgettitle">', 
    			'after_title' => '</h3>
    ', 
    			'id'=>'av_footer_'.$i
    		));
    	}
    

    Set the “$footer_columns” value from 5 to 6. Then edit the includes > register-admin-options.php file, look for this code:

    $avia_elements[] =	array(
    					"slug"	=> "footer",
    					"name" 	=> __("Footer Columns", 'avia_framework'),
    					"desc" 	=> __("How many columns should be displayed in your footer", 'avia_framework'),
    					"id" 	=> "footer_columns",
    					"required"	=> array( 'display_widgets_socket', '{contains_array}all;nosocket' ),
    					"type" 	=> "select",
    					"std" 	=> "4",
    					"subtype" => array(
    						__('1', 'avia_framework') =>'1',
    						__('2', 'avia_framework') =>'2',
    						__('3', 'avia_framework') =>'3',
    						__('4', 'avia_framework') =>'4',
    						__('5', 'avia_framework') =>'5'));
    

    Add the 6th option in “subtype” array.

    Best regards,
    Ismael

    in reply to: Change Footer font #1124741

    Hi,

    That is possible, but you have to modify the includes > admin > register-widget-area.php file.

    	#footer
    	$footer_columns = avia_get_option( 'footer_columns', '5' );
    
    	for ($i = 1; $i <= $footer_columns; $i++)
    	{
    		register_sidebar(array(
    			'name' => 'Footer - column'.$i,
    			'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    			'before_title' => '
    <h3 class="widgettitle">', 
    			'after_title' => '</h3>
    ', 
    			'id'=>'av_footer_'.$i
    		));
    	}
    

    Set the “$footer_columns” value from 5 to 6. Then edit the includes > register-admin-options.php file, look for this code:

    $avia_elements[] =	array(
    					"slug"	=> "footer",
    					"name" 	=> __("Footer Columns", 'avia_framework'),
    					"desc" 	=> __("How many columns should be displayed in your footer", 'avia_framework'),
    					"id" 	=> "footer_columns",
    					"required"	=> array( 'display_widgets_socket', '{contains_array}all;nosocket' ),
    					"type" 	=> "select",
    					"std" 	=> "4",
    					"subtype" => array(
    						__('1', 'avia_framework') =>'1',
    						__('2', 'avia_framework') =>'2',
    						__('3', 'avia_framework') =>'3',
    						__('4', 'avia_framework') =>'4',
    						__('5', 'avia_framework') =>'5'));
    

    Add the 6th option in “subtype” array.

    Best regards,
    Ismael

    in reply to: Layer Slider Text: Space before and after text #1124736

    Hi,

    Thank you for the update. It’s asking for a password. We don’t have access to that email. (see private field)

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We can’t login to the server using any of the FTP accounts above. Did you change the account details? They are not working or not valid.

    Best regards,
    Ismael

    in reply to: Fullscreen slider #1124630

    Hi,

    Unfortunately, images do not fully show on some display resolutions.

    1.) That’s because it has to retain the aspect ratio. Again, you can set the background-size property from “cover”, which is the default Background Repeat option, to “contain” or “100%”, but it will distort the image or create space around the container. You can try the css code above.

    b.) No, that’s not possible. You can only choose the thumbnail size.

    c.) What do you mean?

    Best regards,
    Ismael

    in reply to: logo in full size and centered #1124627

    Hi,

    Alright. For the 404 issue, try to reset the Settings > Permalink options. We’ll close the thread now. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Remove Animation from easy slider #1124626

    Hi,

    Thank you for the update.

    Remove the above css code and set the slider to “slide” and not “fade”. The slide effect is very subtle. Unfortunately, we can’t disable the animation without affecting the slider script.

    Best regards,
    Ismael

    in reply to: tab links scroll upward #1124625

    Hi,

    Thank you for the update.

    We disabled the default scroll_top method and set it to scroll to the top after clicking the tab anchor.

    setTimeout(function(){
       window.scrollTo(0, 0);
    }, 0);	
    

    Best regards,
    Ismael

    in reply to: Ipad behaviour at Mega Menu #1124624

    Hi,

    Thank you for the update.

    This script might work.

    function add_megamenu_touch_fix(){
    ?>
    <script>
    (function($){	
    	$('#avia-menu .menu-item-mega-parent .avia_mega_div a').on('touchstart', function () {
    		setTimeout(function(){ 
    			$(this).closest('.menu-item-mega-parent').find('> a').trigger('mouseleave');
    		}, 500);	
    	});
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_megamenu_touch_fix');

    That should simulate a mouseleave event in the parent menu item, which triggers the megaDivHide function, and thus close the mega menu container.

    Best regards,
    Ismael

    in reply to: Need clarification on basics in General Styling #1124623

    Hi,

    Try to set the scheme to a color that is different from the rest, edit the dynamic css and look for the color value. By reading the selectors in the css declarations, you’ll figure out which elements are affected by a certain color scheme.

    Best regards,
    Ismael

    in reply to: Lightbox Gallery Captions Not Showing #1124620

    Hi,

    Thank you for the update.

    The lightbox script is not configured to look for the caption of the masonry content, only the title attribute. This is how the lightbox works ever since. If you want to confirm it, edit the js > avia-snippet-lightbox.js file and look for this code around line 43.

    			image: {
    			    titleSrc: function(item){
    				    var title = item.el.attr('title');
    				    if(!title) title = item.el.find('img').attr('title');
    				    if(!title) title = item.el.parent().next('.wp-caption-text').html();
    				    if(typeof title == "undefined") return "";
    				    return title;
    				}
    			},
    

    That script looks for the title attribute, which is usually in the link tag. If it doesn’t find it in the link tag, it will look for the title in the img tag, then in “wp-caption-text” container content. This caption container is not present in the masonry gallery, so I don’t really know how you made it work before.

    Most lightbox script relies on the title attribute, so if you want to make this work without any modification, you have to put the caption in the title attribute or retain the previous modification.

    Best regards,
    Ismael

    in reply to: setting menu display #1124619

    Hi

    Sorry for the delay. After adding the script, you can pull the header container upwards with the following css code.

    #header {
        margin-top: -100px;
    }

    The top margin value should be the same as the header height. This is going to move the header within the bottom part of the main slider.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Replace the get_the_terms with the get_term_children function.

    // https://codex.wordpress.org/Function_Reference/get_term_children

    Best regards,
    Ismael

    in reply to: Changing the mobile buger menu #1124615

    Hi,

    Sorry about that. We adjusted the code a bit. Please try it again.

    Thank you for the update.

    Best regards,
    Ismael

    Hi,

    Thank you for using Enfold.

    What do you mean by “7. Link settings run away”? Does it mean that the link doesn’t work after the translation? Do you have a translated version of the “CSR” page? Please make sure that the link points to the translated version of the “CSR” page.

    Best regards,
    Ismael

    in reply to: Create a WooCommerce page displaying on sale products #1124612

    Hi,

    Thank you for the update.

    Are you using the product grid element? I don’t think that’s how the plugin works. You have to set a page as the “sales page” and it will automatically render a default woocommerce grid displaying all the sales product. You may need to switch to the default editor and not use the advance layout builder.

    Best regards,
    Ismael

    in reply to: Layerslider API help #1124611

    Hi,

    Thank you for the info.

    You can actually change that in the Slider Settings > Slideshow > Slideshow Behavior settings. Set the “Start slider with” value to the ID of the desired slide.

    Best regards,
    Ismael

    in reply to: Logo mittig, Menü links und rechts #1124610

    Hi,

    Danke fur das Update.

    Die Höhe der Seitenleiste ist basiert auf seinem Inhalt. Es hat nicht die gleiche Höhe wie der Hauptinhalt Container, so müssen Sie einen Weg finden, um die Sidebar die Höhe des Inhalts Container machen erben.

    Best regards,
    Ismael

    in reply to: cookie opt-in EU #1124607

    Hi,

    Danke fur das Update.

    Es ist möglich mit dem Theme. Bitte gehen Sie zum Bereich Enfold > Privacy Cookies, und aktivieren Sie die Option Modal Window with Privacy and Cookie Info. Dies sollte eine Datenschutzinformation in einem modal window öffnen.

    Best regards,
    Ismael

    in reply to: Stop Scrolling to top (Ajax Portfolio) #1124604

    Hey Arne,

    Thank you for using Enfold.

    The script is transferred in the config-templatebuilder > aviashortcodes > portfolio > portfolio.js file. The scroll_top method is called at line 204 and 229.

    methods.scroll_top();
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Why would it slow down the page? Creating session is a default PHP feature. It’s a way to store information same as a cookie, but the data is only available until the user close the browser.

    If you want to disable any sessions from the theme, add this filter in the functions.php file.

    current_theme_supports('avia_no_session_support')
    

    This will affect the breadcrumb.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Did you enable the parallax effect for that section? Please try to disable it temporarily. Make sure that you actually check the background settings.

    Best regards,
    Ismael

Viewing 30 posts - 22,111 through 22,140 (of 67,491 total)