Forum Replies Created

Viewing 30 posts - 2,851 through 2,880 (of 3,706 total)
  • Author
    Posts
  • in reply to: Keine Homepage mehr – nur mehr eine leere Seite #409932

    Hey JohannesJunker!

    Danke dass Du unser Theme verwendest.

    Beim Öffnen bekomme ich einen 500 internal Server Error.

    Dazu: http://www.giga.de/webapps/google-suche/tipps/was-kann-ich-bei-einem-500-internal-server-error-machen/

    Was hast Du verändert, bevor dieser Fehler auftrat?
    WP update, plugin updates, ????

    Was Du zuerst einmal versuchen kanst.

    Mit FTP den Ordner Enfold resp. Enfold-child umbenennen und auch den Ordner wp-content/plugins.

    Dann sollte zumindest WP mit dem Standardtheme kommen.

    Falls nicht, dürfte WP etwas abbekommen haben. In diesem Fall kannst Du nur WP mit FTP hochladen und schaun, ob es dann geht.

    Dann Enfold resp. Enfold-child wieder zurück umbenennen und versuchen das theme/childtheme zu aktivieren.

    Wenn das nicht geht, enfold mit FTP updaten auf letzte Version.

    Dann ein plugin nach dem anderen dazunehmen.

    Ich hoffe, das hilft einmal.

    LG,
    Günter

    in reply to: remove Demo Import button from Enfold Theme Options #409882

    Hi!

    Thank you for coming back.

    Open file enfold\includes\admin\register-admin-options.php

    and look for (line 29):

    
    	$avia_pages[] = array( 'slug' => 'demo', 		'parent'=>'avia', 'icon'=>"doc_text_image.png", 'title' => __('Demo Import', 'avia_framework'));
    
    

    Remove this line (or comment it with //).

    You can also delete lines 2004ff.

    Best regards,
    Günter

    in reply to: template not calling footer #409874

    Hi!

    Glad we could help you and thank’s for posting your solution.

    Enjoy the theme.

    Cheers!
    Günter

    in reply to: Homepage ändern und farben individualiseren? #409766

    Hey!

    Wenn Du das Child theme schon ausgewählt hattest: Lösche den gesamten Ordner mit FTP (oder benenne Ihn um). Wenn WP den Theme Ornder nicht findet, müsste es ein WP Standard theme aktivieren.

    Zumindest einen Versuch wert, bevor man alles neu aufsetzen muss.

    Best regards,
    Günter

    in reply to: Homepage ändern und farben individualiseren? #408964

    Hi!

    Danke, dass Du unser Theme verwendest.

    ad 2) Das geht eigentlich nur mit CSS. Jede Seite hat eine eindeutige ID und die wird in WP im body tag mitgeschickt,

    z.B. home, page-id-2

    Die muss man dann im CSS zu den stylings dazunehmen, die speziell für diese Seite sind,

    z.B.`

    aus

    
    .page-id-2 .responsive .container {
        width: 1030px;
    }
    

    wird dann

    
    .responsive .container {
        width: 1030px;
    }
    

    Ich hoffe, das hilft Dir weiter.

    Best regards,
    Günter

    in reply to: Apply Enfold CSS to specific element only #408894

    Hi!

    I hope you will enjoy the theme. Feel free to come back with further questions you have.

    Best regards,
    Günter

    in reply to: Princing Table Currancy #408878

    Hey Bruno!

    Thank you for using our theme.

    You have to modify the core file enfold\config-templatebuilder\avia-shortcodes\table.php line 231:

    Look for:

    
    $content = preg_replace('!(\$|€|¥|£|¢|¤|%|‰|&cent;|&curren;|&pound;|&yen;|&euro;)!','<span class="currency-symbol">$1</span>', $content);
    						
    

    and add the currencies/text you like:

    
    
    $content = preg_replace('!(\$|€|¥|£|¢|¤|%|‰|&cent;|&curren;|&pound;|&yen;|&euro;|R\$)!','<span class="currency-symbol">$1</span>', $content);
    							
    

    Best regards,
    Günter

    in reply to: Apply Enfold CSS to specific element only #408844

    Hi frankdaamen!

    Thank you for using our theme.

    As Enfold relys on a CSS structure changing this will cause many problems and break the display..

    Depending on the changes you make with the mangento HTML it’s probably easier to make it the other way round – encapsule the mangento HTML in divs or rewrite the CSS.

    Cheers!
    Günter

    in reply to: Colour Changes: Meta Colour and H1, H2, H3 colours #408835

    Hi!

    Info by Kriesi:

    Not yet possible, those are generated by the theme based on the other selected colors. However I have added the color fields for meta and headings in the 3.1 release. The user will be able to do it once the update is released (either today or tomorrow)

    Hope, this will help you.

    Best regards,
    Günter

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

    Hey!

    Not really. The form container is 100% width, and the elements are not placed in a container, that can be centered.

    Youi can try the following to have a look that is closely centered (adjust the value):

    
    .page-id-25 input[type="text"] {
        margin-left: 15% !important;
    }
    

    Cheers!
    Günter

    in reply to: Colour Changes: Meta Colour and H1, H2, H3 colours #408741

    Hi sitesme!

    Thank you for coming back.

    To change the colours of h1, ….:

    Goto Dashboard -> Enfold -> Advanced Styling

    Choose the requested elements from the select box -> Edit -> Make your changes

    Can you explain more clearly what you mean with meta colors – I do not catch, what you mean with that.

    Best regards,
    Günter

    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

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