Forum Replies Created
-
AuthorPosts
-
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,
IsmaelHi,
Sorry for the delay. Yes, you can add that shortcode anywhere in the site to allow users to disable the map cookie.
Best regards,
IsmaelHi,
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,
IsmaelAugust 6, 2019 at 1:46 am in reply to: Update to Enfold 4.x kills Master Slider functions with standard overlays #1124929Hi,
It’s still not working. Please check the login credentials.
Thank you for the update.
Best regards,
IsmaelHi,
Danke fur das Update, und fur die Lösung teilen.
Funktioniert das Skript ohne diese Zeile?
megaParent.trigger('mouseleave');Best regards,
IsmaelHi,
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,
IsmaelAugust 5, 2019 at 2:29 pm in reply to: Change featured image in shop when category is selected #1124751Hi,
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,
IsmaelHi,
You’re welcome. Indeed, you shouldn’t stop learning.
Let us know if you need anything else.Have a good one!
Best regards,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
Thank you for the update. It’s asking for a password. We don’t have access to that email. (see private field)
Best regards,
IsmaelAugust 5, 2019 at 1:55 pm in reply to: I cannot Preview Advanced Layer Slider after update wordpress #1124734Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi
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,
IsmaelAugust 5, 2019 at 3:22 am in reply to: How to display parent page title on postslider on homepage? #1124616Hi,
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,
IsmaelHi,
Sorry about that. We adjusted the code a bit. Please try it again.
Thank you for the update.
Best regards,
IsmaelAugust 5, 2019 at 3:07 am in reply to: button link option display error after copy to other language [using WPML] #1124614Hi,
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,
IsmaelAugust 5, 2019 at 2:59 am in reply to: Create a WooCommerce page displaying on sale products #1124612Hi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHi,
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,
IsmaelHey 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,
IsmaelAugust 5, 2019 at 1:22 am in reply to: My website is suddenly very slow due to a cookie called PHPSESSID #1124602Hi,
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,
IsmaelAugust 5, 2019 at 1:13 am in reply to: problem with color section overlap in some mobile devices #1124601 -
AuthorPosts
