Forum Replies Created
-
AuthorPosts
-
Hi,
The advance layout builder is not working because the site is using an old version of the theme, 3.5.4. Please upgrade to version 3.8.
Best regards,
IsmaelSeptember 26, 2016 at 5:48 am in reply to: tengo problemas con el portafolios no se publican mis entradas #691461Hi,
We added the portfolio items as submenu of the “Portfolio Items” menu.
Best regards,
IsmaelHi!
@Guenni007: You’re right about the resize function. The footer and socket should be positioned fixed at the bottom of the viewport but it has to be covered by the main content container and should only be visible at the very bottom of the page. This is what the OP is trying to replicate. http://demos.artbees.net/jupiter5/hera/Cheers!
IsmaelHi,
I’m sorry but the size of the featured image on the first post is 960x430px.
http://compassionatementalhealth.co.uk/wp-content/uploads/2016/09/Jonnybenjaminsmall-960×430.jpg
Best regards,
IsmaelHi,
The cell or color section background options should be use for images without actual focal point (http://bit.ly/2diV7lL), not portrait images because the background size property is set to “cover” (http://bit.ly/1M8TSNW) which means that the background image will cover the whole container but parts of the image have to overflow outside the container to keep its aspect ratio. We can set the background size to 100% but it will distort the image.
.avia-full-stretch { background-size: 100% 100% !important; }Best regards,
IsmaelSeptember 26, 2016 at 5:17 am in reply to: Center copyright and footer menu in both desktop and mobile #691450Hi,
Did you remove the footer menu? I can only see the “Privacy Policy” link which is already centre aligned.
Best regards,
IsmaelHi,
but is this a bug that the post nav proposes item that is not in the same category ??
You can set the post navigation to filter items from the same category. Please add this in the functions.php file:
add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { if(is_singular('portfolio')) { $settings['taxonomy'] = 'portfolio_entries'; $settings['is_fullwidth'] = false; } $settings['same_category'] = true; return $settings; }For new inquiries, please create a new thread with the url to the site and the login credentials.
Best regards,
IsmaelHi,
It looks like the whitespaces are gone once you resize the browser. Please try this in the functions.php file:
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); }, 1500); $(window).load(function () { setTimeout(function() { clearInterval(int); }, 5000); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
This is possible but you have to modify one of the parent theme files. Edit the framework > php > class-framework-widgets.php file. Look for this code around line 62:
echo "<div class='av_facebook_widget_wrap {$extraClass}' {$style}>"; echo '<div class="fb-page" data-width="500" data-href="'.$url.'" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="true" data-show-posts="false"><div class="fb-xfbml-parse-ignore"></div></div>';Set data-show-facepile attribute to false. Or remove the theme’s facebook widget and replace it with a text widget. Generate the facebook likebox script here. https://developers.facebook.com/docs/plugins/page-plugin
Best regards,
IsmaelHi,
I’m sorry for the late response. We are still not sure why the options revert back to the default. Have you tried disabling all plugins?
Best regards,
IsmaelHi,
We can’t modify the functions.php file. Please remove the “lightbox” code there and replace it with the following:
// custom script add_action( 'wp_footer', 'ava_custom_script' ); function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function b() { $("#header_meta a").magnificPopup({ type: 'iframe', mainClass: 'avia-popup mfp-zoom-in', }); } $(window).load(function() { b(); }); })(jQuery); </script> <?php }Remove browser cache or hard refresh before testing the page.
Best regards,
IsmaelHi,
Please edit the js shortcodes.js file, look for this code around line 4070.
this._prepareSlides(options);Remove the code or replace it with:
// this._prepareSlides(options);Best regards,
IsmaelHi,
Remove the image element then add this in the Quick CSS field to move the background of the color section downwards.
@media only screen and (max-width: 767px) { .page-id-3406 #after_section_1 { padding-bottom: 200px; } }Best regards,
IsmaelSeptember 26, 2016 at 4:40 am in reply to: Custom pagination for blog posts, affects and breaks pagination in shop page #691432Hi,
The code above looks a little broken because of the forum’s auto-format features. Please post the code on pastebin.com so that we can test it on our own installation. Did you use the is_woocommerce() conditional function? Maybe, that’s why it’s not working in the home page.
Best regards,
IsmaelSeptember 26, 2016 at 4:34 am in reply to: Uncaught Error: cannot call methods on sortable prior to initialization #691430Hi,
We are very sorry for the late response. Please update the theme to the latest version, 3.8. The update should fix this particular issue.
Best regards,
IsmaelSeptember 26, 2016 at 4:25 am in reply to: Yoast SEO: Video Plugin doesn't detect Youtube Videos in Advanced layout Editor #691429Hey Paul,
Thank you for using Enfold.
The yoast page analysis is incompatible with the advance layout builder but it won’t affect the actual SEO of the site.
Related thread:
// https://kriesi.at/support/topic/wp-seo-yoast-avia-page-builder-integration/
// https://kriesi.at/support/topic/enfold-yoast-compability/Best regards,
IsmaelHi acscreativenew!
Thank you for using Enfold.
Did you install any events plugin such as the Events Calendar or Events Manager? Or do you have any page or post called events? Please update the theme to the latest version, 3.8, and WordPress to 4.6.1.
Best regards,
IsmaelHi!
In the includes > error404.php file, please remove this block of code:
<h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3> <?php the_widget('avia_combo_widget', 'error404widget', array('widget_id'=>'404', 'before_widget' => '<div class="widget avia_combo_widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widgettitle">', 'after_title' => '</h3>' ));To change the text, add this code in the functions.php file:
add_filter('avf_ajax_search_messages', 'my_search_text', 10,2); function my_search_text ($search_messages, $search_query) { // possible values to change: // // $search_messages = array( // 'no_criteria_matched' => __("Sorry, no posts matched your criteria", 'avia_framework'), // 'another_search_term' => __("Please try another search term", 'avia_framework'), // 'time_format' => get_option('date_format'), // 'all_results_query' => http_build_query($_REQUEST), // 'all_results_link' => home_url('?' . http_build_query($_REQUEST)), // 'view_all_results' => __('View all results','avia_framework') // ); $search_messages ['no_criteria_matched'] = 'your message text to replace'; return $search_messages; }Related thread: https://kriesi.at/support/topic/custom-search-messages/#post-371601
Regards,
IsmaelHey cybervise13!
Thank you for using Enfold.
Please try the solution provided in the previous threads.
// https://kriesi.at/support/topic/enfold-and-tribe-events-calendar/#post-691070
// https://kriesi.at/support/topic/sidebar-not-visible-after-updating-the-events-calendar-to-4-2-5/#post-679786Best regards,
IsmaelSeptember 24, 2016 at 6:52 am in reply to: Show only one (first?) category in blog single post #691089Hi!
Could you please provide a link to the actual blog page? Did you set it to grid layout? If that is the case, you need to modify the config-templatebuilder > avia-shortcodes > postslider.php file.
Best regards,
IsmaelHey!
You should not separate the telephone fields because each field will be added as a new line in the email message. Adjust the width of the input fields with the following css code.
.page-id-4289 form input { width: 50% !important; }Cheers!
IsmaelSeptember 24, 2016 at 6:38 am in reply to: Align Contact Form with Left Hand edge of container when grid row is used #691085Hey!
See link below in private content. The padding idea won’t work since when the browser is resized the padding is constant so it pushes the whole contact form area to the right.
We can adjust the padding on smaller screens using css media queries. Turn on the custom css class field. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
I tried the solution from this link
https://kriesi.at/support/to pic/color-change-in-sidebar/#post-245767The solution in the previous thread may not work properly on different screen sizes.
Regards,
IsmaelHey bodnikwebservices!
Thank you for using Enfold.
Please add something like this in the Quick CSS field:
.IDX-showcaseCell { position: relative; } .IDX-showcaseCell:before { content: 'Sold'; display: block; background: red; padding: 5px 10px; z-index: 1000; position: absolute; top: 10px; left: 10px; }Can you apply a unique custom css class attribute to each cell or property?
Cheers!
IsmaelHi AsadIC!
Thank you for using Enfold.
Please use the following filter to change the “from” address.
add_filter('avf_form_from', 'avf_form_from_mod', 10, 3); function avf_form_from_mod($from, $new_post, $form_params) { $from = " (Email address hidden if logged out) "; return $from; }// https://kriesi.at/support/topic/probleme-mit-enfold-formularen/#post-669569
// https://kriesi.at/support/topic/contact-form-problem-reply-to-reply-email-to-admin-not-to-sender/#post-681896Regards,
IsmaelHey!
We rely on users to translate the theme voluntarily. Unfortunately, no one has submitted a complete polish translation yet.
Cheers!
IsmaelHi!
The code will append the vq=hd720 parameter to the youtube iframe code. If the functions.php file is in the child theme, it should be retained on update. Please follow this link. http://kriesi.at/documentation/enfold/using-a-child-theme/
Cheers!
IsmaelHi!
We updated the css code above. Please try it again.
Make sure that the content containers have backgrounds. This modification is not perfect so you will have to make a few adjustments.
Cheers!
IsmaelSeptember 24, 2016 at 5:51 am in reply to: Customize blog posts widget change color of title and body – 2 different colors #691079Hi!
I’m sorry. I forgot to provide this link. http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/
Best regards,
IsmaelHey!
I forgot about that. Please use this instead:
add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_sale_expiration', 1 ); function woocommerce_output_sale_expiration() { global $post; $sales_price_to = get_post_meta($post->ID, '_sale_price_dates_to', true); if(is_single() && $sales_price_to != "") { $salexp = $sales_price_to; } $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; } }Cheers!
Ismael -
AuthorPosts
