Forum Replies Created

Viewing 30 posts - 14,551 through 14,580 (of 14,834 total)
  • Author
    Posts
  • in reply to: Breadcrumbs don't show entire journey to page. #347426

    Hey elloEmily!

    Are you sure “Apprenticeships” is a child page of “14-19”? If so then it should display in the breadcrumbs.

    If your still having problems then try deactivating all plugins and send us a link and we’ll take a look.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Responsive design on tablet not always working #347423

    Hi!

    I don’t have that specific device to test on. I’ll flag this for the rest of our team to take a look.

    Best regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Woocommerce update – all content disappears #347413

    Hi envapk2!

    Try deactivating all plugins except Woocommerce and make sure Enfold and WordPress are updated.

    If your still having problems then send us a WordPress login and we’ll take a look. Make sure to mark your reply as private if including login information.

    Cheers!
    Elliott

    in reply to: Full Width Easy Slider Stopping in Safari #347407

    Hi!

    It looks fine on Windows 8.1 with latest Safari. Tried waiting around and clicking on links, etc etc, seems solid.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Mobile menu missing the current "Forum" entry #347339

    Hey!

    I got rid of the error eventually but I still do not know what is going on with the titles. Let us know what the plugin authors say and we’ll take another look.

    Regards,
    Elliott

    in reply to: Promo Box Sizing and Positioning #347327

    Hey tonyska!

    Try this out.

    .your-class {
        max-width: 500px;
        margin: 0px auto !important;
        position: relative !important;
        float: none !important;
    }

    As for the border above it make sure your not embedding the promo box inside other elements. If your still having problems then send us a WordPress login and we’ll take a closer look.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: issues with latest update #347319

    Hey winsleav!

    It’s because your setting your headers to transparent. I think what you’ll want to do is create a color section at the top of your pages and set it to a specific color or remove the transparent header.

    Or if you just want to use CSS to change the header background then try this out.

    #top .av_header_transparency .header_bg { background: red !important; opacity: 1 !important; }
    

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Menu not sticking in firefox and chrome #347310

    Hi tyler3190!

    It’s displaying the same in all browsers for me. Are you trying to give it a fixed position so it will stay visible as you scroll down the page? If so then add this to your custom CSS.

    #header { position: fixed !important; }
    

    Cheers!
    Elliott

    in reply to: Extra images showing in galleries #347297

    Hey annarosekeith!

    I don’t seem to be having the problem on my localhost. Can you send us a WordPress login so we can take a closer look? Be sure to mark your reply as private.

    Cheers!
    Elliott

    in reply to: Multiple Unique Styles for Custom Sidebar Menus #347275

    Hey wcathro!

    You can find the navigation menu widget CSS in /enfold/css/layout.css starting on line 2038 to get an idea on how to style it.

    If you want to target them separately then you can use their IDs like so.

    #menu-item-3331 a {
        background: green;
    }

    Cheers!
    Elliott

    in reply to: Re-Modifying and tweaking Woocommerce page layouts #347271

    Hi!

    Unfortunately you wouldn’t be able to get the default product template to display along with our advanced layout editor but we may change this in the future.

    Woocommerce has an add to cart shortcode you can use though, http://docs.woothemes.com/document/woocommerce-shortcodes/. You should be able to create an interesting product layout with that and our advanced layout editor.

    I’m not sure what you mean by “men-catalog-page”. Are you referring to one of the product pages on our demo?

    Cheers!
    Elliott

    in reply to: Show Portfolio Tags #347255

    Hi shiz981!

    Open up /enfold/includes/loop-portfolio-single.php and around line 39 you should see this.

    wp_link_pages($avia_wp_link_pages_args);
    

    Try adding this beneath it.

    if(has_tag() && is_single())
    {
    	echo '<span class="blog-tags minor-meta">';
    	the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    	echo '</span></span>';
    }
    

    Regards,
    Elliott

    in reply to: Changing padding in section's LARGE PADDING option #347250

    Hey!

    The default values should be 70px actually.

    Best regards,
    Elliott

    in reply to: Menu options unavailable #347245

    Hi shiz981!

    I just tested on my XAMPP setup and didn’t see any problems with creating menus or editing the theme options. Does the same thing happen when the default theme is activated? Be sure to deactivate all plugins while testing and send us a screenshot so we can get a better idea of what’s going on.

    Cheers!
    Elliott

    in reply to: banners in header WHAT WORKS? #347241

    Hey!

    On line 13 in /enfold/includes/helper-main-menu.php right below this line,

    <header id='header' class=' header_color <?php avia_is_dark_bg('header_color'); echo " ".$headerS['header_class']; ?>' <?php avia_markup_helper(array('context' => 'header','post_type'=>'forum'));?>>
    

    Best regards,
    Elliott

    in reply to: Problems with WPML after upgrading #347235

    Hi Jorge!

    Navigate to your Enfold settings and in the top left hand corner you’ll see a language switcher where you can change the theme settings for each language. You’ll want to switch to English and then set the frontpage setting to one of your pages.

    Best regards,
    Elliott

    in reply to: Content Deleting upon Update #347230

    Hey!

    I went ahead and added a paralax section with a special heading and saved and it’s working fine for me. Go ahead and try editing it again and save to see if it works for you.

    Best regards,
    Elliott

    in reply to: Masonry Blog #347226

    Hey consult!

    It’s hard to understand from your questions. Can you send us a link to your masonry gallery? You can mark your reply as private if you wish.

    Regards,
    Elliott

    in reply to: Setting Excerpt limits in blog category view #347224

    Hey!

    This should strip the shortcodes out.

    function custom_category_excerpt( $c ) {
           if ( is_category() )
           {
                  return substr( strip_shortcodes(get_the_content()), 0, 200 );
           }
    	   return $c;
    }
    add_filter( 'the_content', 'custom_category_excerpt', 999, 1 );

    Cheers!
    Elliott

    in reply to: Side bar Showing at bottom of single page #347219

    Hey!

    Glad you got it sorted. I took a look but you fixed everything it seems like. Let us know if you have any other questions.

    Cheers!
    Elliott

    in reply to: Event calendar featured image #347213

    Hi momon!

    If you want to do it selectively then when editing your event switch to the Text editor and add this to the bottom,

    <style type = "text/css">
    .tribe-events-event-image img { display: none !important; }
    </style>

    And you can then add your own into the content.

    Best regards,
    Elliott

    in reply to: Gallery Break #347206

    Hi!

    Sorry for the wait. Try this out, https://kriesi.at/support/topic/gallery-issue-white-space-to-the-left-of-rows/#post-347201.

    Best regards,
    Elliott

    in reply to: Gallery Issue White space to the left of rows #347201

    Hey!

    It looks like it could be an unintentional bug but I’m not sure. The image sizes are slightly different and it’s knocking the floats off. I’ve seen this question pop up a few times so I’ll flag this for the rest of our team to take a look. I think we will probably end up cropping the images but in the meantime try opening up /enfold/config-templatebuilder/avia-shortcodes/gallery.php and find line 225.

    $first = false;
    

    And add this above it.

    if ( $counter % $columns == 0 ) { $thumbs .= "<div class = 'clear'></div>"; }
    

    That should make it so the different sizes do not break the columns. Be sure to update Enfold to the latest version (3.0.2) as well.

    Regards,
    Elliott

    in reply to: Using Tabs #347165

    Hi!

    Unfortunately there is not an easy way to go about that. It’s possible but it would take a lot of time and code and would have to be considered custom work. Some good places to look for a freelancer are, http://studio.envato.com/ or https://www.elto.com/.

    Regards,
    Elliott

    Hey!

    Make sure you do the edit on the file after copying over to your child theme. Send us a WordPress and FTP login if your still having problems and we’ll take a look. Make sure to mark your reply as private.

    Best regards,
    Elliott

    in reply to: mobile changes #347137

    Hey!

    1. You need to remove the comments you set in the code. They are making it so the CSS does not get applied.

    2. Make sure that responsive mode is turned on in the slider settings.

    3. It’s displaying as Calibri on my end. What mobile device are you using?

    4. Add this to your custom CSS,

    @media only screen and (max-width: 479px) { .avia-google-map-container { height: 200px !important; width: 200px !important; } }
    

    And play around with the width + height values to change it’s size.

    5. Your referring to the lightbox popup correct? It seems to be working fine on my end.

    6. You currently have 6 columns there. You need to use only 3 and add the buttons in with the textblocks so they are in the same column.

    Regards,
    Elliott

    • This reply was modified 9 years, 11 months ago by Elliott.

    Hi Ralph12!

    Thanks for the tips Ralph12.

    Regards,
    Elliott

    in reply to: access to Shortcodes for contributor #346915

    Hi Robert!

    Try opening up /enfold/config-templatebuilder/avia-template-builder/php/tiny-button.class.php and find lines 37 – 43.

    if ( current_user_can('edit_posts') &&  current_user_can('edit_pages') && self::$count == 0)  
    {  
    	add_filter( 'mce_external_plugins' 	, array( &$this, 'add_javascript' ) );  
    	add_filter( 'mce_buttons' 			, array( &$this, 'display_in_editor' ) );  
    	add_filter( 'admin_print_scripts' 	, array( &$this, 'create_js_globals' ) );  
    	self::$count ++;
    }  
    

    And change them to this.

    //if ( current_user_can('edit_posts') &&  current_user_can('edit_pages') && self::$count == 0)  
    //{  
    	add_filter( 'mce_external_plugins' 	, array( &$this, 'add_javascript' ) );  
    	add_filter( 'mce_buttons' 			, array( &$this, 'display_in_editor' ) );  
    	add_filter( 'admin_print_scripts' 	, array( &$this, 'create_js_globals' ) );  
    	self::$count ++;
    //}  
    

    Cheers!
    Elliott

    in reply to: Mobile menu missing the current "Forum" entry #346902

    Hi!

    I do not know. I tried installing the plugin to debug but I’m getting a fatal error when activating it. Let us know what the authors say.

    You can find the function for displaying the page title in /enfold/functions-enfold.php starting on line 261.

    //advanced title + breadcrumb function
    if(!function_exists('avia_title'))
    {
    	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'] = "";
    		}
    		
    		//disable breadcrumb if requested
    		if($header_settings['header_title_bar'] == 'title_bar') $defaults['breadcrumb'] = false;
    
    		// 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);
    
    		// 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)) $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);
    		$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

    • This reply was modified 9 years, 11 months ago by Elliott.
    in reply to: Problems with responsiveness of media images #346899

    Hi!

    I’m sorry El_Chapo but I’m not sure. You’ll probably want to just edit the images to whatever dimension you need.

    Best regards,
    Elliott

Viewing 30 posts - 14,551 through 14,580 (of 14,834 total)