Forum Replies Created

Viewing 30 posts - 3,421 through 3,450 (of 3,713 total)
  • Author
    Posts
  • in reply to: Strange #305275

    Hi!

    No. The following is breaking the design:

    
    .woocommerce-page .button{
    .....
    }
    

    Use the following and adjust the values:

    
    .woocommerce-page .button{
    padding: 10px !important;
    }
    

    Best regards,
    Günter

    in reply to: Fine line between Color Section #305273

    Hey Herbert!

    Thank you for using our theme.

    To remove the line on the given link use:

    
    #after_section_1 {
        border-top-style: none !important;
    }
    

    Cheers!
    Günter

    in reply to: How to locate #304904

    Hey wholereneducation!

    Than k you for using our theme.

    The index of the nth-child start with 1, so the first icon is 1, the second 2, and so on.

    If the icons are aligned with float: left (whats the default), then the icons are from left to right, otherwise from right to left.

    I hope, I understood your question correctly.

    Best regards,
    Günter

    Hey bemofunny!

    Thank you for using our theme.

    Have a look at the following post:

    https://kriesi.at/support/topic/different-color-for-top-bar-menu-and-menu-hover/

    I think, this will help you.

    If you have still problems, please ome back.

    Cheers!
    Günter

    in reply to: How to remove Title of the post in the Breadcrumbs #304759

    Hey bemofunny!

    Thank you for using our theme.

    In custom.css or Enfold-Styling-Quick CSS field put the following:

    
    .title_container .main-title{
    display: none !important;
    }
    

    Best regards,
    Günter

    in reply to: Change default Category on blog post #304316

    Hey Jamie A!

    Thank you for using our theme.

    In functions.php put the following:

    
    function my_portrait_click()
    {
    ?>
    <script>
    jQuery(function(){
    	jQuery('.portrait_sort_button').trigger('click');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'my_portrait_click', 900);
    

    Cheers!
    Günter

    Hey!

    Try the following:

    
    add_filter('avf_ajax_search_label_names','avf_ajax_search_assign_label_names', 10, 1);
    function avf_ajax_search_assign_label_names($label) {
            $label = trim($label);
    	if(strcasecmp($label, 'Portfolio Einträge') == 0) {
    	$label = 'Mitarbeiter';
    	} 
    	else if(strcasecmp($label,'Produkte') == 0) {
    	$label = 'Downloads';
    	} else {
        $label = $label;
    	}
    	
    	return $label;
    }
    

    Best regards,
    Günter

    in reply to: Team Member Icons #303889

    Hi!

    Enjoy the theme.

    Best regards,
    Günter

    in reply to: Nach WP-Update "Shop" nicht mehr sichtbar #303888

    Hey Francesco!

    Thank you for using our theme.

    It seems like the server can’t start a session. Please contact your hoster and ask them to check the server configuration (session data folder is writable & exists, etc.).

    Enfold uses sessions to build the breadcrumb.

    Regards,
    Günter

    in reply to: editor missing from Appearance menu #303879

    Hey Munford!

    Sounds like a problem with a plugin or a php memory problem.

    Try to increase php memory: In wp-config add the following at the bottom:

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

    Try to deactivate all plugins and reactivate one by one.

    Cheers!
    Günter

    Hi PaintedMidget!

    You can define your own CSS class and put the code in custom.css or enfold->styles->Quick-CSS field, eg:

    
    .customer_red{
    color: #c30a20 !important;
    }
    

    and assign this class to the tags like <p>, <span>, …. that need this color, e.g.:

    
    <p class="customer_red">........</p>
    <span class="customer_red">........</span>
    

    Regards,
    Günter

    Hi StuWeTueHo!

    Thank you for using our theme.

    The only reason why the code above does not work, can be one or more spaces in the translation text at beginning or end.

    Try to replace the rext with the following:

    
    add_filter('avf_ajax_search_label_names','avf_ajax_search_assign_label_names', 10, 1);
    function avf_ajax_search_assign_label_names($label) {
            $label = trim($label);
    	if($label == 'Portfolio Einträge') {
    	$label = 'Mitarbeiter';
    	} 
    	else if($label == 'Produkte') {
    	$label = 'Downloads';
    	} else {
        $label = $label;
    	}
    	
    	return $label;
    }
    

    Cheers!
    Günter

    in reply to: Team Member Icons #303839

    Hey blankonblank!

    Thank you for using our theme.

    There is no way to do this by CSS.

    You will have to change the php code. You find it in:

    enfold\config-templatebuilder\avia-shortcodes\team.php
    line 227ff.

    You also will have to do CSS styling.

    But this customization and is beyond the scope of support.

    Regards,
    Günter

    in reply to: Scrolling Menu Bar #303831

    Hi!

    Try the following:

    
    .header-scrolled{
    background-color: #fff;
    }
    
    .header-scrolled .avia-menu-text,
    .header-scrolled #menu-item-search > a
     {
        color:  #ce3f23;
    }
    
    

    Best regards,
    Günter

    in reply to: Changing size of search icon in main nav bar #303817

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: breadcrumb under title #303814

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Image size in portfolio item thumbnail #303808

    Hey JulieDesigns2!

    Thank you for using our theme.

    It seems, that the image had not been uploaded correctly. Normally WP creates different sizes of an uploaded image.

    Either try to upload the image again or use a plugin like https://wordpress.org/plugins/regenerate-thumbnails/ to rebuild all the sizes (make sure, that enfold is the activated theme).

    Cheers!
    Günter

    in reply to: Customize Column Border, Background Color #303321

    Hey!

    Glad I could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Customize Column Border, Background Color #303306

    Hi!

    If you use the first version, I would say yes.

    If not, come back with a link to the page please.

    Regards,
    Günter

    in reply to: Color Section #303256

    Hi!

    Glad you could solve the problem.

    Come back, if more questions arise.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Removing image thumbnails from blog previews #303250

    Hey Gretaz!

    Thank you for using our theme.

    You can remove all preview images from the blog.

    Put the following in custom.css or Enfold->Styles->Quick CSS field:

    
    .blog article .small-preview{
    display: none !important;
    }
    

    Maybe it is necessary to specify the page, but in this case we would need a link to the page please.

    Best regards,
    Günter

    in reply to: Theme Options not working #303240

    Hi!

    Thank you for using our theme.

    You are using the latest version of enfold and of WP?

    Try to deactivate all plugins and check, if the problem still occurs.

    Maybe you run into a php memory problem. Try to open wp-config.php and add at the bottom:

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

    If this does not help check the possible memory limits with your hoster.

    Cheers!
    Günter

    in reply to: Sticky Posts #303235

    Hi!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Standardtemplate ohne Header #303150

    Hi Daniel!

    Thank you for using our theme.

    In the main enfold folder you find the file page.php. Copy this file to template-page.php.

    Open it and in line 2 insert:

    
    	/*
    	Template Name: Page no header with footer
    	*/
    

    Now you find ‘Page no header with footer’ in the drop down list of templates.

    Replace in line 14:

    
    if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    

    with

    
    //   if( get_post_meta(get_the_ID(), 'header', true) != 'no') echo avia_title();
    

    You can also delete this line completly.

    Cheers!
    Günter

    in reply to: Editing the main navigation #303126

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Changing text color to blog post titles and links #303124

    Hey!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Sticky Posts #303122

    Hi Jamie A!

    Thank you for using our theme.

    Unfortunately sticky posts are a bit weird and won’t work properly every time – e.g. see: http://core.trac.wordpress.org/ticket/25815

    I suggest to try a plugin like: http://wordpress.org/plugins/post-types-order/ – it enables you to change the sort order of the posts easily and you can use it to add your “sticky posts” to the very top.

    Cheers!
    Günter

    in reply to: Customize Column Border, Background Color #303098

    Hey blankonblank!

    Thank you for using our theme.

    In custom.css or Enfold->Styles->Quick-CSS field put the following and adjust the values:

    
    .av_textblock_section{
    border: 2px solid #000 !important;
    background-color: #000 !important;
    }
    

    You probably need to specify the textbox you like, e.g.

    
    .avia-builder-el-16 .av_textblock_section{
    ........   put your settings here 
    }
    
    

    Cheers!
    Günter

    in reply to: replace date with price #303078

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Blog Posts – Remove Meta #303076

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

Viewing 30 posts - 3,421 through 3,450 (of 3,713 total)