Forum Replies Created

Viewing 30 posts - 2,731 through 2,760 (of 3,695 total)
  • Author
    Posts
  • in reply to: MENU LINE BELLOW ERROR #422022

    Hey!

    Glad I could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Cheers!
    Günter

    in reply to: Blog grid not showing meta unless there's also content #422019

    Hi!

    Thank you for coming back.

    There is no easy way to achieve this right now. You have to modify:

    enfold\config-templatebuilder\avia-shortcodes\postslider.php line 375:

    
                        if($show_meta && !empty($excerpt))
    

    to hardcode and/or you also have to extend the options for:

    enfold\config-templatebuilder\avia-shortcodes\postslider.php
    \enfold\config-templatebuilder\avia-shortcodes\blog.php

    Additionaly you can post a request on github for this option – maybe it will be implemented in a future release.

    Regards,
    Günter

    in reply to: MENU LINE BELLOW ERROR #421991

    Hi mleite1!

    Thank you for coming back.

    The anchor defined for the menu “BIO” is “about me” – so this menu brings you exactly to the point you defined.

    You have to define the id “bio” for the section you want and change the anchor for the menu “BIO” like you did for the other 2 menus.

    Hope, this helps you.

    Best regards,
    Günter

    in reply to: how to modify woocommerce tag page #421988

    Hey!

    Thank you for coming back.

    You have to modify enfold\config-woocommerce\config.php line 731ff.

    Look for

    
    function avia_woocommerce_overview_banner_image()
    {
    
    }
    

    and modify as needed.

    If you want you also can unhook the default enfold function and put your modifications in functions.php of the child theme to be independent from next updates.

    Regards,
    Günter

    in reply to: custom function so I dont need to edit core #421954

    Hi borkent!

    Thank you for using our theme.

    The best way to do is using a child theme.

    In function.php of the child theme put:

    
    if(!function_exists('avia_pagination'))
    {
    	/**
    	* Displays a page pagination if more posts are available than can be displayed on one page
    	* @param string $pages pass the number of pages instead of letting the script check the gobal paged var
    	* @return string $output returns the pagination html code
    	*/
    	function avia_pagination($pages = '', $wrapper = 'div')
    	{
                       // copy the original code inside and make your modifications here
            }
    
    	function avia_post_pagination_link($link)
    	{
    		$url =  preg_replace('!">$!','',_wp_link_page($link));
    		$url =  preg_replace('!^<a href="!','',$url);
    		return $url;
    	}
    }
    
    

    As functions.php of the child theme is loaded first the original functions will not be loaded and yours is used.

    Cheers!
    Günter

    Hi tjpicasso!

    Thank you for coming back.

    As you mentioned already, copy the stuff to custom.css and make your modifications there.

    Do not forget to add !important to the changes you make to ensure, that they overwrite other settings.

    Best regards,
    Günter

    in reply to: How to suppress featured image on a page #421848

    Hi deepbluec!

    Thank you for using our theme.

    Can you give us a link to this page please? Then we can give you the correct CSS. You can post it here as a private reply.

    Cheers!
    Günter

    in reply to: Mega menu – Unable to hide column title using "-" #421839

    Hey (Email address hidden if logged out) !

    Thank you for using our theme.

    Try to enter a title and in custom.css or Enfold -> General Styling -> Quick CSS field put the following:

    
    #header #menu-item-336 .mega_menu_title {
        display: none !important;
    }
    
    

    Regards,
    Günter

    in reply to: Kategoriebild in Produktansicht #421834

    Hey Mac_ma!

    Danke dass Du unser Theme verwendest.

    In custom.css or Enfold -> General Styling -> Quick CSS (resp. Enfold-Child -> General Styling -> Quick CSS) füge den folgenden Code ein:

    
    .tax-product_cat .page-thumb {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: BreadCrumb Question #421821

    Hey!

    Thank’s for coming back.

    I think I figured out the problem:

    You have a category “blog” and a page “Binary Options Blog” with the permalink “blog”.

    The breadcrumb routine first checks for the category => “Blog” and then for the page => “Binary Options Blog”.

    Both have the same permalink “Blog”, so WP has no chance to distinguish between “Page” or “Category” and opens (as a default behaviour) the category.

    So try to modify the permalink for the page “Binary Options Blog”.

    Give us feedback, if it worked please.

    Best regards,
    Günter

    in reply to: BreadCrumb Question #421340

    Hey!

    Thank you for the feedback.

    The breadcrumb trail reflects the hierarchical structure of categories, posttypes, pages.

    To me it seems as if you have declared a hierarchie between Binary Options Blog and Blog resulting in the current output.

    Maybe you can create us a WP admin account so we can have a closer look into your setup to locate the problem.

    You can post it here as a private reply.

    Best regards,
    Günter

    in reply to: Change read more link to button #421101

    Hi!

    This setting changes all read more links.

    To limit it to the blog page use:

    
    .blog a.more-link {
        background-color: #f05a1a !important;
        border-radius: 3px !important;
        color: white !important;
        padding: 10px !important;
    }
    
    

    Regards,
    Günter

    in reply to: Remove META links on blog pages #421077

    Hi!

    Glad you found a solution.

    Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Regards,
    Günter

    in reply to: Change read more link to button #421075

    Hey!

    Thank you for your feedback.

    I tried the code in FF – it should work.

    Just to make sure, there is no syntax error: try to use the code below – I pasted it out from firebug.

    
    
    a.more-link {
        background-color: #f05a1a !important;
        border-radius: 3px !important;
        color: white !important;
        padding: 10px !important;
    }
    

    Best regards,
    Günter

    in reply to: Is it possible to have the Animated Numbers count up? #420599

    Hi!

    Glad you found a solution and thank you for posting it in the forum.

    Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Best regards,
    Günter

    in reply to: Child Theme Not Working #420593

    Hi FoundationsFour!

    Thank you for using our theme.

    Try to remove

    
    @import url(“../enfold/style.css”);
    

    from the child theme style.css. This is not necessary, as all styles from the parent are loaded by default – this is the standard WP behaviour.
    Only put the changes you want to make in the child theme style.css.

    Easiest is to use the empty child theme which is included in the download from themeforest.

    Best regards,
    Günter

    in reply to: Seiten- und Beitragstitel und Breadcrumbs #420537

    Hey!

    Gerne.

    Viel Freude noch mit dem Theme und Du kannst jederzeit mit Fragen und Problemen zu uns kommen.

    Regards,
    Günter

    Hey!

    Thank’s a lot for this. I forward it to Kriesi for the next update.

    Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Cheers!
    Günter

    Hi!

    Thank you for coming back.

    You have to edit enfold\config-woocommerce\config.php line 223:

    Look for:

    
    	if(in_array($product->product_type, array('subscription', 'simple', 'bundle')))
    	{
    		$output .= '<a class="button show_details_button" href="'.get_permalink($product->id).'"><span '.av_icon_string("details").'></span>  '.__("Show Details","avia_framework").'</a>';
    	}
    

    and replace “Show Details” with the text you like.

    Could you tell us the correct translation so we can update the translation file for the future releases please?

    Best regards,
    Günter

    in reply to: Seiten- und Beitragstitel und Breadcrumbs #420378

    Hi!

    Danke.

    Ich würde einmal folgende Lösung vorschlagen – die breadcrumb nach unten verschieben – das schaut bei langem Titel und breadcrumb ab Besten aus.

    In custom.css or Enfold -> General Styling -> Quick CSS füge den folgenden Code ein:

    
    .title_container .breadcrumb {
        float: right !important;
        margin-top: 5px !important;
        position: relative !important;
        width: 85% !important;
    }
    

    Cheers!
    Günter

    in reply to: Kommentarfunktion #420370

    Hey!

    Danke für die Rückmeldung.

    Habe mich vielleicht schlecht ausgedrückt:

    Auf der Adminseite von WP gibt es rechts oben das Feld ScreenOptions. Wenn man dieses beim Bearbeiten von Post aufklappt, gibt es eine Menge von´Checkboxen, darunter eine mit “Discussion”. Wenn man diese markiert, erscheint unten ein´Metabox Feld “Discussion” mit 2 Checkboxen, die defaultmäßig gesetzt sind – diese Markierung entfernen.

    Allgemein ausschalten:

    Adminbereich, den Reiter Settings -> Discussions anklicken und die Checkbox “Allow people to post comments on new articles“ deaktivieren.

    Regards,
    Günter

    in reply to: Woocommerce Produktbeschreibung #420360

    Hi!

    Danke für die Rückmeldung.

    In functions.php des Child Themes (oder des Hauptthemes, wenn Du kein Child Theme verwendest) am Ende füge das folgende ein (z.B. Appearance > Editor):

    
    function my_woocommerce_product_description_heading( $heading )
     {
    	      //   enter your custom text here like 'my text' 
    	 $heading = '';
    	 return $heading;
     }
     
     add_filter( 'woocommerce_product_description_heading', 'my_woocommerce_product_description_heading', 10, 1);
    

    Cheers!
    Günter

    in reply to: How to Remove Theme Name from Source Code? #420354

    Hi!

    Glad we could help you. Enjoy the theme and feel free to come back with further questions and/or problems you have.

    Best regards,
    Günter

    in reply to: Seiten- und Beitragstitel und Breadcrumbs #420352

    Hi thomasqueck!

    Danke dass Du unser Theme verwendest.

    Könntest Du uns bitte einen Link zu dieser Seite geben, damit wir uns das anschauen können. Du kannst den Link hier als Private Reply posten.

    Best regards,
    Günter

    in reply to: no space between images inside a color section #420347

    Hi ppi37!

    Thank you for using our theme.

    Can you give us a link to this page please? Then we can give you the correct CSS. You can post it here as a private reply.

    Regards,
    Günter

    in reply to: Kommentarfunktion #420345

    Hi oeconomedicus!

    Danke, dass Du unser Theme verwendest.

    Es gibt in WP Dashboard -> Settings -> Discussion gleich oben bei “Default article settings” die Checkbox “Allow people to post comments on new articles “.

    Bei jedem Artikel kannst Du dann in der Metabox “Discussion” die Checkbox “Allow Comments” entsprechend aktivieren / deaktivieren.

    Solltest Du diese Checkbox nicht sehen, dann oben bei ScreenOptions die entsprechende Checkbox markieren.

    Cheers!
    Günter

    in reply to: Function to remove sidebar on search results #418444

    Hi itchybrain!

    Thank you for coming back.

    You have to open enfold\search.php (parent theme).

    Look for (line 8):

    
    get_header();
    

    and replace with:

    
    get_header();
    do_action( 'ava_search_after_get_header' );
    

    This will be implemented in the next update.

    In functions.php of the child theme add:

    
    add_action( 'ava_search_after_get_header', 'my_ava_search_after_get_header', 10 );
     
     function my_ava_search_after_get_header()
     {
    	global $avia_config;
    	 
    	$avia_config['layout']['current'] = $avia_config['layout']['fullsize'];
    	$avia_config['layout']['current']['main'] = 'fullsize';
    	
     }
    

    Cheers!
    Günter

    in reply to: Move Elements from single Product (woocommerce) #418437

    Hey Julian Andres!

    Thank you for coming back.

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

    
    .summary .cart {
        clear: none !important;
    }
    

    Regards,
    Günter

    in reply to: How to change the Read More link to a button? #418431

    Hi!

    Thank you for coming back.

    You can use a code like below and adjust the values as needed.

    If you want to limit it to this page:

    
    .page-id-15 .read-more-link a {
        background: none repeat scroll 0 0 red !important;
        border-radius: 3px !important;
        padding: 5px 10px !important;
    }
    

    Or for all pages:

    
    .page .read-more-link a {
        background: none repeat scroll 0 0 red !important;
        border-radius: 3px !important;
        padding: 5px 10px !important;
    }
    

    Come back if you need more assistance in styling.

    Best regards,
    Günter

    in reply to: Where can I change the default sidebar? #417870

    Hi!

    Danke für das feedback.

    Bei mir in der Testumgebung funktioniert der Code. Zur Sicherheit nochmals:

    
    add_filter( 'avf_show_default_sidebars', 'remove_default_sidebars', 10, 1);
    
    function remove_default_sidebars( $show ) 
    {
    	return false;
    }
    

    Achte darauf, dass dieser Code nur einmal in der Datei functions,php vorkommt (und entferne auch den Code vom Beginn dieses Posts aus QuickCSS, falls er dort noch drinnen sein sollte)

    Welche Fehlermeldung bekommst Du?

    Best regards,
    Günter

Viewing 30 posts - 2,731 through 2,760 (of 3,695 total)