Forum Replies Created
-
AuthorPosts
-
Hi,
The video on tablet device does not work fine and load the fallback image (as you can see from the screenshot image attached in the previous email).
What is the actual screen resolution of the samsung device? You might need to adjust the value of the view port in the css media queries.
@media only screen and (max-width: 1024px) { .hide-mobile { display: none; }} @media only screen and (min-width: 1025px) { .hide-desktop { display: none; }}Best regards,
IsmaeloHi,
Thank you for using Enfold.
Did you edit anything in the page? The sections aren’t responsive because they are outside the wrap_all container. Please post the login details here so that we can correct the issue.
Best regards,
IsmaelHey!
UPDATE for @Jason E.
Please try the solution here: https://kriesi.at/support/topic/sticky-posts-in-b-og-grid/#post-692059
Regards,
IsmaelHi,
Thank you for using Enfold.
We tested the code but it’s not working on our end. Please remove it then replace it with the following:
// sticky posts add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2); function avia_post_slide_query_mod($query, $params) { $include = array(); $sticky = get_option( 'sticky_posts' ); $args = array( 'taxonomy' => $params['taxonomy'], 'post__not_in' => $sticky, ); $posts = get_posts( $args ); foreach($posts as $post) { $include[] = $post->ID; } $include = array_merge($sticky, $include); // convert values of the $include from string to int function sti($n) { settype($n, 'int'); return $n ; } $include = array_map("sti", $include); $query['post__in'] = $include; $query['posts_per_page'] = 6; $query['orderby'] = 'post__in'; // sort items based on the post__in value return $query; }Best regards,
IsmaelHey melzar,
Thank you for using Enfold.
We tried to access the site but we got the following warning. Please contact your hosting provider.
Deceptive site ahead
Attackers on mabbr.flywheelsites.com may trick you into doing something dangerous like installing software or revealing your personal information (for example, passwords, phone numbers or credit cards).
Automatically report details of possible security incidents to Google. Privacy PolicyUnfortunately, the sort function can only fetch entries present in the current page. It won’t be able to call items from another page. The only workaround I can think of is to either display all entries in the same page or change the query “orderby” to random.
//portfolio query add_filter( 'avia_post_grid_query', 'avia_post_grid_query_mod', 10, 2); function avia_post_grid_query_mod( $query, $params ) { $query['orderby'] = 'rand'; return $query; }It will display random entries on page load.
Best regards,
IsmaelHi,
I’m sorry for the late response. Please check the login credentials carefully because it is not working.
That is actually the sidebar container which is being pushed by the portfolio grid element. Please place the portfolio grid element inside a 1/1 column layout element.
Best regards,
IsmaelHi,
My bad. Please update WordPress to 4.6.1 and the theme to 3.8. The update includes a specific patch for the advance layout builder issue. If the auto update isn’t working, please do it manually via FTP.
// http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
// http://kriesi.at/archives/the-complete-guide-to-updating-enfoldRegarding the advance layout builder debug mode, please edit the functions.php file, place the snippet below line 17.
Best regards,
IsmaelHi,
Thank you for using Enfold.
This is possible but you have to install third party plugins such as the following:
// https://wordpress.org/plugins/woocommerce-image-zoom/
// https://docs.woocommerce.com/document/image-zoom-2/
// https://www.magictoolbox.com/magiczoom/modules/woocommerce/Best regards,
IsmaelHi,
If you want to just hide the title and caption, please use this:
@media only screen and (max-width: 767px) { #top .av-inner-masonry-content { display: none !important; } }Best regards,
IsmaelHi,
Thank you for using Enfold.
I tried to login to the site but the login credentials are incorrect. Please check it carefully.
Best regards,
IsmaelHey Moonbeam,
Thank you for using Enfold.
The main shop page should be specified in the WooCommerce > Settings > Display > Products panel. The current base shop page is set to “Shop”. Is this the correct shop page or did you create another?
Best regards,
IsmaelHi,
I’m sorry but the dropdown menu is not accessible with the keyboard unless you modify the js > avia.js file. Look for this code around line 1274:
currentLink.bind('mouseenter', function() { sublist.stop().css({visibility:'visible'}).animate({opacity:1}); });.. replace it with:
currentLink.bind('mouseenter focus', function() { sublist.stop().css({visibility:'visible'}).animate({opacity:1}); });Best regards,
IsmaelHi,
Please add this in the functions.php file:
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function c() { $('.portfolio_preview_container').insertAfter('.grid-sort-container'); } c(); })(jQuery); </script> <?php }The code will move the portfolio preview container below the portfolio grid container.
Best regards,
IsmaelHi,
<main class=”template-page content av-content-full alpha units” style=”background: rgba(0, 0, 255, 0.498039);”></main>The markup above does not exist. Could you please ask SumoMe to provide a screenshot of the section? And what do they mean by “primary container”? Please try this code while you’re waiting for a response.
add_action('wp_footer', 'ava_custom_script'); function ava_custom_script(){ ?> <script type="text/javascript"> (function($) { function gh() { $('.home #av_section_1 main.template-page').attr('role','main'); $('.home #av_section_1 main.template-page').addClass('aside'); } gh(); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
The site is not loading properly. Please check with your hosting provider.
Not Found
The requested URL / was not found on this server.
Apache/2.4 Server at http://www.bylees.com Port 80Best regards,
IsmaelHi,
I set it back to the way you suggested, it just wasn’t working so I played with it. The padding on the link I provided is what I’m after.
Yes, that’s what we are trying to fix but since that is an external page, it is possible that the style can’t be modified on our side. You have to do the modifications in the actual html page.
Please post the login details here so that we can check the settings.
Best regards,
IsmaelHi,
I checked the site on Safari, Windows 7 but there is no white border. What is the screen resolution of your monitor? And the browser version?
Best regards,
IsmaelHi,
Thank you for the info. Please add this code in the functions.php file:
add_action('init', 'ava_woocommerce_mod', 100); function ava_woocommerce_mod() { remove_action( 'woocommerce_before_main_content', 'avia_woocommerce_before_main_content', 10); add_action( 'woocommerce_before_main_content', 'avia_woocommerce_before_main_content_mod', 10); } function avia_woocommerce_before_main_content_mod() { global $avia_config; if(!isset($avia_config['shop_overview_column'])) $avia_config['shop_overview_column'] = "auto"; $id = get_option('woocommerce_shop_page_id'); $layout = get_post_meta($id, 'layout', true); if(!empty($layout)) { $avia_config['layout']['current'] = $avia_config['layout'][$layout]; $avia_config['layout']['current']['main'] = $layout; } $avia_config['layout'] = apply_filters('avia_layout_filter', $avia_config['layout'], $id); $title_args = array(); if(is_woocommerce()) { $t_link = ""; if(is_shop()) $title = get_option('woocommerce_shop_page_title'); $shop_id = woocommerce_get_page_id('shop'); if($shop_id && $shop_id != -1) { if(empty($title)) $title = get_the_title($shop_id); $t_link = get_permalink($shop_id); } if(empty($title)) $title = __("Shop",'avia_framework'); if(is_product_category() || is_product_tag()) { global $wp_query; $tax = $wp_query->get_queried_object(); $title = $tax->name; $t_link = ''; } $title_args = array('title' => $title, 'link' => $t_link); } if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title($title_args); if(is_singular()) { $result = 'sidebar_right'; $avia_config['layout']['current'] = $avia_config['layout'][$result]; $avia_config['layout']['current']['main'] = $result; } $sidebar_setting = avia_layout_class( 'main' , false ); echo "<div class='container_wrap container_wrap_first alternate_color {$sidebar_setting} template-shop shop_columns_".$avia_config['shop_overview_column']."'>"; echo "<div class='container'>"; if(!is_singular()) { $avia_config['overview'] = true; } }Please create a note or a change log in case you update the theme. We might make a few adjustments in the function.
Best regards,
IsmaelSeptember 27, 2016 at 3:45 am in reply to: Enfold 3.8 Icons not showing/bugged – Still an issue #692038Hi,
The icons are visible when I checked the site on Chrome and Firefox, Windows 7. What is your current OS and browser version?
Best regards,
IsmaelHi,
We modified the layout of the page and all you need to do is to adjust the background of each cells. We already changed the background of the first two cells. http://aloeverainforma.it/
Best regards,
IsmaelHi,
I’m sorry but what do you mean by “topper”? A screenshot will help.
Best regards,
IsmaelHi,
Thank you for using Enfold.
That is the default style or behaviour of the table if you set the Responsive Styling to “scrollable”. It will not inherit the width of the parent container, in this case, the column.
Best regards,
IsmaelSeptember 26, 2016 at 6:18 am in reply to: Anzeige Tooltip bei Mouseover in Masonry Galleries #691474Hey Office_SP,
Thank you for using Enfold.
I’m sorry but I don’t see any difference between the masonry elements. Could you please provide a screenshot? Use imgur or dropbox. And by “tooltip” are you referring to the browser tooltip? This tooltip will display on any element with the title attribute.
Best regards,
IsmaelSeptember 26, 2016 at 6:15 am in reply to: Problem woocommerce / languages, mantain same styles #691472Hi,
Could you please provide a screenshot of the “spacing” issue because we just don’t see it on our end? And the previous pages do not exist anymore.
// http://nssm.fr/en/shop/radeaux-plaisance-en/cotier/
// http://nssm.fr/shop/radeaux-plaisance/cotier/Best regards,
IsmaelSeptember 26, 2016 at 6:12 am in reply to: Displaying full content of portfolio entries in Grid Layout #691471Hey Onnellistamo,
Thank you for using Enfold.
Could you please provide a link to the current portfolio page? You can use the blog posts element to display any custom post type such as the portfolio items. Edit the element, set the “Do you want to display blog posts?” to “Display entries from a custom taxonomy” then set the “Which Entries?” option to “Portfolio Entries”. Set the “Blog Style” to “Grid Layout”.
Best regards,
IsmaelHey pimroll,
Thank you for using Enfold.
1.) Are you planning to add more images? Accordion sliders are usually use for multiple images. If you need to display a single image, use the full width slider element instead.
2.) Set the font size for desktop view then add this in the Quick CSS field to adjust it for mobile.
@media only screen and (max-width: 767px) { #top .aviaccordion-preview-title h3 { font-size: 13px !important; } #top .aviaccordion-excerpt { font-size: 12px !important; } }Best regards,
IsmaelHi,
You should upload images with the same size or proportion. Images with various sizes will likely to produce different thumbnails.
Best regards,
IsmaelSeptember 26, 2016 at 5:57 am in reply to: There is a widget or sidebar problem between Enfold and Woocommerce #691465Hi!
We are very sorry for the late response. We removed the “Categories” widget in the Displayed Everywhere widget area.
Best regards,
IsmaelSeptember 26, 2016 at 5:52 am in reply to: Widget or sidebar problem between Enfold and Woocommerce. #691463Hey endanight!
Duplicate thread: https://kriesi.at/support/topic/there-is-a-widgets-or-o-sidebar-problem-between-enfold-and-woocommerce/
Cheers!
Ismael -
AuthorPosts
