Forum Replies Created

Viewing 30 posts - 3,091 through 3,120 (of 3,715 total)
  • Author
    Posts
  • in reply to: How to control the font size inside a team member element? #390007

    Hi DROR!

    Thank you for coming back.

    Use the following and adjust the values:

    
    .avia-team-member .team-member-name {
        font-size: 25px !important;
    }
    
    .avia-team-member  .team-member-job-title {
           font-size: 18px !important;
    }
    
    .avia-team-member p {
        font-size: 20px !important;
    }
    

    Best regards,
    Günter

    Hi Kristianbang12!

    Thank you for using our theme.

    Try to use the following:

    
    #top .avia_cart_buttons .show_details_button {
        display: none !important;
    }
    
    #top .avia_cart_buttons .button-mini-delimiter {
        display: none !important;
    }
    
    #top .avia_cart_buttons .add_to_cart_button {
        width: 100% !important;
    }
    

    Best regards,
    Günter

    in reply to: Remove blog post title + link on single post #389998

    Hey changegroup!

    Thank you for coming back.

    To remove the title on this specific page:

    
    .postid-5220 .post-title {
        display: none !important;
    }
    

    To remove all single post titles:

    
    .single-post .post-title {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: How do I remove the Gravatar from Posts? #389996

    Hey emeyer1!

    Thank you for using our theme.

    in functions.php at the end put the following:

    
    add_filter('avf_loop_index_blog_meta', 'my_avf_loop_index_blog_meta', 10, 1);
    function my_avf_loop_index_blog_meta($blog_meta_output)
    {
    	if( is_string($blog_meta_output) && (stripos( $blog_meta_output, 'post-author-format-type' ) !== false))
    	{
    		$blog_meta_output = '';
    	}
    	return $blog_meta_output;
    }
    

    Cheers!
    Günter

    in reply to: Blog Post Excerpt #389982

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Enable breadcrumb in my website #389514

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Enfold theme breaks when third-party plugin is DIS-abled #389510

    Hey foreigner!

    Thank you for using our theme.

    Did you already try to:

    – switch to a standard WP Theme
    – uninstall that plugin
    – reactivate Enfold

    If you do not mind loosing your settings you can also try to uninstall Enfold and reinstall it again after uninstalling the plugin (or export the settings and import them again).

    Regards,
    Günter

    in reply to: Main navigation menu little colored bar (hover) #389487

    Hi!

    Thank you for coming back.

    Can you send us a link to the page pls so we can see your setup of the page and check for correct CSS?

    Best regards,
    Günter

    in reply to: Change default font size #389468

    Hey TjaardHeikens!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following:

    
    #main {
        font-size: 16px !important;
    }
    

    If you need to enlarge the heading font size also:

    
    #main .post-title a {
        font-size: 25px !important;
    }
    

    Cheers!
    Günter

    in reply to: How to remove WPML language flags from mobile menu #389415

    Hi!

    I tried your link but i cannot find the language flag to test. Can you give us a link to the page with the problem and WPML activated?

    Alternativly can you give us a temporary admin access, so we can activate WPML for testing purpose?

    Best regards,
    Günter

    in reply to: Distance between Blogposts in Widgets #389402

    Hey!

    Glad we could help you,

    Enjoy the theme.

    Regards,
    Günter

    in reply to: Randomize Testimonials Slider #389398

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Top padding on other pages than homepage #389397

    Hi changegroup!

    Thank you for coming back.

    Try to remove the class

    
    .home
    

    from the code above – this will lead you to e.g.

    
    @media only screen and (min-width: 990px) {
    #main { padding-top: 250px !important; }
    }
    

    This should set the same padding for all pages.

    If you want to limit the settings to special pages only, you find classes in the <body> tag.

    Best regards,
    Günter

    in reply to: List of framework placements #389390

    Hi Mariusz!

    Thank you for coming back.

    There is no list of available hooks up to now.

    You must scan the source code of the files to find the actual hooks available.

    Regards,
    Günter

    in reply to: Image title not display [SOLVED] #389282

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Problem with padding between sections. #387896

    Hi!

    Thank you for coming back.

    In custom.css or enfold->styles->QuickCSS put the following and adjust the values:

    
    #after_section_5 .template-page {
        margin-top: -80px !important;
        padding-bottom: 5px !important;
        padding-top: 5px !important;
    }
    

    Regards,
    Günter

    in reply to: Custom Layout Builder Element / Shortcode from Child Theme #387819

    Hi HuxburyQuinn!

    Thank you for using our theme.

    Check this documentation. It should answer your question.

    http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Come back, if you need further assistance.

    Best regards,
    Günter

    in reply to: Color link footer #387806

    Hey Lisan87!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->QuickCSS put the following and adjust the value of the color:

    
    #footer a {
        color: blue !important;
    }
    
    #footer a:hover {
        color: red !important;
    }
    
    

    If you need it more specific we need a link to your page pls.

    Cheers!
    Günter

    in reply to: Possible to remove sidebar from attachment pages only? #387792

    Hey interage!

    Thank you for using our theme.

    Try the following – put in functions.php at the bottom:

    
    add_filter('avf_sidebar_position', 'my_avf_sidebar_position', 10, 1);
    
    function my_avf_sidebar_position($sidebar)
    {
    	if(  is_attachment() )
    	{
    		$sidebar = '';
    	}
    	
    	return $sidebar;
    }
    
    

    If it does not work, can you give us a link to your page and an admin access pls?

    Best regards,
    Günter

    in reply to: Position of language switcher in header #387780

    Hi darryllevine!

    Thank you for using our theme.

    Have a look into enfold\includes\helper-main-menu.php.

    This is th file, where the header is built. You find action hooks to add your switcher or you can modify the core file to add it, where you want to have it.

    Hope, this will help you.

    Come back, if you need further assistance.

    Cheers!
    Günter

    in reply to: Hide masonry element on mobile device #387762

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: SIngle item in top menu alternative colour #387753

    Hey!

    Thank you for coming back.

    Add the following and adjust the value for the color:

    
    #menu-item-433 span {
        background-color: green !important;
    }
    

    Best regards,
    Günter

    in reply to: Hide 'Add to Cart' in Product Slider? Please Help. #387737

    Hey mkamir!

    Thank you for using our theme.

    Can we have a link to that page pls to check for the correct CSS?

    Cheers!
    Günter

    in reply to: Translating 'Home" in breadcrumbs #387694

    Hi axelfx07!

    Thank you for coming back.

    You can use the following code to change the text.

    Put in in functions.php at the bottom and replace the text:

    
    add_filter( 'avia_breadcrumbs_args', 'my_avia_breadcrumbs_args', 10, 1 );
    
    function my_avia_breadcrumbs_args($args)
    {
    	$args['show_home'] = 'My Home text';
    	
    	return $args;
    }
    
    

    Cheers!
    Günter

    in reply to: Text in the Right of Header #387689

    Hey frankster1234!

    Thank you for using our theme.

    Can you send us a link to the page so we can check for the correct CSS?

    Best regards,
    Günter

    in reply to: White screen after first install of Enfold #387686

    Hey!

    Thank you for coming back.

    There may be 2 reasons:

    1) The php memory limit is to low – add the code above in wp-config and/or contact your hoster

    2) One of the plugins is causing the troubles. Try to reactivate one after the other and see, when the theme breaks. Try to activate all the rest of the plugins. If the theme does not break any longer, than that plugin might cause the error.

    Deactivate all plugins again and try to activate ONLY the plugin(s), that caused the problem. If it works, than it is a php memory problem (or a problem between the plugins).

    Cheers!
    Günter

    in reply to: Button doesn`t appear #387655

    Hey Hamdi!

    Thank you for using our theme.

    Can you give us a link to your site and explain more closely, what exactly you want to do and you have problems with?

    Cheers!
    Günter

    in reply to: Breadcrump issue, long titlenames #387651

    Hi!

    Thank you for coming back.

    Remove the following from custom.css:

    
    .title_container .breadcrumb {
        top: 20px !important;
    }
    

    Use the following CSS and adjust the values:

    
    .title_container .main-title {
        top: 15px !important;
    }
    
    .title_container .breadcrumb {
        top: 20px !important;
    }
    

    Cheers!
    Günter

    in reply to: White screen after first install of Enfold #387637

    Hi allinmom!

    Thank you for using our theme.

    Check you have latest WP version.

    First deactivate all plugins and try to activate the theme.

    There might be a php memory problem.

    In wp-config.php at the bottom before

    
    /* That's all, stop editing! Happy blogging. */
    
    /** Absolute path to the WordPress directory. */
    if ( !defined('ABSPATH') )
    	define('ABSPATH', dirname(__FILE__) . '/');
    

    insert the following.

    
    define( 'WP_MAX_MEMORY_LIMIT', '128M' );
    
    

    If this does not help you might have to contact your hoster to increase memory in php.ini.

    Best regards,
    Günter

    in reply to: Breadcrump issue, long titlenames #387631

    Hi volmering!

    Thank you for using the forum.

    Not out of the box. The only thing you might do is to manipulate the length of the string by eliminating parts of the path.

    You find the code in enfold\framework\php\class-breadcrumb.php.

    Look for apply_filters to find filter hooks or modify the core file.

    Cheers!
    Günter

Viewing 30 posts - 3,091 through 3,120 (of 3,715 total)