Forum Replies Created

Viewing 30 posts - 2,851 through 2,880 (of 3,695 total)
  • Author
    Posts
  • in reply to: Form / Fields in a single line #408734

    Hi!

    Thank you for coming back.

    There is a problem with the label. If you remove it, you can try the following and adjust the values of width:

    
    .page-id-25 input[type="text"] {
        float: left !important;
        width: 73% !important;
    }
    
    .page-id-25 select {
        float: left !important;
        width: 10% !important;
    }
    
    .page-id-25 select {
        margin-left: 5px !important;
        margin-right: 5px !important;
    }
    

    The label has no tag, so there is no chance to adjust its position with CSS and it breaks everything.

    Best regards,
    Günter

    in reply to: Change Kriesi.at back link to my own #408724

    Hey!

    You better use a filter hook to change the output string.

    In functions.php of the parent theme or the child theme put the following:

    
    add_filter( 'kriesi_backlink', 'my_own_backlink', 10, 1);
    
    function my_own_backlink($link)
    {
    	//	original on line 1310  of enfold\framework\php\function-set-avia-frontend.php
    	//	$link = " - <a {$no} href='http://kriesi.at'>{$theme_string}</a>";
    	
    	//	change the output string with e.g.
    	
    	$no = "rel='nofollow'";
    	$theme_string = 'Your text to display';
    	
    	$link = " - <a {$no} href='http://www.your_domiain.xx'>{$theme_string}</a>";
    	
    	return $link;
    }
    

    Best regards,
    Günter

    in reply to: Portfolio grid without link #408237

    Hey!

    If it works, it’s fine. If not, my solution should do.

    Cheers!
    Günter

    in reply to: Portfolio grid without link #408213

    Hi!

    Thank you for coming back.

    This is a bit difficult, as the filter hook does not have an information about the grid.

    If you know the ID’s of the posts that are involved in the grid you can remove the link from that posts.

    E.g. the posts have the ID’s 234, 250, 280:

    
    
    function my_portfolio_title_link ( $title_link, $entry )
    {
    	$no_link_posts = array (234, 250, 280); 
    	
    	if( in_array( $entry->ID, $no_link_posts ))
    	{	
    		return '';
    	}
    	
    	return $title_link;
    }
    
    

    Or you can limit it to all grids on the current page (you need to know the ID of the page):

    
    function my_portfolio_title_link ( $title_link, $entry )
    {
    	$no_link_pages = array (234, 250, 280); 
    	
    	$page_id = 	get_queried_object_id();
    
    	if( in_array( $page_id, $no_link_pages ))
    	{	
    		return '';
    	}
    	
    	return $title_link;
    }
    

    Best regards,
    Günter

    in reply to: Layout changes when activating "empty" child theme. #408207

    Hi!

    Thank you for using our theme.

    Although Enfold – Child is a child theme, it uses its own theme settings.

    You can export your settings of the Enfold parent theme with Enfold->Import/Export->Export theme settings and import these settings in the child theme Enfold-Child->Import/Export->Import theme settings.

    This should fix your problem.

    Best regards,
    Günter

    in reply to: Remove Month from Archives #408157

    Hi!

    Glad I could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Portfolio grid without link #408155

    Hey!

    Thank you for coming back.

    The code should apply to all portfolio grids.

    If you are using a child theme, put the code in fuctions.php of the child theme.

    Regards,
    Günter

    in reply to: Kontaktformular Antwort-Mail ändern? #408140

    Hey!

    Gerne.

    Du kannst jederzeit gerne weitere Fragen stellen.

    Viel Freude mit dem Theme.

    Cheers!
    Günter

    in reply to: Portfolio grid without link #408097

    Hey Gian Maria!

    Thank you for coming back.

    In functions.php try to put the following:

    
    function my_portfolio_title_link ( $title_link, $entry )
    {
    	return '';
    }
    
    add_filter('avf_portfolio_title_link', 'my_portfolio_title_link', 10, 2);
    

    Cheers!
    Günter

    in reply to: Remove date and comment count from blogposts #408083

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    Hey emilcobussen!

    Thank you for coming back.

    Yes, it is possible to implement this, but not out of the box. This is a huge customisation and far beyond the scope of the support forum.

    Cheers!
    Günter

    in reply to: Sort posts / portfolio items alphabetically #408078

    Hi!

    Glad you found the solution. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Customize Language Selecter of WPML a bit #408075

    Hi KVSchneppenheim!

    Thank you for coming back.

    The best place to add your custom CSS is in the file custom.css or Enfold->Styles->QuickCSS field.

    Do not forget to add !important to your changings.

    If you have still troubles to access the element you like, give us a link to your page and we will help you, You can post it here as a private reply.

    Cheers!
    Günter

    Hi decode!

    Thank you for coming back.

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

    
    .inner_product .inner_product_header del {
        float: left !important;
        width: 100% !important;
    }
    
    .inner_product .inner_product_header ins {
        float: left !important;
    }
    
    

    Regards,
    Günter

    in reply to: Remove Month from Archives #408047

    Hi sjidesign!

    Thank you for coming back.

    In functions.php try to put the following:

    
    function my_limit_archives( $args ) {
        $args['type'] = 'yearly';
        return $args;
    }
    
    add_filter( 'widget_archives_args', 'my_limit_archives' );
    add_filter( 'widget_archives_dropdown_args', 'my_limit_archives' );
    

    Best regards,
    Günter

    in reply to: Probleme nach Kern Update #408034

    Hey!

    Versuche das folgende:

    
    .woocommerce-product-search .search-field {
        float: left !important;
        width: 60% !important;
    }
    

    Der Text ‘Search Products” wird eigentlich in der Übersetzung von WC übersetzt – oder verwendet Ihr da ein plugin?

    Best regards,
    Günter

    in reply to: Probleme nach Kern Update #407986

    Hi!

    Das dürfte ein Problem von German Market sein – wenn man es deaktiviert, passt es.

    Man bekommt bei Euch auch dir Fehlermeldung (Dashboard oben), dass Templates nicht korrekt überschrieben werden – genau dass macht German Market aber.

    Habt Ihr die aktuelle Version von diesem Plugin?

    Best regards,
    Günter

    in reply to: Probleme nach Kern Update #407975

    Hi!

    Derf Fehler liegt daran, dass Ihr die Funktion wc_add_notice mit $woocommerce->wc_add_notice aufruft, diese ist aber keine Methode des Objektes woocommerce sondern NUR eine normale funktion.

    Habe das richtiggestellt, funktoniert jetzt – Fehlermeldung ist weg,

    Cheers!
    Günter

    in reply to: Form / Fields in a single line #406551

    Hi sitesme!

    Thank you for using our theme.

    You can use the standard contact form (ALB or shortcode) and adjust the column width for each element.

    Did you try that?

    Cheers!
    Günter

    in reply to: Enfold Standard Sidebar Widget #406546

    Hey internett!

    Danke dass Du unser Theme verwendest.

    Ixh nehme an, Du meinst Pages, Categories, Archives.

    Das sind die Standard WP Widgets, die von Enfold nur als Default angezeigt werden, wenn keine anderen Widgets definieert sind. Ziehe einfach die 3 Widgets in der Reihnfolge in die Widget Area, die Du möchtest.

    LG,
    Günter

    in reply to: Seiten von der Suche aussparen #406539

    Hey bur2000!

    Danke dass Du unser Theme verwendest.

    Es gibt da ein plugin: https://wordpress.org/plugins/search-exclude/

    Versuche es einmal.

    Ich selber kenne es nicht und habe es auch nicht getestet.

    Best regards,
    Günter

    in reply to: More margin bullets to text in lists #406534

    Hi!

    Try the following:

    
    .home .post-entry p .thumbnails {
        margin-right: 25px !important;
    }
    

    Best regards,
    Günter

    in reply to: How can outline the text of the titles? #406469

    Hi!

    To target the page titles use the following and add your settings:

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

    Regards,
    Günter

    in reply to: More margin bullets to text in lists #406455

    Hey!

    Try to replace the code from Rikard with:

    
    .home  .entry-content-wrapper div li {
        list-style-position: outside !important;
        padding-left: 10px !important;
    }
    

    Cheers!
    Günter

    in reply to: how to move portfolio grid filter to another place #406452

    Hey!

    I leave this post open, in case you have more questions to that topic.

    Enjoy the theme.

    Best regards,
    Günter

    Hi Geoff!

    Thank you for coming back.

    Not really. You have to inspect the hierarchie of classes to the element you need (e.g. using FireBug).

    This differs from element to element.

    This will work:

    
    .avia-promocontent p {
        font-size: 25px !important;
    }
    

    You should add !important to all changes you make in custom.css or QuickCSS to ensure, that it overwrites other settings.

    Regards,
    Günter

    in reply to: More margin bullets to text in lists #406433

    Hey!

    Thank you for coming back.

    Try the following and adjust the value:

    
    .home .av_textblock_section .list2 li {
        padding-bottom: 15px !important;
    }
    

    Cheers!
    Günter

    • This reply was modified 9 years, 9 months ago by Günter.
    in reply to: how to move portfolio grid filter to another place #406429

    Hey biggrouppl!

    Thank you for using our theme.

    You find the code in enfold\config-templatebuilder\avia-shortcodes\portfolio.php line 590.

    Regards,
    Günter

    in reply to: Format testimonial element #406426

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: Icon – text alignment #406419

    Hey!

    Freut mich. Ich habe bei Kriesi die Korrektur deponiert – Möglch, dass es im nächsten Update gefixed wird.

    Viel Freude mit dem Theme.

    Cheers!
    Günter

Viewing 30 posts - 2,851 through 2,880 (of 3,695 total)