Forum Replies Created

Viewing 30 posts - 52,591 through 52,620 (of 67,510 total)
  • Author
    Posts
  • in reply to: Embedded Video Code Showing in Excerpt #378132

    Hey!

    Try to set the post format to Video. Also, we kindly ask you to open your own thread. Thank you.

    Best regards,
    Ismael

    in reply to: Logo Wont Display #378130

    Hi microhound!

    Thank you for using Enfold.

    You can add two logos, one for the default header and another for the transparent header. Go to Enfold > Theme Options > Logo to set the main logo and then go to Enfold > Header > Transparency Options to set the transparent logo.

    Best regards,
    Ismael

    in reply to: Something can't be right… #378128

    Hi pc37075!

    Thank you for using Enfold.

    The site looks nice but the width or container can use some adjusting. Increase the Max Container Width on Enfold > General Layout > Dimensions panel. Or you can set the elements of the header to stick to the edge of the browser. Go to Enfold > Header > Header Behavior then enable Let logo and menu position adapt to browser window option.

    Best regards,
    Ismael

    in reply to: Layout Builder Deleting Content #378127

    Hi bocable!

    Thank you for using Enfold.

    Did you add any html codes on the page? Make sure that you closed the tags properly or you will lose content below that element.

    Best regards,
    Ismael

    in reply to: Need a new Index.php file after a hack #378124

    Hey!

    Yes, it will but you’ll somehow be violating the license agreement. You can only use a single license on a single site or client. Can’t you just download the theme again?

    Best regards,
    Ismael

    in reply to: Font Awesome v4.2.0 #378123

    Hey Jared!

    Thank you for using Enfold.

    Yes, it will work. Refer to this link for more info: http://fortawesome.github.io/Font-Awesome/get-started/

    Cheers!
    Ismael

    in reply to: Show title and breadcrumbs on archive page #378119

    Hey Luigi Francesco!

    Thank you for using Enfold.

    If you want to see the breadcrumb below the main title, use this on Quick CSS:

    .title_container .breadcrumb {
    position: relative;
    right: auto;
    top: 0;
    margin-top: 0px;
    padding-bottom: 8px;
    overflow: hidden;
    left: -2px;
    }

    Regards,
    Ismael

    Hi!

    It does’t really matter which language you set as the main site because you can always change it. You need to create a new menu on Appearance > Menus panel then set it as Enfold Secondary Menu. Use this on functions.php to add the language switcher:

    add_action('avia_meta_header', 'qtrans_lang_chooser');
    function qtrans_lang_chooser() {
    	if (function_exists('qtrans_generateLanguageSelectCode')) {
    		ob_start();
    		echo qtrans_generateLanguageSelectCode('image');
    		$output = ob_get_contents();
    		ob_end_clean();
    		echo $output;
    	}
    }

    Best regards,
    Ismael

    in reply to: Section in HomePage Layout customization #378115

    Hi!

    Try to add this on Quick CSS or custom.css:

    div#portfolio .flex_column.av_one_third .avia-image-container, div#portfolio .flex_column.av_one_third .av_textblock_section {
    width: 47%;
    float: left;
    }

    Best regards,
    Ismael

    in reply to: Change font color of text in contact form #377929

    Hi!

    Use this:

    #top .header_color input[type='text'] {
    color: blue !important;
    }
    
    #top .header_color textarea {
    color: blue !important;
    }
    

    This is for the asterisk:

    .header_color .required {
    color: pink !important;
    }

    Regards,
    Ismael

    in reply to: Article slider excerpt #377928

    Hey!

    @Camille: How did you add the excerpt on the magazine element? Please give us a link to the actual page.

    Cheers!
    Ismael

    Hi!

    Thank you for using Enfold.

    Move the filter below line 16 of functions.php:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    The filter should work by then. Select the new font on the theme options.

    Regards,
    Ismael

    in reply to: New single.php for category #377926

    Hey!

    Thank you for using Enfold.

    Creating a new single.php will return the entries from a custom post type not a specific category. You need to add wp conditionals, is_category to be specific, on a the current single.php then create a new loop template inside the includes folder. Please give us a link to the actual category page. We can use css to remove the social sharing for that specific category.

    Regards,
    Ismael

    in reply to: Second logo on header #377920

    Hey!

    Replace the code with this:

    function after_head_image_func(){
    	echo "<div class='custom_content'><a href='_LINK_HERE_'><img src='_URL_'></a></div>";
    	
    }
    add_action('ava_main_header', 'after_head_image_func');

    Regards,
    Ismael

    in reply to: Change the look of single post template? #377918

    Hi!

    Go to Enfold > Sidebar Settings panel then set the Sidebar on Single Post Entries to show no sidebar.

    Regards,
    Ismael

    in reply to: Disable background color #377917

    Hey!

    Install a cache and minify plugin. Resave the background image as png format then enable Interlaced. This will show a lower resolution of the image while the page load.

    Cheers!
    Ismael

    in reply to: User having trouble viewing website with an Ipad #377916

    Hey!

    I checked the site on an iPod and I was able to watch one of the video. The website is not reloading automatically. Ask your visitor to restart his device then remove browser cache.

    Best regards,
    Ismael

    in reply to: Header logo doesn't get smaller when window shrinks #377913

    Hi alex2545!

    Thank you for using Enfold.

    If you don’t mind, we would like to see the website. Post the url here. Is this happening on mobile view?

    Cheers!
    Ismael

    in reply to: Transparent menu #377912

    Hi Carlos!

    Thank you for using Enfold.

    Change the transparent menu colors on Enfold > Header > Transparency Options panel. What do you mean by internal menu?

    Regards,
    Ismael

    in reply to: Datum / Kategorie / Autor im Blogbereich #377909

    Hi Mac_ma!

    Thank you for using Enfold.

    You can remove the meta info on Enfold > Blog Layout > Blog meta elements.

    Best regards,
    Ismael

    in reply to: Truncate the blog post title #377908

    Hi bjornwallman!

    Thank you for using Enfold.

    Add this on functions.php:

    function limit_words($string, $word_limit){
    	$words = explode(" ",$string);
    	return implode(" ",array_splice($words,0,$word_limit)) . '...';
    }

    Edit config-template-builder > postslider.php, find this code on line 372:

    $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($title))."'>".$title."</a></h3>" : '';
    

    Replace it with:

    $blogtitle = limit_words($title,5);
                        $output .= !empty($title) ? "<h3 class='slide-entry-title entry-title' $markup><a href='{$link}' title='".esc_attr(strip_tags($blogtitle))."'>".$blogtitle."</a></h3>" : '';
    

    This will limit the title to 5 words. Adjust it on this line:

    $blogtitle = limit_words($title,5);
    

    Regards,
    Ismael

    in reply to: Photos not loading #377907

    Hey karlgrass!

    Thank you for using Enfold.

    There’s a maximum upload size on the Media panel. Try to increase it. Refer to this link how: http://www.wpbeginner.com/wp-tutorials/how-to-increase-the-maximum-file-upload-size-in-wordpress/

    Best regards,
    Ismael

    in reply to: Avia Layout Builder av_contact #377906

    Hi SRD!

    Thank you for using Enfold.

    I’m sorry but you’re using an old version of the theme, 2.8.1. Please download the latest version 3.0.4 from your themeforest account then update the theme via FTP. Please refer to this link for more info: http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Ismael

    in reply to: Enfold First Timer – Admin Visibility #377905

    Hey!

    Thank you for using Enfold.

    1.) You can zoom the browser window if you’re having trouble reading the descriptions.

    2.) Again, zoom the browser or check your monitor color options.

    3.) We’re using the default wp search so there’s no filter or anything. Since 99% or more of the inquiries are about Enfold, search results will give you Enfold topics mostly. One of the forum features that needs improvement in the future.

    Cheers!
    Ismael

    in reply to: Logo default linking action #377904

    Hey dalboslampen!

    Thank you for using Enfold.

    Use this on functions.php:

    add_filter( 'avf_logo_link', 'enfold_customization_logo_link' );
    function enfold_customization_logo_link( $link ){
    	$link = "#top";
    	return $link;
    }

    Regards,
    Ismael

    Hey!

    I tested the fix above and it works. You might need to adjust it for different screen sizes using media queries. What is the screen resolution of your monitor?

    .home ul.avia-slideshow-inner {
    height: 535px !important;
    max-height: 535px !important;
    }

    Regards,
    Ismael

    in reply to: White border top, bottom an between pictures #377901

    Hey!

    I’m sorry but what you’re trying to do requires custom modifications that are beyond the scope of support. Please hire a freelance developer or to modify the elements. For further modifications, please visit Envato Studio or Werkpress. You can try to use color sections to enclose the slider and another color section for the 4 column containers below. Apply a unique id using the For Developers: Section ID field, use these selectors to modify the container and elements inside of the color section.

    Regards,
    Ismael

    in reply to: Color Section Background Image on Mobile #377900

    Hey Shatteringdesign!

    Thank you for using Enfold.

    Add a unique id on the color section using the For Developers: Section ID field. Use “hide-bg-mobile” for example then add this on Quick CSS:

    @media only screen and (max-width: 767px) { 
    #hide-bg-mobile { background: none !important; }
    }

    Cheers!
    Ismael

    in reply to: How to change woocommerce category thumbs (avia?) #377898

    Hey bryan1976!

    Thank you for using Enfold.

    Try to increase the column count to decrease the image size on WooCommerce > Settings > Products > Column Count. Decreasing the thumbnail size alone won’t do because the image will still inherit the size of the column container.

    Best regards,
    Ismael

    in reply to: Advanced Menu Customization #377896
Viewing 30 posts - 52,591 through 52,620 (of 67,510 total)