Forum Replies Created

Viewing 30 posts - 3,271 through 3,300 (of 3,695 total)
  • Author
    Posts
  • in reply to: Disable Add to Cart button in a product category? #347132

    Hey ciptanegara!

    Thank you for using our theme.

    Probably the init hook is to early for the has_term function.

    Try the following:

    
    add_action('init','remove_add_to_cart_button', 1000);
    
    function remove_add_to_cart_button() {
                    remove_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button', 16);
    		remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    }
    
    add_action( 'woocommerce_after_shop_loop_item', 'my_add_to_cart_button', 16 );
    add_action( 'woocommerce_single_product_summary', 'my_add_to_cart_button_single', 30 );
    
    function my_add_to_cart_button() {
         if ( ! has_term( 'free-gift', 'product_cat' ) ) {
                      avia_add_cart_button();
           }
    }
    
    function my_add_to_cart_button_single() {
         if ( ! has_term( 'free-gift', 'product_cat' ) ) {
                      woocommerce_template_single_add_to_cart();
           }
    }
    

    Best regards,
    Günter

    Hi mhiller!

    Thank you for using our theme.

    On the given page i found:

    
    .page-id-3518 h1 {
        font-weight: 900;
        line-height: 1.5;
    }
    

    This limits your changes to this page ID. If you want to change h1 for all pages:

    
    h1 {
        font-weight: 900 !important;
        line-height: 1.5 !important;
    }
    

    Best regards,
    Günter

    in reply to: Home disordered #347106

    Hey SLHetcie!

    Thank you for using our theme.

    When I open your link, the page seems to be OK. There is no sidebar defined. Check your settings for this page – maybe there is something wrong.

    If you still have problems pls give us an admin account to check.

    Cheers!
    Günter

    in reply to: How to remove Footer #347099

    Hey kristinmatysik!

    Thank you for using our theme.

    Have a look at this post:

    https://kriesi.at/support/topic/copyright-enfold-removal/

    This might help you.

    Come back with any further inquiries.

    Best regards,
    Günter

    in reply to: Various headings/sizes/colors of text in same text block #347096

    Hey GGLNetwork!

    Thank you for using our theme.

    I’m not sure, if I got your question correct, but to outline special words in a textblock you can surround the text with a HTML Tag span, create a class for that span and define the styling for this class in custom.css or Enfold->Styles->QuickCSS field like:

    
    <span class="your_unique_class_name">your text</span>
    

    And the CSS code (e.g.):

    
    your_unique_class_name{
    color: red !important;
    font-weight: bold !important;
    }
    

    I hope this will help you. Come back with any further questions.

    Best regards,
    Günter

    in reply to: Texts not aligned to pictiures #347088

    Hey!

    Thank you for using our theme.

    The image is centered above the text.

    As the image is smaller than the width of the text container the only possibility you have is to float the image to left:

    
    .avia_image.avia_image_team {
        float: left !important;
    }
    

    If you want this only on the given page:

    
    .page-id-21 .avia_image.avia_image_team {
        float: left !important;
    }
    

    Put the code in custom.css or Enfold->Styles->QuickCSS field.

    Cheers!
    Günter

    in reply to: Removing 'Powered by Enfold WordPress Theme' #347083

    Hi nrosella!

    Thank you for using our theme.

    Have a look at:

    https://kriesi.at/support/topic/copyright-enfold-removal/

    This should help to solve your problem.

    Cheers!
    Günter

    in reply to: Unable to install theme on wp #343417

    Hi Malcolm!

    Thank you for using our theme.

    Try to upload the theme via ftp.

    Unpack the zip file and copy the folders enfold and enfold-child to the WP directory wp-content/themes.

    Cheers!
    Günter

    in reply to: Remove nav menu on single page header, but not logo #343402

    Hi!

    Thanks for coming back.

    You have to replace the ID with .page-id-2505 or .woocommerce-cart like:

    
    .page-id-2505 .main_menu {
        display: none !important;
    }
    
    or
    
    .woocommerce-cart  .main_menu {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Modify the blog entry template #343338

    Hey!

    Thank’s for coming back.

    You find the php files in the folder enfold/includes.

    Normaly it should be loop-index.php, but it might also be loop-portfolio-single.php.

    For more information about custom templates have a look at:

    http://codex.wordpress.org/Page_Templates

    Cheers!
    Günter

    in reply to: Sequential data loading in tabs #343326

    Hi Vital!

    Thank you for using our theme.

    Out of the box this is not possible. This requires some major changes, but this is customisation and bejond the scope of the support forum.

    Cheers!
    Günter

    in reply to: Remove nav menu on single page header, but not logo #343324

    Hi mhiller!

    Thank you for using our theme.

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

    
    .postid-3362 .main_menu {
        display: none !important;
    }
    

    Cheers!
    Günter

    in reply to: Customize Header Text in Search Results #343323

    Hey dwill21!

    In functions.php of the child theme you can add a filter hook to change the Text like:

    
    add_filter ('avf_ajax_search_label_names', 'my_new_label_name', 10, 1);
    
    function my_new_label_name($label)
    {
    if($label == 'Portfolio Items')
    {
       $label = 'Products';
    }
    return $label;
    }
    

    Best regards,
    Günter

    Hi tonyska!

    Thank you for using our theme.

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

    
    add_action('wp_head', 'add_my_header_script');
    
    function add_my_header_script()
    {
     echo 'your script code';
    }
    

    Best regards,
    Günter

    in reply to: Editing child theme name #339425

    Hi InvivoGraphic!

    Thank you for using our theme.

    You have to change the parent theme name to enfoldnew also to be recognized as the parent theme.

    Cheers!
    Günter

    in reply to: Auto Suggest Funktion der Suche #338970

    Hey!

    Danke. Ich habe mir die Situation angeschaut und 1 Testseite und einen Testbeitrag erstellt. Aus irgendeinen Grund funktioniert die Suche aber nicht, obwohl ich in der WP Abfrage dafür keinen Fehler finden kann.

    Habe das Problem an Kriesi weitergeleitet.

    LG
    Günter

    in reply to: How to edit a css? #338284

    Hey spadalbert!

    Thank you for using our theme.

    It is not a recommended way to edit the original files, as all your changes are overwritten on the next update.

    Either use a child theme with the file custom.css or Enfold-Child->Styling->QuickCSS field (or those files of the original theme) and make your adjustments there.

    Our theme uses classes and ID’s so it is possible to make nearly any changes you like to each element.

    Of course we can assist you with minor changes.

    Cheers!
    Günter

    in reply to: How do I make all hyperlinks in paragraph text to be bold. #338280

    Hey Oceans247!

    Thank you for using our theme.

    For the hyperlinks try the following:

    
    #main p a, #main p a:visited {
        font-weight: 900 !important;
    }
    

    For the icons try the following:

    
    .page-id-734 .avia-icon-list .iconlist_icon{
    background-color: #719430 !important; 
    color: #ffffff !important; 
    border-color: #507210 !important;
    }
    

    Regards,
    Günter

    in reply to: Help with Child theme functions.php #338270

    Hey RebeccaMaguire!

    Thank you for using our theme.

    You must not copy functions.php to the child theme. Replace functions.php in the child theme with the original child theme functions.php.

    You must/need to modify this file only, if you want to change a standard behaviour of enfold and in that case only with the required code to achieve the changes.

    I hope this info helps you.

    Regards,
    Günter

    in reply to: How can I change the font color on buttons? #338263

    Hi!

    Thank’s for feedback.

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

    
    .avia-button.avia-color-orange, .avia-button.avia-color-orange:hover{
    color: #000 !important;
    }
    

    Regards,
    Günter

    in reply to: Überschrift blog #336878

    Hallo Neo,

    Gerne.

    Falls weitere Fragen auftreten, stehen wir gerne zur Verfügung.

    Viel Freude mit dem Theme.

    Best regards,
    Günter

    Hey onegirlrtw!

    Thank you for using our theme.

    All changes you make to that file will be relevant for the child theme, as this file is loaded by the child theme.

    Regards,
    Günter

    in reply to: Überschrift blog #336724

    Hallo Neo,

    Bei den Themeoptions Enfold -> Blog Layout -> Related Entries gibt es ein DropDown mit mehreren Einstellungen. Falls ein Post kein Thumbnail hat, kann auch keines angezeigt werden. Ansonsten einfach einmal die Möglichkeiten durchprobieren.

    Regards,
    Günter

    in reply to: Überschrift blog #336688

    Hallo Neo,

    Die Beitragüberschrift über die volle Breite (habe es bereits eingebaut). Für die Überschrift zum formattieren (ist hier nur ein Beispiel):

    
    #top .fullsize .template-blog .post-title {
    max-width: none !important;
    }
    
    #top .fullsize .template-blog .post-title {
        color: blue !important;
       font-size:  20px !important;
    }
    

    Regards,
    Günter

    in reply to: Spacing after text boxes #336684

    Hey Giles!

    Thank you for using our theme.

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

    
    #main .template-page .entry-content-wrapper > div {
        margin-top: 20px !important;
    }
    

    If you want to limit it to the given page:

    
    .page-id-15 #main .template-page .entry-content-wrapper > div {
        margin-top: 20px !important;
    }
    

    Cheers!
    Günter

    in reply to: Changing size and colour of page titles #336672

    Hey Giles!

    Thank you for using our theme.

    The color can be changed with:

    
    #main .main-title a {
        color: #2d5c88 !important;
    }
    

    You can only change the font-size with CSS, not the tag. Adjust the value to your need.

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

    Regards,
    Günter

    in reply to: Page title and breadcrumbs font colour #336666

    Hi Rupert!

    Thank you for using our theme.

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

    
    #main .main-title a {
        color: #f2f3f5 !important;
    }
    #main .breadcrumb, 
    #main .breadcrumb a {
        color: #f2f3f5 !important;
    }
    
    

    Regards,
    Günter

    in reply to: Überschrift blog #336657

    Hallo Neo,

    Fehler gefunden. Man muss es so eintragen:

    
    #top .fullsize .template-blog .post .entry-content-wrapper {
    max-width: none !important;
    }
    
    #top .fullsize .template-blog .post .entry-content-wrapper > * {
    max-width: none !important;
    }
    

    Habe es bereits in QuickCSS korrigiert. Sollte jetzt funktionieren.

    Man könnte den Container noch etwas breiter machen, wenn man den folgenden padding Wert 50px verkleinert:

    
    .container{
    padding: 0 50px !important;
    }
    

    LG aus Wien
    Günter

    in reply to: Überschrift blog #336134

    Hallo Neo,

    Eigentlich sollte die erste Version funktionieren. Wenn ich diese in FF bei mir verwende, geht es.

    Vielleicht ist beim Eintragen ein Tippfehler passiert:

    
    #top .fullsize .template-single-blog .post .entry-content-wrapper > * {
      max-width: none !important;
    }
    

    Wenn es wieder nicht geht, können wir einen admin login bekommen?

    Cheers!
    Günter

    in reply to: Current menu item #336112

    Hey Richard!

    Thank you for using our theme.

    Try to replace the code above with:

    
    li.current_page_item a .avia-menu-text{
    color: #ff553e !important;
    }
    

    Cheers!
    Günter

Viewing 30 posts - 3,271 through 3,300 (of 3,695 total)