Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the update.
We adjusted the script a bit. You don’t have to do anything. The original logo should be displayed instead of the “cursive” one on tablet or iPad view.
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { var image = new Image(); if($(window).innerWidth() <= 767){ image.onload = function () { $('.logo img').attr('src', 'MOBILE LOGO'); $('.logo img').animate({'opacity' : 1}, 200); } image.onerror = function () { console.error("Cannot load image"); } image.src = "MOBILE LOGO"; } else { image.onload = function () { $('.logo img').animate({'opacity' : 1}, 200); } image.src = "DESKTOP VIEW"; } })(jQuery); </script> <?php }Best regards,
IsmaelHi,
It’s possible. Enable the “Sticky Header” option and then use this script in the functions.php file to disable it on other pages.
function ava_custom_script_sticky_header() { ?> <script> (function($) { var home = $('body').is('.home'); if(!home) $('html').removeClass('html_header_sticky'); })(jQuery); </script> <?php } add_action( 'wp_footer', 'ava_custom_script_sticky_header', 9999 );Best regards,
IsmaelHi,
That’s possible but not needed on mobile view or phone devices. Fixed elements take up space and may cover important content. Anyway, you can use this css code.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .main_menu { position: fixed; top: 0; right: 20px; } }Best regards,
IsmaelHi,
That is the placeholder for the single quotes. You can add more placeholders by editing the plugin file directly. These are the available placeholders…
$this->translate = array( '###lt###' => '<', '###gt###' => '>', '###amp###' => '&', '###91###' => '[', '###93###' => ']', '###quot###' => '"', '###34###' => "'" );And nobody answered my first question : why double-quotes had been replaced by single after 4.4.1 upgrade ?
I’m not really sure if this has been replaced so I have no idea why. I’m sorry.
Best regards,
IsmaelHi,
Thanks for the update.
The Header Secondary Menu in the Enfold > Header menu has to be enabled before using the “avia_meta_header” hook. We created a fake menu, added a custom link and then set it as the secondary menu. The form should display now but it may require a few style adjustments.
Best regards,
IsmaelHi,
Thanks for the update.
The site is running on an old version of the theme, 4.2. Please upgrade to version 4.4.1 then disable the compression options in the Enfold > Performance panel. Let us know if it helps.
Best regards,
IsmaelJune 22, 2018 at 6:27 am in reply to: Tabs – content of Tab 1 being repeated on every other Tab #976099Hi,
Thanks for the update.
Those warnings have nothing to do with the issue. The “avia_modal_js” script only loads when the builder is active thus the notices/warnings.
Best regards,
IsmaelHi,
You have to load the “jQuery-UI” library manually.
/** * Enqueue the jQuery UI datepicker script */ function wpdocs_scripts_datepicker() { wp_enqueue_script( 'jquery-ui-datepicker' ); } add_action( 'wp_enqueue_scripts', 'wpdocs_scripts_datepicker' );Best regards,
IsmaelJune 22, 2018 at 6:22 am in reply to: White Space under Filterable portfolio within Tab Section #976097Hi,
Thanks for the update.
Delay the execution a bit. Set the timeout to 1000ms instead of 100ms.
setTimeout(function() { $(window).trigger('av-content-el-height-changed'); }, 1000);The issue is that the tab section adjusts its height before the portfolio items are fully loaded so delaying the execution of the “set_slide_height” should help.
Best regards,
IsmaelJune 22, 2018 at 6:16 am in reply to: Magnificent Popup not workin (not recognized as a function) #976095Hi,
Thanks for the update.
We added the magnific popup style to the queue along with the needed scripts and created another hook to separate the internal script so it loads when the required files are available. It should work properly now.
Best regards,
IsmaelHi,
Thanks for the update.
The predefined theme colors are based from the General Styling > Main Content color values (Primary color). The theme automatically generates another color (light or dark) based on the primary color values.
Best regards,
IsmaelHi,
I would like to access the site but I can’t get past the htaccess authentication. I used the same login credentials for WP dashboard/admin. Please provide a valid login credential.
Best regards,
IsmaelHi,
Thanks for the screenshot.
You can actually move the milestone date container closer to the center but you’ll end up with a much shorter indicator on the milestones without images.
.avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date { left: -10px; } .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-odd .av-milestone-date { right: -10px; }Best regards,
IsmaelJune 22, 2018 at 5:17 am in reply to: Custom Footer Background for additional Languages (WPML) return 404 Error #976087Hi,
Thanks for the update.
This is an issue with the theme’s css compression option. We disabled that temporarily from the Enfold > Performance panel. Please upgrade to version 4.4.1 and then enable the compression option back.
Best regards,
IsmaelHi,
Thanks for the info.
I deleted the old file and uploaded the modified version. Icons are available now. (see private field)
Best regards,
IsmaelJune 21, 2018 at 5:13 am in reply to: White Space under Filterable portfolio within Tab Section #975658Hi,
Thanks for the info.
I adjusted the script a bit. The tab section auto adjusts now when you click on the sort buttons.
setTimeout(function() { $(window).trigger('av-content-el-height-changed'); }, 100);Best regards,
IsmaelHi,
1.) The layer slider that is included in the theme will always be full width. You can’t set the width manually or embed it in a different container such as columns. This is only possible when you purchased the plugin or when you have a plugin API key and use the layer slider as a stand alone plugin.
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,
IsmaelHi,
Thanks for the update.
The icon should have a link in order for this effect to display. Did you apply a link to the icon? Please provide the login credentials of the new site.
Best regards,
IsmaelHi,
Thanks for the update.
The gallery element doesn’t have a transition or auto-rotate feature by default. If you want your image to auto rotate, please replace the gallery element with a slider.
You can implement the auto rotate option in the gallery but it will require modifications that are beyond the scope of support as Jordan explained. Thank you for your understanding.
Best regards,
IsmaelHi,
Thank you for using Enfold.
The video loops when it is set as background. We disabled that and set the “Fill Mode” to “cover” so it still looks like a video background.
Best regards,
IsmaelHi,
Did you enable the mobile menu back? I can’t see the issue shown in the screenshot.
Best regards,
IsmaelHi,
Thanks for the info.
The site is not running on the latest version of the theme. Please upgrade the theme from version 4.0.2 to the latest version (4.4.1) then use the new “Custom Font Manager” feature to upload your own custom google font locally. Configure the Enfold > Performance settings when you encounter any issues after the update.
More info here: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Best regards,
IsmaelJune 21, 2018 at 4:27 am in reply to: Events No Longer Formatting Correctly Using Church Demo #975646Hey adventuresincre,
Thank you for using Enfold.
The css or the required stylesheets are missing. Please disable the css and js compression from the Enfold > Performance panel and deactivate the cache plugin if there’s any. Let us know it helps.
Best regards,
IsmaelHey havi,
Thank you for using Enfold.
That container should have a play button and the video should be embedded on it when it’s allowed or open in a new window when they’re not as per the users’ privacy preference. Please provide the login details in the private field so that we can check the theme files. Did you modify anything in the child theme folder?
Best regards,
IsmaelHey Rgrant74,
Thank you for using Enfold.
You have to edit the files on your cpanel or via FTP. Please ask your hosting provider to provide you with the correct FTP credentials. You can also generate that manually in your cpanel. The code works on my installation.
add_filter( 'woocommerce_product_tabs', 'av_remove_product_tabs', 98 ); function av_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); return $tabs; }Best regards,
IsmaelHey Nathan,
Thank you for using Enfold.
The page isn’t loading properly on my end. Is that the correct url? Please contact the plugin authors for additional help.
Best regards,
IsmaelHey finchkelsey,
Awesome! Glad it is fixed. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHey SvHa,
Thank you for using Enfold.
This css code should increase the height of the logo on mobile view or when the screen width is equal or less than 767px.
@media only screen and (max-width: 767px) { .responsive .logo img { max-height: 150px; } }Let us know if it helps. :)
Best regards,
IsmaelHey DesignIt,
Thank you for using Enfold.
Are the compression options enabled? Please check the css and js compression settings in the Enfold > Performance panel. Make sure that they are disabled while you’re changing the theme options or theme colors.
Best regards,
Ismael -
AuthorPosts
