Forum Replies Created

Viewing 30 posts - 48,901 through 48,930 (of 66,084 total)
  • Author
    Posts
  • in reply to: Video Slideshow Not Working on IE11 #425268

    Hey!

    Since you didn’t set the slider to autorotate, I enable the Loop Video Player option for each video. It seems to work well now. What happens when you use videos longer than 6 seconds, say 20 secs?

    Best regards,
    Ismael

    in reply to: Animated Numbers won't resize on mobile #425259

    Hey!

    I checked the site but it redirects me here: http://uneekstudio.com/wordpress

    Regards,
    Ismael

    Hi!

    Not sure if this is going to work with the plugin but you can try to add this to the functions.php file:

    add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod', 10, 2 );
    function avf_masonry_loop_prepare_mod( $key, $entries )
    {      
    	$id = $key['ID']; 
    	if($key['post_type'] == 'post') {
    		foreach ( $key as $post => $value ) {	
    			$field = get_field('product_url',$id); 
    			if($post == 'html_tags' && $field) { 
    				$value[0] = 'a href="' . $field .'"';
    			}	
    			$key[$post] = $value;
    		}
    	}
        return $key;
    }
    

    Best regards,
    Ismael

    in reply to: Header Image and navigation centered #425207

    Hey!

    Why did you set the Header Custom Height to 300px? Is that intentional? If you want the look of the header from the link you provided, set the Menu and Logo Position to Logo left, Menu below then add this to the Quick CSS field to change the background color of the menu container:

    div#header_main_alternate {
      background: red;
    }

    Best regards,
    Ismael

    in reply to: Advanced LayerSlider not showing images #425192

    Hey!

    You have to Import the Parent Theme Settings once you activated the child theme. Please refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/

    Best regards,
    Ismael

    in reply to: Selectively adjust font size #425186

    Hey!

    I’m sorry but you can’t edit the style of the actual facebook module. Add this one to apply a white background:

    .av_facebook_widget_wrap.av_facebook_widget_wrap_border_yes {
      background: white;
    }

    If you want, you can create the facebook likebox widget manually: https://developers.facebook.com/docs/plugins/page-plugin

    Best regards,
    Ismael

    Hi!

    So far you’re the only user who reported this issue so somehow, it has something to do with your server configuration. What happens when you delete all plugins then install WPML only? Please contact your hosting provider, maybe they got something to say about this issue. You can ask them for the error logs if there’s any.

    Cheers!
    Ismael

    in reply to: Logo large and float to top of page above top menu #425060

    Hey andrewlasher!

    Thank you for using Enfold.

    Set the Enfold > Header > Menu and Logo Position to Logo left, Menu right. Set the Header Size to custom pixel value. Adjust the height of the header to match the height of the logo image.

    Regards,
    Ismael

    in reply to: How to make the post title bigger? #425059

    Hi DROR!

    Thank you for using Enfold.

    Use this to adjust the size:

    h1.post-title.entry-title a {
      font-size: 40px!important;
    }

    Regards,
    Ismael

    Hey Antonio!

    Thank you for using Enfold.

    What happens when you switch to a default theme? Try to download a fresh copy of the WordPress files then override your installation. Get a new copy of enfold then override the theme files as well.

    Increase the memory limit to at least 256M: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/

    Regards,
    Ismael

    in reply to: WooCommerce "Sort by" dropdown #425053

    Hi!

    You can copy the whole function inside the functions.php file and it will override the default code:

    add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20);
    function avia_woocommerce_frontend_search_params()
    	{
    		global $avia_config;
    
    		if(!empty($avia_config['woocommerce']['disable_sorting_options'])) return false;
    
    		$product_order['default'] 	= __("Default Order",'avia_framework');
    		$product_order['title'] 	= __("Name",'avia_framework');
    		$product_order['price'] 	= __("Price",'avia_framework');
    		$product_order['date'] 		= __("Date",'avia_framework');
    		$product_order['popularity'] = __("Popularity",'avia_framework');
    
    		$product_sort['asc'] 		= __("Click to order products ascending",  'avia_framework');
    		$product_sort['desc'] 		= __("Click to order products descending",  'avia_framework');
    
    		$per_page_string 		 	= __("Products per page",'avia_framework');
    
    		$per_page 		 		 	= get_option('avia_woocommerce_product_count');
    		if(!$per_page) $per_page 	= get_option('posts_per_page');
    		if(!empty($avia_config['woocommerce']['default_posts_per_page'])) $per_page = $avia_config['woocommerce']['default_posts_per_page'];
    
    		parse_str($_SERVER['QUERY_STRING'], $params);
    
    		$po_key = !empty($avia_config['woocommerce']['product_order']) ? $avia_config['woocommerce']['product_order'] : 'default';
    		$ps_key = !empty($avia_config['woocommerce']['product_sort'])  ? $avia_config['woocommerce']['product_sort'] : 'asc';
    		$pc_key = !empty($avia_config['woocommerce']['product_count']) ? $avia_config['woocommerce']['product_count'] : $per_page;
    
    		$ps_key = strtolower($ps_key);
    		
    		$nofollow = 'rel="nofollow"';
    
    		//generate markup
    		$output  = "";
    		$output .= "<div class='product-sorting'>";
    		$output .= "    <ul class='sort-param sort-param-order'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Sort by",'avia_framework')." <strong>".$product_order[$po_key]."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'default')."><a href='".avia_woo_build_query_string($params, 'product_order', 'default')."' {$nofollow}>	<span class='avia-bullet'></span>".$product_order['default']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'title')."><a href='".avia_woo_build_query_string($params, 'product_order', 'title')."' {$nofollow}>	<span class='avia-bullet'></span>".$product_order['title']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'price')."><a href='".avia_woo_build_query_string($params, 'product_order', 'price')."' {$nofollow}>	<span class='avia-bullet'></span>".$product_order['price']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'date')."><a href='".avia_woo_build_query_string($params, 'product_order', 'date')."' {$nofollow}>	<span class='avia-bullet'></span>".$product_order['date']."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($po_key, 'popularity')."><a href='".avia_woo_build_query_string($params, 'product_order', 'popularity')."' {$nofollow}>	<span class='avia-bullet'></span>".$product_order['popularity']."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-sort'>";
    		$output .= "    	<li>";
    		if($ps_key == 'desc') 	$output .= "    		<a title='".$product_sort['asc']."' class='sort-param-asc'  href='".avia_woo_build_query_string($params, 'product_sort', 'asc')."' {$nofollow}>".$product_sort['desc']."</a>";
    		if($ps_key == 'asc') 	$output .= "    		<a title='".$product_sort['desc']."' class='sort-param-desc' href='".avia_woo_build_query_string($params, 'product_sort', 'desc')."' {$nofollow}>".$product_sort['asc']."</a>";
    		$output .= "    	</li>";
    		$output .= "    </ul>";
    
    		$output .= "    <ul class='sort-param sort-param-count'>";
    		$output .= "    	<li><span class='currently-selected'>".__("Display",'avia_framework')." <strong>".$pc_key." ".$per_page_string."</strong></span>";
    		$output .= "    	<ul>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page).">  <a href='".avia_woo_build_query_string($params, 'product_count', $per_page)."' {$nofollow}>		<span class='avia-bullet'></span>".$per_page." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*2)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 2)."' {$nofollow}>	<span class='avia-bullet'></span>".($per_page * 2)." ".$per_page_string."</a></li>";
    		$output .= "    	<li".avia_woo_active_class($pc_key, $per_page*3)."><a href='".avia_woo_build_query_string($params, 'product_count', $per_page * 3)."' {$nofollow}>	<span class='avia-bullet'></span>".($per_page * 3)." ".$per_page_string."</a></li>";
    		$output .= "    	</ul>";
    		$output .= "    	</li>";
    		$output .= "	</ul>";
    
    		$output .= "</div>";
    		echo $output;
    	}

    Cheers!
    Ismael

    Hi!

    We checked the test page, clicked the preview button and the changes displayed properly:

    In which pages are you having this issue?

    Best regards,
    Ismael

    in reply to: Customizing Comments Element #425049

    Hi!

    You can try this:

    .captchaSizeDivLarge:after {
      content: 'Description Here';
      display: block;
      clear: both;
      color: red;
    }
    
    .captchaSizeDivLarge {
      margin-bottom: 20px;
    }

    Best regards,
    Ismael

    in reply to: Posting entries for a category #425047

    Hi!

    If you don’t mind, please provide a screenshot of what you’re trying to do. You can use imgur or dropbox to post a screenshot. If you want to show the content of the post in the blog posts element, use the default editor instead of the advance layout builder for post. Note that anything you add in the advance layout builder for post will not show in the blog overview page. Example:

    http://www.sbq.cat/wp-admin/post.php?post=3305&action=edit&message=1
    http://www.sbq.cat/wp-admin/post.php?post=3252&action=edit&message=1

    Cheers!
    Ismael

    in reply to: Fatal error template-builder.php #425044

    Hey!

    You also have the section.php file in the child theme folder. What is it doing in there? If you want to modify the shortcode templates inside the child theme folder, you need to create a “shortcodes” folder then place all shortcode templates inside. Add this to the functions.php file:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    

    EDIT: You already have that code on functions.php so just create a “shortcodes” folder. Place the section.php file inside.

    Best regards,
    Ismael

    in reply to: SSL Mixed Content #425042

    Hi condonpb!

    Thank you for using Enfold.

    Looks like it is working well because I don’t see any insecure content error on the console. All links point to https. Just one thing, please update the theme to version 3.1.3.

    Best regards,
    Ismael

    in reply to: H1 Permalink #425041

    Hi!

    Add this to the Quick CSS field to disable the link:

    h1.post-title.entry-title a {
      pointer-events: none;
    }

    Best regards,
    Ismael

    Hi alfaweb2!

    Please don’t create duplicated posts. We answered this question here: kriesi.at/support/topic/search-position/

    Regards,
    Ismael

    in reply to: Woocommerce Layered Nav Filters #425039

    Hi!

    I checked the shop page but there are no products there. Where is your shop page?

    Regards,
    Ismael

    Hi!

    You don’t need to edit default-constants.php file. The modification in the wp-config.php file is enough to increase the memory limit. Make sure that your server allow this limitation. You can contact your hosting provider just to make sure.

    Cheers!
    Ismael

    in reply to: Reiter über Gesamtbreiite #425035

    Hey!

    Thank you for using Enfold.

    I use google translate to read the inquiry but I’m not sure if I understand you correctly. If you could translate the inquiry, that would be great.

    Regards,
    Ismael

    in reply to: Shortcodes in Custom Post Types #425033

    Hi awel!

    Thank you for using Enfold.

    Do you want to enable the advance layout builder for custom post types? Please refer to this: https://kriesi.at/support/topic/enfold-saving-post-type-inclusion-in-child-theme/#post-419261

    Best regards,
    Ismael

    in reply to: Button settings opens table settings? #425032

    Hey!

    You can use the pre and code tags to create code blocks:

    This is the code
    

    Or enclosed the text inside “backticks” symbols:

    This is another code
    

    Best regards,
    Ismael

    in reply to: Woocommerce single page avia advanced editor #425030

    Hi!

    This is what I see when I check the page. The add to cart and quantity input element:

    Regards,
    Ismael

    in reply to: item portfolio navigation buttons #425026

    Hi!

    It is the default behaviour of the post navigation right from the start. I’m not sure how you managed to filter them alphabetically. Please change the post date manually.

    Best regards,
    Ismael

    in reply to: Fontello Icon Fonts Failing in SSL HTTPS #424508

    Hi!

    Alright. Please test the other suggestion provided above.

    Best regards,
    Ismael

    in reply to: Fontello Icon Fonts Failing in SSL HTTPS #424501

    Hi!

    Try to install this plugin to force https: http://shop.webaware.com.au/downloads/ssl-insecure-content-fixer

    If it doesn’t work, edit config-templatebuilder > avia-template-builder > php > font-manager-class.php, look for this code:

    $fstring 		= $font_list['folder'].'/'.$font_name;
    

    Replace it with:

    $folder =  is_ssl() ? str_replace('http', 'https', $font_list['folder']) : $font_list['folder'];
    				$fstring = $folder.'/'.$font_name;
    			

    Cheers!
    Ismael

    in reply to: Sidebars settings are complicated and rarely work. #424492

    Hi haydaw!

    Thank you for using Enfold.

    Note that the page layout settings will override the enfold theme options all the time. Can you please provide a link to the page with the issue?

    If you want to enable the Page Sidebar Navigation, you need to set a parent page for a group of pages. It will display child pages or nested subpages of the parent page. Make sure that it is enabled on Enfold > Sidebar Settings. Also, note that the page sidebar navigation will always display at the top of every other widgets.

    Best regards,
    Ismael

    in reply to: Blog Post Excerpts not working #424490

    Hey!

    Glad we could help. :)

    Cheers!
    Ismael

    in reply to: Contact form not stable. #424489

    Hey Mark!

    Thank you for using Enfold.

    Please refer to this link on how to troubleshoot contact form issues: http://kriesi.at/documentation/enfold/my-contact-form-is-not-sending-emails/

    Cheers!
    Ismael

Viewing 30 posts - 48,901 through 48,930 (of 66,084 total)