Forum Replies Created

Viewing 30 posts - 3,571 through 3,600 (of 3,695 total)
  • Author
    Posts
  • in reply to: Can't add 'share with' type functionality in blog #291507

    Hey morpho2014!

    Thank you for using our theme.

    Can you give us an admin account so we can check your settings?

    Cheers!
    Günter

    Hi Jens!

    Danke, dass Sie unser Theme verwenden.

    Die Einstellung dafür findet Ihr in functions.php Zeile 101+102:

    
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		  // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 );	  // images for fullsize pages and fullsize slider
    
    

    ‘entry_with_sidebar’ wird verwendet. Eine Änderung wirkt sich aber auf die gesamte Seite aus.

    Falls das nicht gewünscht wird, müsste man eigene Formate definieren und dann in

    enfold/config-woocommerce/config.php Änderungen durchführen:

    
    //Zeile 704ff
    $image_size = "entry_with_sidebar";  // durch neuen Namen ersetzen
    if($layout == 'fullsize') $image_size = 'entry_without_sidebar';    // durch neuen Namen ersetzen
    

    LG
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Adding Twitter Handles text #291493

    Hi srmathis!

    Thank you for using our theme.

    Currently this is not supported by the theme. Adding this feature is beyond the scope of support.

    You find the code in enfold/includes/helper-social-media.php line 81ff.

    Regards,
    Günter

    in reply to: Header Background #291481

    Hey Snerp!

    Thank you for using our theme.

    It is possible to add a click event to the complete header section with the logo, if you have the menus below as on your screenshot.

    Put the following in functions.php and replace the URL:

    
    add_action('wp_footer', 'my_header_link');
    function my_header_link()
    {
    ?>
    <script>
    jQuery(function() {
    jQuery('#header_main').on('click', function(){
    window.location.href = "http://www.google.com";
    });
    });
    </script>
    <?php
    }
    

    Regards,
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Change color in testimonial "Subtitle below name" #291473

    Hey Bodymindlinks!

    Thank you for using our theme.

    in Enfold->General styling QuickCSS field or in custom.css put the following code and change #333 to your desired color:

    
    .main_color .avia-testimonial-subtitle{
    color: #333 !important;
    }
    

    Regards,
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Editing files using child theme? #291467

    Hi!

    Thanks for your update.

    If you want to alter class-breadcrumb.php in a child theme, follow the following steps:

    1) Copy the original file into a subfolder of the child theme, lets call this folder my_files
    2) From this file remove

    
    // At beginning of file line 3 + 4 remove:
    if(!class_exists('avia_breadcrumb'))
    {
    
    and aat line 144 remove:
    }
    

    Delete all after line 144 (these files are currently not ready to be hooked by the child theme)

    3) Make your changes to this class

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

    
    require_once ('/my_files/class-breadcrumb.php');
    

    If you need to do some changes in the other functions you can look for apply_filters

    
    //  Example in line 510
    $breadcrumb = apply_filters( 'avia_breadcrumbs', $breadcrumb );
    

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

    
    add_filter('avia_breadcrumbs', 'my_breadcrumbs', 10, 1);
    
    function my_breadcrumbs($breadcrumb )
    {
    // do something with breadcrumb
    
    return $breadcrumb;
    }
    

    Hope, this will help you.

    Cheers!
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Changing Excerpt lenght #291459

    Hi!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: Sidebar kommt auf einigen Seiten erst am Ende #291178

    Sollten es Kleinigkeiten sein, helfen wir Dir gerne im Rahmen des Support Forums.

    Bei größeren Wünschen kann ich Dir gerne auch Customization Support als Freelancer anbieten.

    Viel Freude mit dem Theme.

    LG
    Günter

    • This reply was modified 10 years, 4 months ago by Günter.
    in reply to: Sidebar kommt auf einigen Seiten erst am Ende #291107

    Schaut gut aus – Entspricht das auch Euren Vorstellungen?

    Von der HTML Struktur ist es so in Ordnung.

    LG aus Wien
    Günter

    in reply to: Sidebar kommt auf einigen Seiten erst am Ende #291059

    Hallo Gianni,

    Der Layout Slider liegt in einem 1/1 Block und Ihr habt darunter noch mehrere 1/1 Blöcke, erst dann 3 1/3 Blöcke am Ende.

    Erst dann ist Platz für die Sidebar, die auch richtig rechts angezeigt wird.

    Die Lösung könnte so aussehen, dass Ihr zB.
    1/1 Block mit dem Layerslider macht,
    dann 2/3 Block für übrige Sachen und 1/3 Block für die Custom Sidebar.

    Für das Login gibt es hier eine Antwort:

    https://kriesi.at/support/topic/avia-login-widget/

    LG
    Günter

    in reply to: Latest news widget – shorten title length #291046

    Hi!

    Glad we could help you. Enjoy the theme.

    Regards,
    Günter

    in reply to: Sidebar kommt auf einigen Seiten erst am Ende #291026

    Hi!

    Das Problem ist, dass Layer Slider die gesamte Breite benötigt – siehe auch https://kriesi.at/support/topic/layer-slider-shortcode-not-full-width/

    Dadurch rutscht die Sidebar hinunter.

    Lösung wäre z.B. auf der Seite Arbeitsrecht neben Kontakte und links das Element “Benutzerdefinierte Widgets” einzufügen.

    Welche Login page meinen Sie?

    Best regards,
    Günter

    in reply to: Latest news widget – shorten title length #291007

    Hey!

    You just have to go down the code and replace
    get_the_title()

    with

    $title

    in lines

    
    528 echo "<strong class='news-headline'>".get_the_title();
    545 echo "<strong class='news-headline'>".get_the_title()."</strong>";
    

    Regards,
    Günter

    in reply to: Latest news widget – shorten title length #290959

    Hey Holger!

    You need to change the php code in:

    enfold->framework->php->class-framework-widgets.php

    At line 519 you find:

    
    echo "<a class='news-link' title='".get_the_title()."' href='".get_permalink()."'>";
    

    Replace this with:

    
    $title = get_the_title();
    if(strlen($title) > 30)
    {
    $title = substr($title, 0, 27).'...';
    }
    echo "<a class='news-link' title='".$title."' href='".get_permalink()."'>";
    

    Best regards,
    Günter

    in reply to: Sidebar kommt auf einigen Seiten erst am Ende #290957

    Hey GRP!

    Danke dass Sie unser Theme verwenden.

    Haben Sie in Enfold->Sidebar Layout die Sidebars auf rechts eingestellt (v.a. für pages)?

    Können Sie uns einen admin Zugang einrichten, damit wir uns die Einstellungen im Backend anschauen können?

    mfg
    Günter

    in reply to: Header #290949

    Hi Nelson!

    Thank you for using our theme.

    Can you send us a link to your page please?

    Cheers!
    Günter

    in reply to: Seperator line above post title #290948

    Hey Swedfit!

    Thank you for using our theme.

    You need to make a change to the php code in file enfold/includes/loop-index.php.

    At line 127 you find:

    
    echo $title;
    

    If you are using a child theme, copy this file to the includes folder of the childtheme and make your changes there. This would be the recommended way as in case of an update your changes will not be overwritten.

    Cheers!
    Günter

    in reply to: spacing between share and comment section #290915

    Hey Swedfit!

    Thank you for using our theme.

    Try to put the following in custom.css or Quick CSS field in Enfold->Styling and adjust the value of px:

    
    .us_posts_bottom {
    margin-bottom: 20px !important;
    }
    
    

    Regards,
    Günter

    in reply to: Include thunbnail in serach results #290914

    Hey gd0g!

    Thank you for using our theme.

    Open file /includes/loop-search.php and goto line 88. There you can use your code snippet.

    Regards,
    Günter

    in reply to: Centre logo #290913

    Hey Richard!

    Thank you for using our theme.

    Can you send us a link to your page please?

    Best regards,
    Günter

    in reply to: Reduce margin space in for unitt container #290907

    Hey!

    Thank you for your update.

    If it works, it is fine and a good solution.

    Glad if we could help you.

    Cheers!
    Günter

    in reply to: Reduce whitespace in 2 locations #290905

    Hi Ed!

    Thank you for using our theme.

    In custom.css or Quick CSS fielld and adjust the value of px:

    
    .single-post .entry-content-wrapper .entry-content-header{
    margin-bottom: -10px;
    }
    .archive .content .post{
    margin-bottom: -10px;
    }
    

    This reduces the distance on every single post page and between on archive pages.

    Cheers!
    Günter

    in reply to: Main Menu #290757

    Hey!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: logo size #290756

    Hey!

    Using this type of header it is not possible to upload a larger logo, because it is resized via java script on scrolling. This is a limitation of the theme.

    Regards,
    Günter

    in reply to: remove spacing #290754

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

    in reply to: php in page #290401

    Hey!

    Glad we could help you.

    Best regards,
    Günter

    in reply to: additonal picture sizes #290398

    Hi!

    Glad we could help you. Enjoy the theme.

    Cheers!
    Günter

    in reply to: php in page #290193

    Hey!

    php is case sensitive !!
    $myUserID != $myUserId

    Regards,
    Günter

    in reply to: Footer layout & column width #290177

    Hi!

    Thank you for using the forum and enjoy the theme.

    Regards,
    Günter

    in reply to: php in page #290176

    Hi twdlewis!

    You are outputting a string and not the value of a variable.

    Regards,
    Günter

Viewing 30 posts - 3,571 through 3,600 (of 3,695 total)