Forum Replies Created

Viewing 30 posts - 2,761 through 2,790 (of 3,742 total)
  • Author
    Posts
  • 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

    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

Viewing 30 posts - 2,761 through 2,790 (of 3,742 total)