Forum Replies Created
-
AuthorPosts
-
Hey juliacecere,
Thank you for using Enfold.
Where can we find the page with the issue? Please switch the builder to debug mode then edit the page with the issue. Check if the shortcodes are still there.
// http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Best regards,
IsmaelFebruary 6, 2017 at 5:43 am in reply to: Is it possible to add blog posts with different languages in one blog page? #743137Hey secMax!
Thank you for using Enfold.
I’m sorry but this is not possible at the moment. The blog posts element can only display posts from the current language. And I’m not sure if the plugin is capable of this feature. Please contact the plugin author for additional info.
Cheers!
IsmaelFebruary 6, 2017 at 5:41 am in reply to: unwanted space beetween sidebar and page background #743135Hey mosaiqueenceze,
I’m sorry if we didn’t answer you question the last time. Where is the previous thread?
1.) I checked the page but I can’t find the “blanck space” issue. Could you please provide a screenshot? Please use imgur or dropbox.
2.) Do you want to disable the footer columns? If you do, please go to the Enfold > Footer panel then set the “Footer Columns” accordingly.
Best regards,
IsmaelFebruary 6, 2017 at 5:36 am in reply to: Color Section with video background keeps on re-downloading #743131Hi,
@bzcastell: I’m sorry about that. I checked @fr0ztzz site instead of yours. I can confirm that the issue exists on Chrome but not on Firefox. This seems to be a chrome bug according to this git discussion.
// https://github.com/dfcb/BigVideo.js/issues/83
Please add this configuration in your .htaccess file.
# BEGIN Expire headers <ifModule mod_expires.c> ExpiresActive On ExpiresDefault "access plus 5 seconds" # cache.appcache needs re-requests in FF 3.6 (thanks Remy ~Introducing HTML5) ExpiresByType text/cache-manifest "access plus 0 seconds" ExpiresByType application/x-shockwave-flash "access plus 2592000 seconds" ExpiresByType video/mp4 "access plus 86400 seconds" </ifModule> # END Expire headersI’m not sure if that is going to help but it’s worth a try.
Best regards,
IsmaelHey HuxburyQuinn,
Thank you for using Enfold.
This is not possible at this moment, unfortunately. You can only lock the whole advance layout builder for non-admins. Please request the feature in the following link.
// https://kriesi.at/support/enfold-feature-requests/
Best regards,
IsmaelFebruary 6, 2017 at 5:06 am in reply to: Woocommerce Hide price, mark sold throughout website #743118Hi,
Do you want to translate the “Sold” text to french? If you do, you can use the following plugin.
// https://wordpress.org/plugins/say-what/
Please provide a link to a product without stock on the French version.
Best regards,
IsmaelHi,
Thank you for the info and patience.
We modified the code in the Quick CSS field and then added the following script in the functions.php file.
function ava_mobile_menu(){ ?> <script> (function($){ $(window).on("resize orientationchange", function() { var wrap = $('#wrap_all'); if(wrap.hasClass('show_mobile_menu')) { wrap.removeClass('show_mobile_menu'); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_mobile_menu');This is the new css modification.
#wrap_all { position: relative; } #mobile-advanced { right: 0; top: -100%; /* set the mobile menu position */ -webkit-transform-origin: 100% 0; -moz-transform-origin: 100% 0; -ms-transform-origin: 100% 0; transform-origin: 100% 0; } .avia_transform3d .show_mobile_menu #mobile-advanced { -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); /* on transition, pull down the mobile menu container */ } .show_mobile_menu #mobile-advanced{ -webkit-transform: translate(0, 100%)!important; -moz-transform: translate(0, 100%)!important; -ms-transform: translate(0, 100%)!important; transform: translate(0, 100%)!important; }Best regards,
IsmaelHi,
Yes, you can override the template in a child theme. Which specific part of the email template are you trying to modify? Maybe, you’re editing the wrong file.
Best regards,
IsmaelHi,
Please check this part of the header.php file.
<?php if(isset($avia_config['temp_logo_container'])) echo $avia_config['temp_logo_container']; do_action('ava_after_main_container'); ?> do_action('ava_after_main_menu');.. it should be:
<?php if(isset($avia_config['temp_logo_container'])) echo $avia_config['temp_logo_container']; do_action('ava_after_main_container'); do_action('ava_after_main_menu'); ?>Best regards,
IsmaelHi,
We are very sorry for the late response. We added the css modification in the Quick CSS field and it seems to be working now. Please look at the following page.
// https://www.staging3.atcarolines.ch/shop/
This is the css modification.
@media only screen and (max-width: 736px) { .avia_textblock pre, .responsive #top #main .products .product { width: 45.6% !important; margin: 0 4% 1% 0; } }Best regards,
IsmaelHi,
If the product has multiple categories, the post navigation should return adjacent posts that belong to any of those categories. Please upgrade your WordPress installation to 4.7.2. I’m not sure if this is going to help but it’s worth a try.
Best regards,
IsmaelHi!
@endanight: I’m sorry but what do you mean by “credentials”? Please create a new thread with the url plus the login credentials. We’ll check the issue there.
@anniehaz: Great!Best regards,
IsmaelHi!
Please wrap the shortcode inside the following markup.
<div class="avia-video avia-video-16-9 " itemprop="video" itemtype="https://schema.org/VideoObject"><div class="avia-iframe-wrap">VIDEO SHORTCODE HERE</div></div>Cheers!
IsmaelHey!
I’m not really sure what’s going on in your installation. Could you please ask your hosting provider if they blocked the admin-ajax.php file? What is the current PHP version? I can’t install a plugin because of the admin-ajax.php error. If possible, please install this extension manually.
// https://wordpress.org/plugins/debug-this/
Cheers!
IsmaelHi!
2.) Set the Menu and Logo Position to “Logo center, menu above” then add this in the Quick CSS field.
.html_header_top.html_logo_center .logo { left: 0; -webkit-transform: none; -ms-transform: none; transform: none; }3.) Please add this in the functions.php file.
function ava_mobile_logo(){ ?> <script> (function($){ $(window).resize(function() { var oldSrc = $('.responsive .logo img').attr('src'), newSrc = 'http://www.gardengatemysteries.com/wp-content/uploads/2017/01/logo-2.png'; var isMobile = ''; if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) && 'ontouchstart' in document.documentElement) { isMobile = true; } else { isMobile = false; } if(!isMobile) return; $('.responsive .logo img').attr('src', newSrc); }).resize(); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_mobile_logo');4.) I’m sorry but you cannot set the header to be transparent on mobile.
Best regards,
IsmaelHey!
There are additional color sections wrapping the special headings and the separators. If you want, you can go back to the previous revisions so that you can compare it.
Cheers!
IsmaelHey!
Thank you for the update. Please remove browser cache before checking the page. And note that the comments tab will display once the page finished loading.
Regards,
IsmaelHi!
I’m sorry but you’re not following our instructions. Previously, we suggested a filter in the functions.php file, please remove that one and then add the following filter.
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2); function avia_post_slide_query_mod( $query, $params ) { $query['post_status'] = array( 'publish', 'private' ); return $query; } add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2); function avia_masonry_entries_query_mod( $query, $params ) { $query['post_status'] = array( 'publish', 'private' ); return $query; }Regards,
IsmaelHey!
I was able to reproduce the problem but I can’t find the cause of the issue. Are you planning to have the same prices for all variable products? Please try this in the functions.php file:
function ava_get_woocommerce_currency_callback() { $symbol = get_woocommerce_currency_symbol(); echo "<script type='text/javascript'>"; echo "var avia_framework_globals_mod = avia_framework_globals_mod || {};"; echo " avia_framework_globals_mod.woocommerceCurrency = '".$symbol."';"; echo "</script>"; } add_action('wp_footer', 'ava_get_woocommerce_currency_callback', 10, 1); // custom script function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function a() { $('.av-woo-purchase-button').each(function() { var form = $(this).find('.variations_form'), pc = $(this).find('.woocommerce-variation-price'), product_variations = form.data('product_variations'), symbol = avia_framework_globals_mod.woocommerceCurrency, currency = "<span class='woocommerce-Price-currencySymbol'>"+symbol+"</span>", price = '', check = pc.find('.woocommerce-Price-currencySymbol').length !== 0; $(product_variations).each(function() { var vaddcart = $('.woocommerce-variation-add-to-cart').find('.variation_id'), varID = $(this).variation_id; if(varID == vaddcart) { price = $(this).display_price; } }); //console.log(check); if(check) return; pc.append("<span class='price'><span class='woocommerce-Price-amount amount'>"+ currency + price +"</span></span>"); }); } $("#top .variations select").on('click', function() { setTimeout(function() { a(); }, 1000); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script', 10, 2);Best regards,
IsmaelHey!
@Heathcliffe: Please create a new thread with the url to the site plus the login credentials. We’ll check it there. For the meantime, please check if the WP_MEMORY_LIMIT is set to at least 128MB.// https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Best regards,
IsmaelHi!
2.) Please refer to the following link then look for the Products shortcode.
// https://docs.woocommerce.com/document/woocommerce-shortcodes/
3.) This is possible but you need to install a third party extension such as the following.
// https://docs.woocommerce.com/document/woocommerce-color-and-image-swatches/
// https://woocommerce.com/products/variation-swatches-and-photos/There’s a free plugin but I’m not sure if it’s compatible with the theme.
// https://wordpress.org/plugins/color-and-image-swatches-for-variable-product-attributes/Cheers!
IsmaelHey!
Is it working if you use the default video shortcode?
// https://codex.wordpress.org/Video_Shortcode
Please use the shortcode in a text or code block. If this is not working, please post the FTP details here so that we can check the video element further.
Cheers!
IsmaelHi!
The admin-ajax.php file should have lesser request because the heartbeat-api is disabled. Please remove browser cache before testing the page where the advance layout builder is not working.
Cheers!
IsmaelHi!
The actual device width of the Samsung Galaxy Tab S2 is 768x1024px because its css pixel ratio is 2 (http://www.canbike.org/CSSpixels/). Please adjust your css media queries for the sliders.
@media only screen and (min-width: 1024px) { .mobile-slider { display: none !important; } } @media only screen and (max-width: 767px) { .mobile-slider { display: block !important; } .desktop-slider { display: none !important; } }Best regards,
IsmaelFebruary 4, 2017 at 7:43 am in reply to: On Submit of Gravity Form, Page Anchors to Top and Not at the Start of the Form #742685Hey!
I’m sorry about that but we don’t usually provide support for third party plugins as stated on our support policy. Anyway, I checked the page above, submitted the form, the page refreshed and it scrolled back to the contact form because an anchor link has been created.
<a id="gf_13" class="gform_anchor"></a>The hash “gf_13” has been added to the url. Did you add this container as a solution to the issue?
Cheers!
IsmaelHi!
We can set a 10px padding on both sides of the portfolio items but you have to move other elements such as the “Recent Work” title.
.grid-sort-container > .grid-entry { padding-bottom: 10px !important; padding: 0 10px 0 10px !important; }Best regards,
IsmaelHey Jean-Francois!
Thank you for using Enfold.
I’m sorry but that option is not possible at the moment. You can disable the link altogether if you want.
div .portfolio-preview-image .avia-slideshow a { pointer-events: none; }Please request the feature here.
// https://kriesi.at/support/enfold-feature-requests/
Regards,
IsmaelHey danytelles!
Thank you for using Enfold.
Please edit the video then set the “Video Display” to the second option. Note that the option might cut off parts of the video in order to keep its aspect ratio.
Best regards,
IsmaelHey thecszone!
Thank you for using Enfold.
1.) Could you please provide the actual url of the logo image? I checked the site and the logo images are small. Are you planning to place the menu below the logo? Please set the Menu and Logo Position accordingly then set the “Header Size” to “custom pixel value”. Adjust the Header Height to the height of the logo.
2.) Please go to the Appearance > Menus panel, create two menus. Set the first menu as “Enfold Child Main Menu” and the other as the “Enfold Child Secondary Menu “. The first menu will be displayed as the main menu while the latter will go to the “meta area” in the header.
3.) We’ll check this again when you’re done with number 1.
Regards,
IsmaelFebruary 4, 2017 at 6:15 am in reply to: Manual control of blog excerpt link–and get rid of brackets around ellipsis? #742661Hey dkrausJFA!
Thank you for using Enfold.
1.) Please use the following filter in the functions.php file to limit the number of excerpt characters.
function excerpt_length_mod( $length ) { return 20; } add_filter( 'excerpt_length', 'excerpt_length_mod', 999 )2.) Use this one to remove the ellipsis.
add_filter('excerpt_more','__return_false');Cheers!
Ismael -
AuthorPosts
