Forum Replies Created

Viewing 30 posts - 56,041 through 56,070 (of 67,207 total)
  • Author
    Posts
  • in reply to: Cutomization questions #315630

    Hey!

    1.) Please remove the modifications from the previous thread then add this on functions.php:

    add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    
    function avia_append_search_nav ( $items, $args )
    {	
    
    		if ($args->theme_location == 'avia') {
            $search_form = get_search_form(false);
    		$items .= '<li id="menu-item-searchbox">'.$search_form.'</li>';
        	}	
    		return $items;
    }

    Use this on Quick CSS:

    li#menu-item-searchbox form div {
    display: block !important;
    opacity: 1 !important;
    width: 100px !important;
    }
    
    li#menu-item-searchbox form div #s {
    width: 150px !important;
    max-width: 150px;
    }
    
    li#menu-item-searchbox {
    top: 25px;
    }
    
    #top #searchsubmit, .ajax_load {
    right: -50px;
    }

    2.) Use this on Quick CSS or custom.css to change the position of the social icons:

    #header_main .social_bookmarks {
    right: 35%;
    }

    Regards,
    Ismael

    in reply to: Masonry Portfolio #315618

    Hey creatiffco!

    Thank you for using Enfold.

    If you want the masonry overview page opens the image on a lightbox when you click a thumbnail, edit the portfolio item then look for the Overwrite Portfolio Link setting. Set to “Define custom link” then provide a link to the actual image.

    Cheers!
    Ismael

    in reply to: Post Categories and Portfolio Categories #315610

    Hey siestajoye!

    Thank you for using Enfold.

    I’m not sure if this is going to help you but have you tried a custom post type switcher plugin like this one? http://wordpress.org/plugins/convert-post-types/

    It will automatically convert posts to portfolio items.

    Best regards,
    Ismael

    in reply to: Child theme – Settings are not working #315591

    Hey!

    Glad it worked. If you still have questions, let us know. :)

    Cheers!
    Ismael

    in reply to: Change font of menu and buttons #315586

    Hi!

    You can change the body font on Enfold > General Styling > Font panel. It will also change the menu font. Or you can, add this on Quick CSS or custom.css to change the font family of the main menu:

    span.avia-menu-text {
    font-family: 'Oswald', sans-serif !important
    }

    Cheers!
    Ismael

    in reply to: Read More tag not working in Icon Box #315583

    Hi!

    Thank you for the update.

    Can you please give us a link to the blog page? We would like to see the issue. Please refer to this link on how to properly use the read more tag on posts: http://en.support.wordpress.com/splitting-content/more-tag/

    Cheers!
    Ismael

    in reply to: Masonry Grid not filling screen properly #315581

    Hi!

    Thank you for the update.

    Please use this on Quick CSS or custom.css:

    @media only screen and (max-width: 1340px) and (min-width: 989px) {
    .responsive .av-masonry-entry {
    width: 25%;
    }
    }

    Best regards,
    Ismael

    Hey!

    Yes, copy the the includes folder with the loop-index.php on your child theme folder.

    Regards,
    Ismael

    in reply to: Header, want to make image responsive #315577

    Hey!

    Thank you for the update.

    I checked the website on mobile view and the background of the color section is properly set to no-repeat and fixed. It doesn’t repeat as you described.

    Regards,
    Ismael

    in reply to: Fixed button width #315574

    Hey!

    Please set all button sizes to Medium then add this on Quick CSS or custom.css:

    .avia-button.avia-size-medium {
    padding: 12px 16px 10px;
    font-size: 13px;
    min-width: 150px;
    width: 150px;
    max-width: 150px;
    }

    Regards,
    Ismael

    in reply to: Pricing tables #315573

    Hey!

    Thank you for the update.

    Please edit the Table element the set the row with the numbers to “Pricing Row”.

    Best regards,
    Ismael

    in reply to: Background on portfolio items and other questions #315570

    Hi!

    Thank you for the update.

    Where is the portfolio page? Please provide a link. Transparent headers works best for pages without a sidebar or if there is a color section or full width sliders right beneath the header. You can change the header background color with this:

    .header_color .header_bg, .header_color .main_menu ul ul, .header_color .main_menu .menu ul li a, .header_color .pointer_arrow_wrap .pointer_arrow, .header_color .avia_mega_div {
    background-color: #dadfdb;
    color: #808080;
    }

    Regards,
    Ismael

    • This reply was modified 11 years, 4 months ago by Ismael.
    in reply to: WP SEO by Yoast deletes random metas & titles #315568

    Hi adrianwackernah!

    Thank you for visiting the support forum.

    Please refer to this link for a possible fix: https://kriesi.at/support/topic/issue-with-seo-by-yoast/

    Regards,
    Ismael

    in reply to: Reducing Blog Text Preview #315567

    Hi rjflaherty!

    Thank you for using Enfold.

    Please set the Blog Style on Enfold > Blog Layout panel to “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)”. Edit the Blog page, switch to the Advance Layout Builder then insert the Blog Posts element. Set the Blog Content length to excerpt.

    Regards,
    Ismael

    in reply to: Reihenfolge Seitenmenü #315565

    Hi!

    Have you tried using the Custom Menu widget instead of nested sidebar navigation?

    Best regards,
    Ismael

    in reply to: Two Questions for Single Portfolio Page #315562

    Hi atrixdave!

    Thank you for using Enfold.

    1.) Try adding this on functions.php:

    function avf_portfolio_title_args($args) { 		
    	$title = get_the_title($id);
    	
    	if(is_singular('portfolio')) {
    	$terms = get_the_terms( $id, 'portfolio_entries' );
    	$portfoliocat = array();
    	foreach ( $terms as $term ) {
    		$portfoliocat[] = $term->name;
    	}	
    	$args['title']    = $portfoliocat[0];	
    	} else {	
    	$args['title']    = $title;
    	}
    	return $args;
    }
    add_filter('avf_title_args', 'avf_portfolio_title_args', 10, 1);
    

    2.) Set the the Media page as parent page of the Podcasts page. See if that changes the breadcrumbs.

    3.) Add this on Quick CSS or custom.css to hide the post title:

    span.trail-end {
    display: none !important;
    }

    Cheers!
    Ismael

    in reply to: Problems with 4.0 #315551

    Hi!

    You need to contact your host to install those php extensions for the layer slider. Have you tried deleting the slider then create it again from scratch?

    Cheers!
    Ismael

    in reply to: Lightbox doesn´t work #315545

    Hi!

    We’re really sorry but we can’t help you with this one. You can contact the plugin author for support. The justified image grid is a premium plugin, they will be able to help you better.

    Cheers!
    Ismael

    in reply to: Contenet editor issue after upgrade to WP 4.0 #315006

    Hi matjaz_!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual website? Make sure that you’re running Enfold 2.9.2.

    Cheers!
    Ismael

    in reply to: Pages don't load in wordpress 4.0 #315005

    Hi Lukine!

    Thank you for using Enfold.

    Make sure that you’re running Enfold 2.9.2. This should fix the issue with WordPress 4.0.

    Regards,
    Ismael

    in reply to: Problem with the alignment Space when inside a color section #315002

    Hey!

    No, it’s not a bug. Can you please delete the css snippet temporarily? The columns are aligned perfectly without it when I checked the site. You can also leave the css snippet if it fixed the issue.

    Best regards,
    Ismael

    in reply to: widget area and page edit on control panel not working #315001

    Hey!

    Thank you for using Enfold.

    Make sure that you’re running Enfold 2.9.2 to compensate for the WordPress 4.0 update. This should sort the issue. If not, maybe a plugin is causing the issue. Deactivate all plugins then test it again.

    Best regards,
    Ismael

    in reply to: WordPress SEO by Yoast #314997

    Hey lome61!

    Thank you for visiting the support forum!

    Yes, there are minor occurring issues with the plugin but so far they can be fix with small snippets of codes like this one ( https://kriesi.at/support/topic/issue-with-seo-by-yoast/ ) for example. You should avail the premium version of the plugin to get better support: https://yoast.com/wordpress/seo-premium/

    Regards,
    Ismael

    in reply to: Change mobile menu breakpoint #314996

    Hi Iano999!

    Thank you for using Enfold.

    Please go to Enfold > Mobile Menu panel then look for the Header Mobile Menu activation. Choose the second option.

    Regards,
    Ismael

    in reply to: Buttons have stopped displaying correctly #314995

    Hi!

    The website is on maintenance mode. Please give us a temporary login details so that we can see the button issue. Please try to delete the enfold_child.css file on wp-content/uploads/dynamic_avia folder. Change anything on the theme options then save changes to regenerate the file. See if the button gets fixed.

    Best regards,
    Ismael

    in reply to: Customize language switcher in primary menu links #314991

    Hi Antonia!

    Thank you for using Enfold.

    Do you mind if we take a look at the actual website? The default language selector for the theme should be flag symbols, not dropdown selector. You can remove the current language flags using this on Quick CSS:

    .avia_current_lang {
    display: none;
    }

    Cheers!
    Ismael

    in reply to: Enfold and Woocommerce order data #314989

    Hey Francesco!

    Thank you for using Enfold.

    Did you check the settings on Woocommerce > Settings > Checkout panel? Make sure that the checkout page is properly assigned along with the end points. Please refer to this link: http://docs.woothemes.com/document/woocommerce-endpoints-2-1/

    Best regards,
    Ismael

    Hey!

    Glad you figured it out. If you still have questions, let us know. :)

    Cheers!
    Ismael

    in reply to: Move Color section below page content #314983

    Hi!

    You might need to use the Custom Menu widget in place of the nested sidebar navigation. :)

    Regards,
    Ismael

    Hey Ryan!

    Thank you for using Enfold.

    You can change the caption title with this:

    #top #wrap_all .main_color h2.avia-caption-title {
    color: red;
    }

    And the caption content using this:

    .avia-caption-content {
    color: blue;
    }

    Cheers!
    Ismael

Viewing 30 posts - 56,041 through 56,070 (of 67,207 total)