Forum Replies Created

Viewing 30 posts - 39,121 through 39,150 (of 66,745 total)
  • Author
    Posts
  • in reply to: Sticky Posts in Blog Grid #692533

    Hey!

    Glad it is working. :)

    Regards,
    Ismael

    in reply to: No video on the mobile version #692532

    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,
    Ismaelo

    in reply to: What is the difference? #692530

    Hi,

    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,
    Ismael

    in reply to: Sticky posts in grid and masonry layouts #692060

    Hey!

    UPDATE for @Jason E.

    Please try the solution here: https://kriesi.at/support/topic/sticky-posts-in-b-og-grid/#post-692059

    Regards,
    Ismael

    in reply to: Sticky Posts in Blog Grid #692059

    Hi,

    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,
    Ismael

    in reply to: Portfolio item sort / filter options #692056

    Hey 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 Policy

    Unfortunately, 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,
    Ismael

    in reply to: Weird footer appearing #692055

    Hi,

    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,
    Ismael

    in reply to: Not able to change text field anymore #692054

    Hi,

    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-enfold

    Regarding the advance layout builder debug mode, please edit the functions.php file, place the snippet below line 17.

    Best regards,
    Ismael

    in reply to: Can products image zoom in? #692053

    Hi,

    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,
    Ismael

    in reply to: Problem with masonry #692052

    Hi,

    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,
    Ismael

    in reply to: wrong woocomemrce reset password page #692051

    Hi,

    Thank you for using Enfold.

    I tried to login to the site but the login credentials are incorrect. Please check it carefully.

    Best regards,
    Ismael

    in reply to: Enfold and Woo Commerce conflicting shop pages #692050

    Hey 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,
    Ismael

    in reply to: Accessibility #692049

    Hi,

    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,
    Ismael

    in reply to: Ajax Preview Portfolio Like Google Images #692047

    Hi,

    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,
    Ismael

    in reply to: SumoMe Not Tracking Full Page #692045

    Hi,

    <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,
    Ismael

    in reply to: SLider not working #692043

    Hi,

    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 80

    Best regards,
    Ismael

    in reply to: iframe lightbox padding #692041

    Hi,

    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,
    Ismael

    in reply to: Fullscreen slider problem #692040

    Hi,

    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?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Product Detail as alternate content #692039

    Hi,

    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,
    Ismael

    in reply to: Enfold 3.8 Icons not showing/bugged – Still an issue #692038

    Hi,

    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,
    Ismael

    in reply to: Enfold grid row #691477

    Hi,

    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,
    Ismael

    in reply to: problem with update #691476

    Hi,

    I’m sorry but what do you mean by “topper”? A screenshot will help.

    Best regards,
    Ismael

    in reply to: Enfold Tables – Table Issues #691475

    Hi,

    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,
    Ismael

    in reply to: Anzeige Tooltip bei Mouseover in Masonry Galleries #691474

    Hey 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,
    Ismael

    in reply to: Problem woocommerce / languages, mantain same styles #691472

    Hi,

    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,
    Ismael

    in reply to: Displaying full content of portfolio entries in Grid Layout #691471

    Hey 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,
    Ismael

    in reply to: Customize accordion slider #691469

    Hey 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,
    Ismael

    in reply to: Product size (in woocommerce) #691468

    Hi,

    You should upload images with the same size or proportion. Images with various sizes will likely to produce different thumbnails.

    Best regards,
    Ismael

    Hi!

    We are very sorry for the late response. We removed the “Categories” widget in the Displayed Everywhere widget area.

    Best regards,
    Ismael

    in reply to: Widget or sidebar problem between Enfold and Woocommerce. #691463
Viewing 30 posts - 39,121 through 39,150 (of 66,745 total)