Forum Replies Created

Viewing 30 posts - 2,701 through 2,730 (of 3,695 total)
  • Author
    Posts
  • in reply to: Remove link on titles in Ajax portfolio #427560

    Hey!

    Thank you for coming back.

    Using a child theme you can copy the file above to the childtheme directory. Follow http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    On my installation the code above works.

    Can you create us a temporary admin account please? Then we can check your code and help you. You can post it here as a private reply.

    Cheers!
    Günter

    in reply to: Customise Excerpt for Blog #427537

    Hi!

    Thank you for coming back.

    Try to replace the code above with:

    
    function change_blog_archive_style() {	
    	global $avia_config;
    	if(!is_single()){ $avia_config['blog_content'] = "excerpt_read_more"; }
    }
    add_action('get_header', 'change_blog_archive_style');
    

    Cheers!
    Günter

    in reply to: Theme is completely broken #427517

    Hey!

    Thank you for using our theme.

    Sorry for the problems you encounter.

    As long as you did not make any changes to theme files uploading and overwriting the folder theme/enfold with FTP only updates the theme files. Any data stored in the theme options are not changed – and the database is also not changed.

    Also try to deactivate all plugins first.

    Also check your php memory limit – see https://kriesi.at/support/topic/white-screen-after-activate-enfold/

    Cheers!
    Günter

    in reply to: Breadcrumb to new position #427511

    Hi!

    @dreamworker80

    You can put

    
    add_shortcode( ‘bread_crumb’, ‘avia_title’ );
    

    at the end of functions.php OR at the end of functions-enfold.php.

    See also: http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/

    But this code displays title and breadcrumbs.

    There have been several requests already. I will talk to Kriesi for implementing a more sophoisticated solution.

    Regards,
    Günter

    in reply to: Remove link on titles in Ajax portfolio #427496

    Hey waveseven!

    Thank you for coming back.

    You need to modify a core file:
    enfold\config-templatebuilder\avia-shortcodes\portfolio.php line 720:

    Look for:

    
    $output .= "<h2 class='portfolio-preview-title entry-title' $markup><a href='{$link}'>".$entry->post_title."</a></h2>";
    

    and replace with:

    
    $output .= "<h2 class='portfolio-preview-title entry-title' $markup>".$entry->post_title."</h2>";
    

    Remember to do this after every update.

    Regards,
    Günter

    Hey ndimmick!

    Thank you for using our theme.

    Sounds like a PHP memory problem.

    Please try to increase the allocated memory to at least 128M: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP

    Use WP_MAX_MEMORY_LIMIT and WP_MEMORY_LIMIT.

    It might also be necessary to contact your service provider to increase it in php.ini also – if you cannot do it.

    Regards,
    Günter

    Hey!

    Thank you for your feedback.

    Sorry, that you could not find a way via the WP auto save feature and you had to retype everything.

    Still we hope that you enjoy our theme.

    Feel free to come back with further questions and/or problems you have.

    Regards,
    Günter

    in reply to: Icon Box – mit eigenen Icons? #427484

    Hi nullhorn!

    Danke dass Du unser Theme verwendest..

    Hast Du schon die Doku gesehen:

    http://kriesi.at/documentation/enfold/adding-your-own-icon-fonts/

    Regards,
    Günter

    in reply to: Child Theme erstellen – oder schon zu spät? #427477

    Hi nullhorn!

    Danke dass Du unser Theme verwendest.

    Soferne die CSS Änderungen in custom.css sind, diese einfach in style.css des child theme kopieren 1:1.

    Die Änderungen in QuickCSS ebenfallls 1:1 in QuickCSS des Child themes übernehmen, oder in style.css des child themes.

    Unter Umständen solltest Du !important an Deine Änderungen anhängen, falls etwas nicht geht.

    Dann das Child theme aktivieren, Optionen des Parent Themes übernehmen mit den blauen Button:

    Enfold Child -> Import/Export -> Import Settings from your Parent Theme

    Dann sollte es funktionieren.

    Best regards,
    Günter

    in reply to: Blank page question #427473

    Hey Mark!

    Thank you for using our theme.

    In custom.css or Enfold -> General Styling -> Quick CSS field put the following and adjust the value as needed:

    
    
    #top.avia-blank #wrap_all {
        vertical-align: top !important;
    }
    
    #top.avia-blank #wrap_all .container {
        min-height: 580px !important;
    }
    
    

    Cheers!
    Günter

    in reply to: Space between widgets #427463

    Hey svreatt!

    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.

    Best regards,
    Günter

    Hi Becca!

    Thank you for using our theme.

    Out of the box – no.

    Depending on where you want to change it you will have to modify the following file:

    enfold\includes\loop-index.php

    Look for class=’post-meta-infos’ at line 74ff.

    Regards,
    Günter

    Hey Whippert!

    Thank you for using our theme.

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

    
    .archive.woocommerce-page #main .title_container {
        display: none !important;
    }
    
    

    Best regards,
    Günter

    in reply to: Hide breadcrumbs on mobile phone #427450

    Hi melangeur!
    Thank you for using our theme.

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

    
    @media only screen and (max-width: 767px) {
            .breadcrumb {
                     display: none !important;
            }
    }
    
    

    You can also replace 767 with 480.

    Regards,
    Günter

    in reply to: How to remove footer in mobile? #427449

    Hey Becca!

    Thank you for using our theme.

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

    
    @media only screen and (max-width: 767px) {
           #socket {
                      display: none !important;
             }
    }
    

    You can also replace 767 with 480.

    Alternativ you can use the following to hide the footer section:

    
    @media only screen and (max-width: 767px) {
           #footer {
                      display: none !important;
             }
    }
    

    Best regards,
    Günter

    in reply to: WooCommerce "Sort by" dropdown #422649

    Hey!

    To complete remove the dropdown lists:

    Line 1091:

    
    add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20);
    

    replace with:

    
    //     add_action( 'woocommerce_before_shop_loop', 'avia_woocommerce_frontend_search_params', 20);
    

    At a quick glance I did not find a WC hook to add the select boxes. But maybe the plugin author can help you with a hook to display his selectboxes. Add his hook instead of ours.

    If you have troubles with that, post us the hook and we will try to help you.

    Cheers!
    Günter

    in reply to: 2nd menu center #422528

    Hey!

    Schön, dass Ich Dir helfen konnte. Viel Freude noch mit dem Theme und Du kannst jederzeit mit Fragen und Problemen zu uns kommen.

    LG
    Günter

    Hey Luke86!

    Thank you for using our theme.

    Due to the html structure you can only move it below the small images with CSS.

    In custom.css or Enfold -> General Styling -> Quick CSS field put the following and adjust the values as needed:

    
    .single-product-summary {
        float: left !important;
        margin-top: 10px !important;
        width: 66% !important;
    }
    

    If you want to change the HTML structure you must check enfold\config-woocommerce\config.php and check for the hooks woocommerce_before_single_product_summary, woocommerce_after_single_product_summary.

    Cheers!
    Günter

    in reply to: 2nd menu center #422500

    Hi!

    Try to replace

    
    width: 0 !important;
    

    with

    
    width: 150px !important;
    

    Best regards,
    Günter

    in reply to: How to activate Debug Mode for copying shortcode? #422492

    Hi!

    Inspecting the generated HTML there are sections with the id “after_section_1” … “after_section_6” which are creating those seperator lines.
    If you remove them (with Firebug) the seperators disappear.

    Also the HTML structure looks different from the original – maybe because of the missing elements (layerslider,…).

    Cannot say why.

    Try to integrate the layersliders and upload the images and make sure you have the same page layout as in the original.

    Best regards,
    Günter

    in reply to: How to activate Debug Mode for copying shortcode? #422442

    Hey!

    Thank you for your feedback.

    I tested on my local installation – it should work.

    Try the following:

    Create a new page on your source site and try to paste the copied code there and check, if it works.

    Be carefull to copy the complete textbox as there is no checking for correct syntax.

    Best regards,
    Günter

    in reply to: Anzeige Buttons (Warenkorb/Kasse) in Sidebar #422428

    Hi!

    Danke für die Rückmeldung.

    Bei Einzelproduktseiten (z.B. https://designed-by.de/shop/streifen-shirt-aus-100-baumwolle/) sollte der folgende Code passen:

    
    .woocommerce-page .widget_shopping_cart .widget_shopping_cart_content .checkout {
        margin-top: 4px !important;
    }
    

    Für Übersicht (z.B. https://designed-by.de/shop/bekleidung/damen/)

    
    .page .woocommerce.widget_shopping_cart .buttons .checkout {
        margin-top: -50px !important;
    }
    

    Best regards,
    Günter

    in reply to: 2nd menu center #422416

    Hey diefleischerei!

    Thank you for coming back.

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

    
    #header_meta .sub_menu {
        float: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        width: 0 !important;
    }
    

    Regards,
    Günter

    in reply to: Toggle Accordian Customise #422381

    Hi fineart!

    Thank you for coming back.

    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.

    ad 4) Try to deactivate all plugins and reactivate one by one to check, if there is a plugin conflict.

    Cheers!
    Günter

    in reply to: WooCommerce "Sort by" dropdown #422377

    Hey!

    Thank you for coming back.

    I checked the code and this dropdown is hardcoded in our theme. You find it in enfold\config-woocommerce\config.php line 1128ff.

    Out of the box there is currently no possibility for a 3-rd party plugin to hook into it and change it.

    I will forward this to Kriesi, if he wants to implement a solution for it.

    Cheers!
    Günter

    in reply to: Need posts in one category sorted in ASC order #422374

    Hey!

    Glad you found a solution for your first problem.

    Out of the box it is currently not possible to change the sort order for the latest news widget.

    You must modify the core file enfold\framework\php\class-framework-widgets.php line 450 – 484 and alter the query parameters for WP_Query.

    Regards,
    Günter

    in reply to: Anzeige Buttons (Warenkorb/Kasse) in Sidebar #422362

    Hi chris2712!

    Danke dass Du unser Theme verwendest.Danke dass Du unser Theme verwendest.

    Könntest Du uns bitte einen Link zu dieser Seite geben, damit wir uns das anschauen können. Anders haben wir keine Möglichkeit Dir zu helfen.

    Du kannst den Link hier als Private Reply posten.

    Cheers!
    Günter

    in reply to: How to activate Debug Mode for copying shortcode? #422361

    Hey nkhaund!

    Thank you for using our theme.

    You can access the file functions.php of the child theme simply via WP Dashboard.

    Open “Appearance -> Editor” and from Select theme to edit: ” select “Enfold Child” and press “Select”.

    Below you find then “functions.php”. Click on it and it opens the file for editing.

    I hope, this helps you for the start.

    Regards,
    Günter

    in reply to: Make enfold the bestest ever theme! #422031

    Hey borkent!

    Thank you for using our theme and thank’s for the ideas posted.

    I will point the attention of Kriesi to your post.

    Have a nice day and enjoy the theme.

    Regards,
    Günter

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

    Hi!

    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

Viewing 30 posts - 2,701 through 2,730 (of 3,695 total)