Forum Replies Created

Viewing 30 posts - 7,111 through 7,140 (of 14,834 total)
  • Author
    Posts
  • in reply to: background color across a group of elements #445934

    Hey despencer!

    Go ahead and take a screenshot highlighting exactly what your trying to do so we can get a better idea.

    Regards,
    Elliott

    in reply to: Change Background Image to Image for SEO purposes? #445932

    Hey jmcrist!

    I don’t think your going to get any SEO benefits doing that.

    Changing them would take quite a bit of editing to do so it would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.

    Best regards,
    Elliott

    in reply to: Editing Ajax Porfolio #445929

    Hey mathswizard!

    The Masonry script sets that so I’m not sure if that is going to work. Send us a link to your page and take a screenshot highlighting what your trying to do and we’ll check to see if it’s possible.

    Regards,
    Elliott

    in reply to: enfold share buttons not working on an article #445928

    Hey joshuati!

    The advanced layout editor is for users who need complete control over how their post displays. If you want the post to display like a regular post then you’ll want to use the default editor. That being said, if your using the latest version of Enfold then there is a new element called “Social Share Buttons” which you can use to get that element to display with the advanced layout editor.

    Cheers!
    Elliott

    in reply to: Gallery Doesn't display #445927

    Hey fineart!

    Let’s try the following.

    1. Deactivate all plugins.

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy.

    Cheers!
    Elliott

    in reply to: Error message updating theme #445922

    Hi!


    @isquaremedia
    , It says your using Enfold 2.8.1. If you completely deleted it before downloading + uploading a fresh copy from themeforest then you should be on the latest version, 3.1.5. Also, you need to update WordPress as well.


    @grantnieddu
    , Are you sure WordPress and Enfold are updated to their latest versions? If so then send us a WordPress login and we’ll take a look.

    Cheers!
    Elliott

    in reply to: Breaking Points or liquid Design #445919

    Hey FlipmodeSQ!

    They should be the same regardless of version your using. Send us a link to your page so we can get a better idea of what’s going on.

    It would be best to update Enfold to the latest version, 3.1.5, and deactivate all plugins while testing.

    Regards,
    Elliott

    in reply to: Change background color per element – full width #445918

    Hey!

    Go ahead and send us a link to your page and take a screenshot highlighting what your trying to do so we can get a better idea.

    Best regards,
    Elliott

    in reply to: Ajax portfolio view in full screen gallery #445917

    Hi Vinicius!

    So in this case instead of using the AJAX preview you want the images to open up in the magnific popup so you can scroll through them instead correct?

    In this case it would be best to use the Masonry Gallery element instead as it does this automatically.

    Best regards,
    Elliott

    in reply to: membership section #445912

    Hey nulrick!

    You would need to use a plugin such as s2member or wishlist. Yes, we have made sure bbPress is compatible with Enfold.

    Best regards,
    Elliott

    in reply to: bbpress (forum) doesnt shows in my blog #445884

    Hi Alperito!

    Do you mean your wanting to display a link to your forum in the main menu? You could create a custom link and then set the URL to something like this.

    http://www.yoursite.com/forum/
    

    Or wherever you setup your forum.

    Regards,
    Elliott

    Hi SK!

    You can use the more tag or the custom excerpt field when editing the post.

    If your trying to have the homepage display a custom excerpt and the archives display the regular excerpt then I’m not sure if that is going to be possible or not.

    Regards,
    Elliott

    in reply to: Use stretched or boxed layout #445879

    Hi blonddragon!

    Add this to your custom CSS.

    #wrap_all { max-width: 1030px !important; margin: 0px auto !important; }
    .home #wrap_all { max-width: 100% !important; }
    

    Regards,
    Elliott

    in reply to: Left log and menu #445869

    Hey!

    Yes, create a new menu in Dashboard > Appearance > Menus and then use the “Custom Menu” widget. You can add it to your sidebar or use our column and “Widget Area” elements instead.

    Regards,
    Elliott

    in reply to: Style Menus #445861

    Hi!

    I think what your trying to do is something like this.

    nav.main_menu {
      left: -35% !important;
      position: fixed !important;
      top: 20px !important;
    }

    Best regards,
    Elliott

    in reply to: how to get more options for fonts in Enfold #445853
    in reply to: Zoom fullscreen only in the lightbox #445846

    Hey fredengl!

    We use the magnific popup script, http://dimsemenov.com/plugins/magnific-popup/, and it doesn’t look like it has that feature. What I would do is add a link to the image in the alt or title text so the user can view it separately in the browser.

    Cheers!
    Elliott

    in reply to: Animated Numbers With Formula? #445842

    Hi!

    That would have to be considered custom work. It would be best to hire a freelancer to help you out with this customization.

    Or consider creating a feature request here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.

    Regards,
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: Hide Advanced Layout Editor button on posts #445841

    Hi draig!

    Add this in /enfold/framework/css/avia_admin.css.

    .post-type-post .avia-builder-button { display: none !important; }
    

    Regards,
    Elliott

    in reply to: Magazine Shortcode Larger Featured Image #445830

    Hey!

    I’m sorry but I’m not sure I understand. Take a screenshot and highlight what your trying to do so we can get a better idea.

    Regards,
    Elliott

    in reply to: Child theme – no override single.php #445818

    Hey!

    1. So the code is working but your wanting to do it in a child theme or the code is not working at all?

    2. Try adding this to your child theme functions.php file.

    	function avia_backend_add_thumbnail_size(&$avia_config)
    	{
    		if (function_exists('add_theme_support'))
    		{
                            $avia_config['imgSize']['widget'] 			 	= array('width'=>136,  'height'=>136);
    			foreach ($avia_config['imgSize'] as $sizeName => $size)
    			{
    				if($sizeName == 'base')
    				{
    					set_post_thumbnail_size($avia_config['imgSize'][$sizeName]['width'], $avia_config[$sizeName]['height'], true);
    				}
    				else
    				{
    					if(!isset($avia_config['imgSize'][$sizeName]['crop'])) $avia_config['imgSize'][$sizeName]['crop'] = true;
    
    					add_image_size(
    						$sizeName,
    						$avia_config['imgSize'][$sizeName]['width'],
    						$avia_config['imgSize'][$sizeName]['height'],
    						$avia_config['imgSize'][$sizeName]['crop']);
    				}
    			}
    		}
    	}

    3. I haven’t tested it out but you could try copying the whole class to your child theme functions.php file. Lines 420 – 665. If that does not work then you would need to edit the parent theme instead.

    Best regards,
    Elliott

    in reply to: Form email subject line #445812

    Hi!

    Yes, it would look something like this.

    $subject = "booking from " . urldecode($new_post['företag_'.(avia_form::$form_id - 1)]);
    

    And make sure “foretag” is using the correct ID that I set before.

    Cheers!
    Elliott

    Hi Evoluu!

    Add this to your child theme functions.php file.

    	function avia_default_title_filter($current_post)
    	{
    		if(!empty($current_post['title']))
    		{
    			$heading = is_singular() ? "h1" : "h2";
    	
    			$output  = "";
    			//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    			$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    			$output .= "	<a href='".get_permalink()."' rel='bookmark' title='".$current_post['title']."'>".$current_post['title'];
    			$output .= "			<span class='post-format-icon minor-meta'></span>";
    			$output .= "	</a>";
    			$output .= "</{$heading}>";
    	
    			$current_post['title'] = $output;
    		}
    
    		return $current_post;
    	}
    

    Cheers!
    Elliott

    • This reply was modified 10 years, 8 months ago by Elliott.
    in reply to: Remove empty title in header #445798

    Hey il_pelle!

    Try adding this to the child theme functions.php file.

    function avia_title($args = false, $id = false)
    	{
    		global $avia_config;
    
    		if(!$id) $id = avia_get_the_id();
    		
    		$header_settings = avia_header_setting();
    		if($header_settings['header_title_bar'] == 'hidden_title_bar') return "";
    		
    		$defaults 	 = array(
    
    			'title' 		=> get_the_title($id),
    			'subtitle' 		=> "", //avia_post_meta($id, 'subtitle'),
    			'link'			=> get_permalink($id),
    			'html'			=> "<div class='{class} title_container'><div class='container'><{heading} class='main-title entry-title'>{title}</{heading}>{additions}</div></div>",
    			'class'			=> 'stretch_full container_wrap alternate_color '.avia_is_dark_bg('alternate_color', true),
    			'breadcrumb'	=> true,
    			'additions'		=> "",
    			'heading'		=> 'h1' //headings are set based on this article: http://yoast.com/blog-headings-structure/
    		);
    
    		if ( is_tax() || is_category() || is_tag() )
    		{
    			global $wp_query;
    
    			$term = $wp_query->get_queried_object();
    			$defaults['link'] = get_term_link( $term );
    		}
    		else if(is_archive())
    		{
    			$defaults['link'] = "";
    		}
    		
    		
    		// Parse incomming $args into an array and merge it with $defaults
    		$args = wp_parse_args( $args, $defaults );
    		$args = apply_filters('avf_title_args', $args, $id);
    
    		//disable breadcrumb if requested
    		if($header_settings['header_title_bar'] == 'title_bar') $args['breadcrumb'] = false;
    		
    		//disable title if requested
    		if($header_settings['header_title_bar'] == 'breadcrumbs_only') $args['title'] = '';
    
    		// OPTIONAL: Declare each item in $args as its own variable i.e. $type, $before.
    		extract( $args, EXTR_SKIP );
    
    		if(empty($title)) $class .= " empty_title ";
            $markup = avia_markup_helper(array('context' => 'avia_title','echo'=>false));
    		if(!empty($link) && !empty($title)) $title = "<a href='".$link."' rel='bookmark' title='".__('Permanent Link:','avia_framework')." ".esc_attr( $title )."' $markup>".$title."</a>";
    		if(!empty($subtitle)) $additions .= "<div class='title_meta meta-color'>".wpautop($subtitle)."</div>";
    		if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    
    		$html = str_replace('{class}', $class, $html);
    		if($header_settings['header_title_bar'] == 'breadcrumbs_only') { $html = str_replace('{title}', $title, $html); }
    		$html = str_replace('{additions}', $additions, $html);
    		$html = str_replace('{heading}', $heading, $html);
    
    		if(!empty($avia_config['slide_output']) && !avia_is_dynamic_template($id) && !avia_is_overview())
    		{
    			$avia_config['small_title'] = $title;
    		}
    		else
    		{
    			return $html;
    		}
    	}
    }

    Best regards,
    Elliott

    in reply to: Add a new avia layout builder element #445783

    Hey p_niedrich!

    All you would need to do is this, https://kriesi.at/support/topic/background-video-with-no-sound/#post-229951, if your wanting the background video to have sound.

    You could request this feature here, https://kriesi.at/support/enfold-feature-requests/, and if it gets enough interest then we may see something get added in a future update.

    Best regards,
    Elliott

    in reply to: Footer: always and centered #445179

    Hey xianeK!

    Try adding this to your custom CSS.

    #socket .sub_menu_socket {
      float: none;
      left: 50% !important;
      margin: 0;
      position: relative;
      transform: translateX(-25%);
    }
    @media screen and (max-width:767px) {
    #socket .sub_menu_socket { transform: none !important; left: 0px !important; }
    }

    Regards,
    Elliott

    in reply to: Every page is saved with index.php in the middle #445177

    Hey jolynndeal!

    Try creating a copy of your .htaccess file and then delete it and refresh your permalinks in Dashboard > Settings > Permalinks. Pay special attention to any messages WordPress gives you such as .htaccess file not being writable, etc etc.

    If your using a custom permalink structure then try setting it to the “default” or “postname” setting instead.

    Regards,
    Elliott

    Hey Paul!

    I don’t know of any that I can recommend. The WordPress plugin repository is a good place to find new plugins, https://wordpress.org/plugins/.

    If anyone knows of any then please share.

    Best regards,
    Elliott

    in reply to: Layered navigation #445174

    Hi Jakob40004000!

    Your screenshot is not loading for me. Go ahead and send us a link to your page so we can get a better idea of what’s going on.

    Also be sure to deactivate all plugins while testing to see if they are causing the problem.

    Cheers!
    Elliott

    in reply to: image alt tags missing #445173

    Hi webon_israel!

    Which shortcode are you using? Send us a link and we’ll take a look.

    Make sure Enfold is updated to the latest version, 3.1.5.

    Cheers!
    Elliott

Viewing 30 posts - 7,111 through 7,140 (of 14,834 total)