Forum Replies Created

Viewing 30 posts - 3,421 through 3,450 (of 9,352 total)
  • Author
    Posts
  • in reply to: Portfolio Arrows #269016

    Hi southerndesign!

    Maybe a plugin breaks the next/prev nav buttons. Try to deactivate all plugins and check if the issue persists.

    Best regards,
    Peter

    in reply to: Layerslider lässt sich nicht mehr bearbeiten #269015

    Hey!

    Yes, deleting the slides should be possible. You can find the slider data in the wp_layerslider table. It’s json encoded but you can use a tool like: http://json.parser.online.fr/ to parse the data. All layers are part of the “layers” array and start with “properties”. Each layer may contain several “sublayers” arrays.

    Regards,
    Peter

    in reply to: Portfolio title font color on color section #269012

    Hey!

    It’s not possible to use portfolio filter across multiple portfolio pages. Someone created a feature request here: https://kriesi.at/support/enfold-feature-requests/ – (Click on “Popular”, page 14 and search for “AJAX Portfolio filtering over multiple pages”) but as you can see the idea is not popular enough and we’ll probably not implement this feature in the near future.

    The portfolio filter will not pop up if a portfolio page just shows entries from one category – so if i.e. page 1 shows entries from 2012 and page 2 shows entries from 2013 no portfolio filter will be shown simply because it doesn’t make sense if there’re no categories to filter. However if the page contains entries from 2012 and 2013 the filter will be shown because the user can use it to select the entries from the 2012 or 2013.

    Regards,
    Peter

    Hey Frank!

    You can try to add this code to your child theme functions.php file (or enfold/functions.php):

    
    add_filter('avia_breadcrumbs_trail', 'avia_change_breadcrumb', 10, 15);
    function avia_change_breadcrumb($trail) {
            foreach($trail as $key => $data)
            {
                    $search = 'ninja_forms_preview_page';
                    if(strpos($data, $search) !== false)
                    {
                                      unset($trail[$key]);
                    }
            }
    return $trail;
    }
    

    The code should remove the ninja_forms_preview_page link from the breadcrumb trail.

    Regards,
    Peter

    in reply to: Wie bekomme ich einen Custom Slug als Title angezeigt #269004

    Hi adrianwackernah!

    Versuche einmal diesen code in die functions.php einzufügen:

    
    add_filter('avf_title_args', 'avia_tax_term_title', 10, 2);
    function avia_tax_term_title($args,$id) {
    if(is_tax()) $args['title'] = single_term_title('', false);
    return $args;
    }
    

    Cheers!
    Peter

    in reply to: How to avoid rendering extra line breaks? #269002

    Hi!

    No, unfortunately the “Visual” editor adds some tags to the text/code and we can’t deactivate these tags because it’s a standard wordpress behavior. You can use the code block or a plugin like: https://wordpress.org/plugins/insert-html-snippet/ to insert raw html code.

    Regards,
    Peter

    in reply to: Position price per unit #269001

    Hey!

    Ok, I’ll leave this thread open.

    Best regards,
    Peter

    Hey!

    I fixed it with some code in enfold/functions.php:

    
    if(!function_exists('avia_translate_ids_from_query'))
    {
    	function avia_translate_ids_from_query($query, $params)
    	{
    		$res = array();
    		
    		if(!empty($query['tax_query'][0]['terms']) && !empty($query['tax_query'][0]['taxonomy']))
    		{
    			foreach ($query['tax_query'][0]['terms'] as $id)
    			{
    				$xlat = icl_object_id($id, $query['tax_query'][0]['taxonomy'], true);
    				if(!is_null($xlat)) $res[] = $xlat;
    			}
    		
    			if(!empty($res)) $query['tax_query'][0]['terms'] = $res;
    		}
    		else if(!empty($query['post__in']) && !empty($query['post_type']))
    		{
    			foreach($query['post__in'] as $id)
    			{
    				$xlat = icl_object_id($id, $query['post_type'], true);
    				if(!is_null($xlat)) $res[] = $xlat;
    			}
    			if(!empty($res)) $query['post__in'] = $res;
    		}
    	
    		return $query;
    	}
    	
    	add_filter('avia_masonry_entries_query', 'avia_translate_ids_from_query', 10, 2);
    	add_filter('avia_post_grid_query', 'avia_translate_ids_from_query', 10, 2);
    	add_filter('avia_post_slide_query', 'avia_translate_ids_from_query', 10, 2);
    	add_filter('avia_blog_post_query', 'avia_translate_ids_from_query', 10, 2);
    }
    

    I’ll ask Kriesi to include it in the next update.

    Best regards,
    Peter

    Hi!

    Ihr verwendet eine alte Version des Enfold Themes. Bitte aktualisiert auf 2.9.1 und der Code sollte funktionieren.

    Cheers!
    Peter

    Hi!

    Ok, I’ll leave this thread open in case the WPML support can’t solve the problem.

    Best regards,
    Peter

    in reply to: Portfolio Items/Categories – URL and Breadcrumbs #268499

    Hi sfierst!

    1) The portfolio urls/permalinks do not support categories or other dynamic elements – I’m sorry. You would need to hire a developer who can help you to customize the permalinks code.

    2) If you want to show the categories in the breadcrumb insert this code into the child theme functions.php file (or insert it at the bottom of enfold/functions.php) if you’re not using a child theme:

    
    if(!function_exists('avia_modify_portfolio_breadcrumb'))
    {
    	function avia_modify_portfolio_breadcrumb($trail)
    	{
            $parent = get_post_meta(avia_get_the_ID(), 'breadcrumb_parent', true);
    
    		if(get_post_type() === "portfolio")
    		{
    			$page 	= "";
    			$front 	= avia_get_option('frontpage');
    
    			if(empty($parent) && !current_theme_supports('avia_no_session_support') && session_id() && !empty($_SESSION['avia_portfolio']))
    			{
    				$page = $_SESSION['avia_portfolio'];
    			}
                else
                {
                    $page = $parent;
                }
    
    			if(!$page || $page == $front)
    			{
    				$args = array( 'post_type' => 'page', 'meta_query' => array(
    						array( 'key' => '_avia_builder_shortcode_tree', 'value' => 'av_portfolio', 'compare' => 'LIKE' ) ) );
    
    				$query = new WP_Query( $args );
    
    				if($query->post_count == 1)
    				{
    					$page = $query->posts[0]->ID;
    				}
    				else if($query->post_count > 1)
    				{
    					foreach($query->posts as $entry)
    					{
    						if ($front != $entry->ID)
    						{
    							$page = $entry->ID;
    							break;
    						}
    					}
    				}
    			}
    
    			$parents = get_the_term_list( $post_id, 'portfolio_entries', '', '$$$', '' );
    			$parents = explode('$$$',$parents);
    
    			if($page)
    			{
    				if($page == $front)
    				{
    					$newtrail[0] = $trail[0];
    
    					foreach ($parents as $parent_item)
    					{
    						if($parent_item) $newtrail[] = $parent_item;
    					}
    
    					$newtrail['trail_end'] = $trail['trail_end'];
    					$trail = $newtrail;
    				}
    				else
    				{
    					$newtrail = avia_breadcrumbs_get_parents( $page, '' );
    					array_unshift($newtrail, $trail[0]);
    
    					foreach ($parents as $parent_item)
    					{
    						if($parent_item) $newtrail[] = $parent_item;
    					}
    
    					$newtrail['trail_end'] = $trail['trail_end'];
    					$trail = $newtrail;
    				}
    			}
    		}
    		
    		return $trail;
    	}
    
    	add_filter('avia_breadcrumbs_trail','avia_modify_portfolio_breadcrumb', 15, 1);
    }
    
    

    Cheers!
    Peter

    in reply to: Fullwidth Masonry Gallery thumbnail size #268494

    Hey coinmaster!

    You can try to change the imaage size in wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php – open up the file and search for:

    
    $img_size	 						= 'masonry';
    

    Replace “masonry” with another thumbnail size like ‘square’, featured’, ‘featured_large’, ‘portfolio’, ‘gallery’, ‘entry_with_sidebar’,’entry_without_sidebar’,extra_large’ or “magazine”.

    Cheers!
    Peter

    in reply to: Changes to Widgets and Theme options not showing up #268492

    Hi!

    Yes, please contact the server provider and ask them to check the cache settings.

    Regards,
    Peter

    in reply to: After update: Burger don't work? #268486

    Hey simpson199!

    Firefox reports a “cross domain origin” error. Please follow the instructions here: http://davidwalsh.name/cdn-fonts to fix the problem.

    Best regards,
    Peter

    Hey Gurify!

    You can decrease the font size for devices with smaller screens – insert this code into the quick css field and adjust the font size value:

    
    @media only screen and (max-width: 767px){
    .csstransitions .av_slideshow_full .avia-caption-title {
    font-size: 10px;
    }
    
    .caption_framed .slideshow_caption .avia-caption-content p{
    font-size: 10px;
    }
    }
    

    Regards,
    Peter

    in reply to: Can't load Avia layout pages #268483

    Hey!

    No, I don’t think this is the cause. However you can deactivate the “recommended plugins” installer by adding this code to the bottom of your child theme functions.php file (or enfold/functions.php if you’re not using a child theme):

    
    add_action('after_setup_theme','avia_deactive_recommended_plugins');
    function avia_deactive_recommended_plugins(){
    remove_action( 'tgmpa_register', 'avia_register_required_plugins' );
    }
    

    Best regards,
    Peter

    in reply to: Problems with version 2.7.1 in Firefox #268480

    Hi!

    Please let us know if Flikk’s sugestion solved the problem.


    @Flikk
    – thanks for helping us out ;)

    Cheers!
    Peter

    in reply to: Parent page and thumbnail issue #268478

    Hi!

    By default the gallery images can’t link to external websites. However you can use a third party plugin to apply custom links to gallery images. If you want to use it with Enfold follow the instructions here: https://kriesi.at/support/topic/adding-links-to-a-gallery/#post-224832

    Regards,
    Peter

    in reply to: Table and Testimonial kept disappearing #268477

    Hi!

    Please create us an admin account and post the login credentials as private reply – we’ll look into it.

    Cheers!
    Peter

    Hey!

    I can’t view the slider – I just see a “Wallstreet stylist coming soon” image.

    Best regards,
    Peter

    in reply to: Position price per unit #268474

    Hi!

    Please try this code:

    
    #top .price span.amount{
    display: block;
    }
    

    Regards,
    Peter

    in reply to: Typekit #268473

    Hey!

    Unfortunately we have no experience with Typekit and we can’t guarantee that it works without additional theme code customization. If you want to be on the safe side please purchase another theme which mentions Typekit support in the themeforest item description. We can not confirm that several clients use Enfold with Typekit because we didn’t keep track of Typekit reports in the past and we did not verify them.

    Yes you can buy the theme over and over again from the same account. Envato will always add a new item to your “purchased item” list and will issue you a separate download link and license file for each purchase. The only drawback is that you can’t create a separate support account for your client because the theme will be connected to your email address/account login – if you want to allow the client to use our support forum please use a new account (or the client’s account) to purchase the theme.

    Best regards,
    Peter

    in reply to: Site failing Google Dev tool with basic text #268468

    Hey yes9310!

    Regarding the server loading times and browser compression (gzip compression) you need to contact the server administrator because that’s a problem of the server hardware and configuration. If you want to reduce the number of javascript/css files you can use a minify/compression plugin like: https://wordpress.org/plugins/bwp-minify/ or https://wordpress.org/plugins/w3-total-cache/ which help you to merge the js/css files and to compress them.

    Regards,
    Peter

    in reply to: How to avoid rendering extra line breaks? #268464

    Hi!

    Did you try to use the new “Code Block” element instead of the “Textblock”? If you can’t find it on the template builder page please update your theme to version 2.7.1 and then it should pop up. The code block does not process the input and it also won’t add p tags to the code.

    Cheers!
    Peter

    in reply to: Contact Form 7 Radio Buttons not aligning vertical #268463

    Hey yes9310!

    Try to insert this code into the quick css field to fix the issue:

    
    #top div .wpcf7-list-item.first {
    margin-left: 5px;
    }
    

    Regards,
    Peter

    in reply to: Remove Page Titles #268459

    Hey islandjoe1!

    Can you please check the url? When I try to view http://www.islandjoescoffee.com/ in the browser I get a “not found” error.

    Regards,
    Peter

    in reply to: Move Social Media Below main menu header #268457

    Hey!

    You can move them with this code:

    
    #top .social_bookmarks {
    top: 45px;
    right: 0;
    position: absolute;
    }
    

    and replace 45px with a higher/lower value if you want to change the distance to the main menu.

    Best regards,
    Peter

    in reply to: longer excerpt #268453

    Hi!

    Insert this code at the very bottom of the child theme functions.php file (or enfold/functions.php if you’re not using a child theme)

    
    add_filter('avf_postgrid_excerpt_length','avf_increase_postgrid_excerpt_length', 10, 1);
    function avf_increase_postgrid_excerpt_length($prepare_excerpt) { return 60; }
    

    and replace 60 with your custom except length (i.e. 120). The default length is 60.

    Regards,
    Peter

    Hi!

    To fix the issue you must contact the server administrator (host provider) because the first error message

    Warning: session_start() [function.session-start]: The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’

    indicates that the server can’t create a session and this is a server configuration issue. All other errors are just follow up warnings which will vanish if you solve the session error.

    You can temporarily fix the problem by adding this code:

    
    add_theme_support('avia_no_session_support');
    
    

    at the very bottom of the child theme functions.php file (or enfold/functions.php if you’re not using a child theme) however this may break the breadcrumb on some pages because the breadcrumb uses this session data.

    Cheers!
    Peter

    in reply to: Enfold Showcase #268448

    Hi!

    Do you need a html/css developer (= designer) or more a php/wordpress developer who is familiar with the theme/framework code?

    Regards,
    Peter

Viewing 30 posts - 3,421 through 3,450 (of 9,352 total)