Forum Replies Created

Viewing 30 posts - 2,731 through 2,760 (of 3,706 total)
  • Author
    Posts
  • 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

    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

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