Forum Replies Created
-
AuthorPosts
-
Hey Jason,
Thank you for using Enfold.
I’m sorry if we closed the thread prematurely but I was just trying to inform you how the queue works, that bumping could mean delayed response from us. We encourage users to provide sufficient information about any issue and share the solution if they found one. Regarding the suspicious activity, is this still happening? I didn’t have the chance to inspect the site because you told us that you already found the plugin.
Best regards,
IsmaelHi,
I’m very sorry for the delay and confusion. Did you include the default-template.php file in the child theme? Please replace the code in the functions.php file with the following:
add_action('after_setup_theme', function() { if(is_child_theme()) remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2); }); add_action('tribe_events_template', 'avia_events_template_paths_mod', 10, 2); function avia_events_template_paths_mod($file, $template) { $redirect = array('default-template.php', 'single-event.php'); if(in_array($template, $redirect)) { $file = get_stylesheet_directory() . "/tribe-events/views/".$template; } return $file; }Make sure that the default-template.php and single-events.php file is inside the tribe-events/views folder.
Best regards,
IsmaelHi,
It’s easier if the “dark” container is inside because it can inherit the width and height of the wrap_all container. :)
Best regards,
IsmaelSeptember 22, 2016 at 8:40 am in reply to: Background image on color section streched beyond screen size #690150Hi!
Thank you for using Enfold.
The image overflows outside the color section because it is applied in another container called “av-parallax”. This container is taller than the actual color section which is necessary in order to generate the parallax effect. We can set the background size property of this container to 100% but it will distort the image.
.av-parallax .avia-full-stretch { background-size: 100% 100% !important; }Cheers!
IsmaelHi Zest!
Thank you for using Enfold.
This is possible but you have to create a custom field and the sale price will not be automatically updated after the date expiration. In a product, add a custom field called “sale_expiration” and add a date with Y-m-d format (ex: 2016-10-18). After that, add this in the functions.php file:
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_sale_expiration', 1 ); function woocommerce_output_sale_expiration() { $salexp = get_post_meta(get_the_ID(), 'sale_expiration', true); $salexpiration = strtotime($salexp); $expiration = $salexpiration + (7 * 24 * 60 * 60); $today = current_time('timestamp'); $date = date("F j, Y", strtotime($salexp)); if($expiration > $today) { echo "Sale price valid until: " . $date; } }The sale price is still valid so it should render the following text:
Sale price valid until: October 18, 2016Best regards,
IsmaelHi!
Please add this in the Quick CSS field:
@media only screen and (min-width: 768px) { .av-inner-masonry-content { min-height: 86px; } }Regards,
IsmaelHey opvab!
Thank you for using Enfold.
I tested the site on emulation and an iPod Touch but I can’t move the main container. Could you please provide a screenshot or a short clip of the issue?
Best regards,
IsmaelHi M!
Thank you for using Enfold.
The up sell products should display automatically if it is set in a product. Unfortunately, you cannot display cross sells in the single product page because it will only display in the cart page.
Regards,
IsmaelHi M!
Thank you for using Enfold.
Please crop the source or original logo then remove all white spaces around it. Upload it again. It will automatically inherit the height of the header. If you want to increase the height of the header, go to the Enfold > Header > Header Size.
// http://veeamshop.com/website/wp-content/uploads/2016/09/veeamshop-logo-e1474293701918.png
Regards,
IsmaelHi!
Yes, unfortunately, it will be overwritten on update and you can’t do this modification in the child theme. Please create a change log or a note about the modification in case you update the theme. You can also look into the MagnificPopup documentation, maybe you will find something to initialize the video link by itself.
// http://dimsemenov.com/plugins/magnific-popup/documentation.html
Related thread:
// https://kriesi.at/support/topic/lightbox-9/#post-669472
// https://kriesi.at/support/topic/iframetrue-not-working-with-menu-items-in-secondary-menu/#post-684843Cheers!
IsmaelHi!
That was intentional and it is based on the yoast heading structure for blog page. https://yoast.com/blog-headings-structure
If you want to have an h1 tag there, please add this in the functions.php file:
add_filter('avf_title_args', 'avf_title_args_mod', 10, 2); function avf_title_args_mod($args,$id) { $blogpage_id = avia_get_option('blogpage'); if(!empty($blogpage_id) && get_post_meta($blogpage_id, 'header', true) != 'no') { $args['heading'] = 'h1'; } return $args; }Cheers!
IsmaelSeptember 22, 2016 at 7:20 am in reply to: Enfold with WPML : Fontawesome icons don't display #690107September 22, 2016 at 7:18 am in reply to: Custom post template working with avia builder elements ? #690105Hey birbidouille!
Thank you for using Enfold.
Yes, you can use the do_shortcode function to render a specific element or shortcode in a template. Could you please explain your intentions further? And you might find custom fields useful.
// https://codex.wordpress.org/Custom_Fields
// https://developer.wordpress.org/reference/functions/do_shortcode/If you want to see the actual shortcodes hidden behind the advance layout builder, set it to debug mode. http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/
Best regards,
IsmaelHey!
Thank you for the info. You can toggle the display property of the elements on different devices or screen sizes which means that you can hide an element on desktop view and display it on mobile, vice versa. This link will help: http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/
Cheers!
IsmaelHey!
You can use various filters for that but you can only do basic modifications for the message or email content.
message: avf_form_message filter:
// https://kriesi.at/support/topic/contactform-checkbox-true-false/#post-633534subject: avf_form_subject filter:
// https://kriesi.at/support/topic/form-email-subject-not-working-after-latest-update/#post-540025from: avf_form_from filter:
// https://kriesi.at/support/topic/contact-form-problem-reply-to-reply-email-to-admin-not-to-sender/#post-681896You can also use the Contact Form 7 as a substitute.
Regards,
IsmaelHi Belcuore!
Thank you for using Enfold.
Please remove all modifications or any fix related to the issue then follow the directions in the following thread carefully. http://kriesi.at/documentation/enfold/how-to-register-a-google-maps-api-key/
Best regards,
IsmaelHi!
We applied a custom background to the main content and we got the following errors. This means the theme files are either incomplete or do not have the correct file permissions. Please update the theme via FTP and correct the permissions.
http://www.majabadnjevic.com/wordpress2/wp-content/themes/enfold/images/background-images/diagonal-thin-light.png Failed to load resource: the server responded with a status of 404 (Not Found)
// https://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPress
Another thing that you can try is to rename the enfold.css file in the wp-content/uploads/dynamic_avia folder. Toggle any theme options then save it to regenerate the file.
UPDATE: Upgrade the PHP version to 5.4 or later.
Cheers!
IsmaelHi kristofferm!
Thank you for using Enfold.
What do you mean by “in front of the logo”? Do you want the text to cover the logo image? Please provide the url of the site and a screenshot of the logo that you have in mind.
Cheers!
IsmaelHi Michael!
Thank you for using Enfold.
Yes, this is possible. Add this in the Quick CSS field:
@media only screen and (min-width: 768px) { .container_wrap { z-index: 5; } #footer { position: fixed; bottom: 58px; left: 0; width: 100%; z-index: 0; } #socket { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1; } #footer-socket-spacer { position: relative; width: 100%; } .avia-section .main_color, .avia-section .alternate_color, .av-layout-grid-container { z-index: 1000; position: relative; } #header { z-index: 1001; } }And the following code in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function gh() { var socket = $('#socket'), footer = $('#footer'), spacerh = socket.height() + footer.height(), spacer = '<div id="footer-socket-spacer"></div>'; $(spacer).insertBefore(footer).height(spacerh); } gh(); })(jQuery); </script> <?php }Make sure that the content containers have backgrounds. This modification is not perfect so you will have to make a few adjustments.
Regards,
IsmaelHey!
Please add this in the Quick CSS field:
#top #header .av-main-nav > .current-menu-item > a .avia-menu-text { color: #d96864; } #top #header .av-main-nav > .current-menu-item a { background: #172643; }Cheers!
IsmaelSeptember 22, 2016 at 6:27 am in reply to: There is a widget or sidebar problem between Enfold and Woocommerce #690073Hey!
Are you referring to the “Categories” selection widget? Did you add any widgets in the Single Product Pages widget area? Please post the login details here so that we can check the theme and widget settings.
Best regards,
IsmaelHey!
The margin value should be “0 auto”, not “0 20px”. And regarding the “interior modal” container padding, please post the login details here so that we can check the settings. It is inside an iframe so it’s possible that we can’t modify the styling of the content. Please contact the script or page author.
Regards,
IsmaelHi!
I created a test post and it displayed immediately after creation.
// test post: http://www.ekah.yoga/wp-admin/post.php?post=4169&action=edit
// blog page: http://www.ekah.yoga/blog-2/Don’t forget that the category “blog” is selected in the blog posts category selection so you have to apply the “blog” category in the posts.
Best regards,
IsmaelSeptember 22, 2016 at 6:14 am in reply to: Layer Slider – Text block flickers on slide change #690067Hi!
I’m not sure yet why the text blocks are blinking. Please post the login details here so that we can check the layer slider settings.
Cheers!
IsmaelHey!
1.) The default size of the testimonial image container is 80x80px. You can use the exact size or twice that for retina display.
2.) The site loads fine on my end and note that the quality of the video will depend on the connection speed of the user. Or you try this in the functions.php pfile:
add_action('wp_footer', 'ava_iframe_parameters'); function ava_iframe_parameters(){ ?> <script> (function($){ function avia_iframe_parameters_mod(container) { var iframe = $('iframe[src*="youtube.com"]', container), youtubeEmbed = $('iframe[src*="youtube.com"] object, iframe[src*="youtube.com"] embed', container).attr('wmode','opaque'); iframe.each(function() { var current = $(this), src = current.attr('src'); if(src) { if(src.indexOf('?') !== -1) { src += "&autoplay=1&showinfo=1&vq=hd720"; } current.attr('src', src); } }); } avia_iframe_parameters_mod('body'); })(jQuery); </script> <?php }Cheers!
IsmaelHey!
1.) Could you please provide a link to the actual page with the columns or provide a screenshot of the section?
4.) Please add this in the Quick CSS field:
#top .related .thumbnail_container:hover img { transform: scale(1.2); transition: all 0.5s; }If possible, please create a single thread for each inquiry. Thank you.
Best regards,
IsmaelHi Eric!
Thank you for using Enfold.
I’m sorry but the lightbox script do not support embedded video players such Wistia, or the one that you’re currently using, by default. We can enable it but you have to modify one of the parent theme files. Edit the js > avia.js file, look for this code around line 924:
autolinkElements: 'a.lightbox, a[rel^="prettyPhoto"], a[rel^="lightbox"], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href*=".jpg?"], a[href*=".png?"], a[href*=".gif?"], a[href*=".jpeg?"], a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"]', videoElements : 'a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"]',.. replace it with:
autolinkElements: 'a.lightbox, a[rel^="prettyPhoto"], a[rel^="lightbox"], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href*=".jpg?"], a[href*=".png?"], a[href*=".gif?"], a[href*=".jpeg?"], a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"], a[href*="bcove"], a[href*="brightcove"]', videoElements : 'a[href$=".mov"] , a[href$=".swf"] , a:regex(href, .vimeo\.com/[0-9]) , a[href*="youtube.com/watch"] , a[href*="screenr.com"], a[href*="iframe=true"], a[href*="bcove"], a[href*="brightcove"]',Regards,
IsmaelHey Jojo_W!
Thank you for using Enfold.
Use absolute url. Instead of “#anchor”, use “http://www.yoursite.com/#anchor”.
Cheers!
IsmaelHey!
Are you trying to add the featured image in the search results page? Please refer to the following links:
// https://kriesi.at/support/topic/add-featured-image-to-search-results/#post-249161
// https://kriesi.at/support/topic/result-page/#post-688067Cheers!
IsmaelSeptember 22, 2016 at 5:20 am in reply to: on Mega Menu show in front of list points the featured image #690048 -
AuthorPosts
