Forum Replies Created

Viewing 30 posts - 3,601 through 3,630 (of 9,352 total)
  • Author
    Posts
  • in reply to: Alt tag images #263814

    Hey Stefanovic!

    Tbh I can’t remember which files we edited to fix this problem. Your best bet is to update the enfold/framework folder and the enfold/config-templatebuilder/ folder – both folders contain a lot of image functions which also print the alt tags.

    Regards,
    Peter

    in reply to: visual Editor #263813

    Hey!

    Bitte erstelle mir einen Admin Account und poste die Login Daten als “Private Reply” – ich sehe mir die Sache an.

    Regards,
    Peter

    in reply to: role scoper #263811

    Hey satucker!

    No, I’m not aware of a support team member or user who tried this plugin yet. You can try a different membership plugin like: S2Member or : Groups. I’ll leave this thread open if another user wants to post some feeback.

    Cheers!
    Peter

    in reply to: Anzeigeprobleme mit Enfolds 2.7.1 #263807

    Hi!

    Sehr schön :)

    Best regards,
    Peter

    in reply to: Yet another thread of disabling the lightbox #263806

    Hey!

    Glad Devin could help you :)

    Regards,
    Peter

    in reply to: No Magic Wand for Shortcodes? #263805

    Hey gd0g!

    Please update Enfold to version 2.7.1. Older theme versions are not fully compatible with WP3.9 and then the magic wand shortcode generator won’t work properly.

    Cheers!
    Peter

    in reply to: Issue with Google Webmaster Tools : error 404 #263800

    Hey!

    The paths are required for wordpress and the theme framework. You can use a robots.txt file to to prevent search engines from indexing these directories. I recommend following rules:

    
    User-agent: *
    Disallow: /wp-admin
    Disallow: /wp-includes
    Disallow: /wp-content/plugins
    Disallow: /wp-content/cache
    Disallow: /wp-content/themes
    Disallow: /trackback
    Disallow: /feed
    

    Regards,
    Peter

    in reply to: Team-Mitglied Text mittig #263798

    Hey Walter52!

    Versuche einmal diesen Code zu verwenden.

    
    #top .team-member-description { text-align: center; }
    

    Cheers!
    Peter

    in reply to: Kann keinen Text mehr hinzufügen bez. ändern. #263796

    Hey!

    Bitte erstelle mir einen Admin Account und poste die Login Daten als “Private Reply” – ich sehe mir die Sache an.

    Regards,
    Peter

    in reply to: Except not showing for blog posts on category pages #263795

    Hey!

    Great :)

    Cheers!
    Peter

    in reply to: Font #263793

    Hi!

    Please create us an admin account and post the login credentials as private reply. We’ll check the configuration.

    Cheers!
    Peter

    in reply to: Masonry sort terms include non-selected categories #263792

    Hey!

    Nevermind – I found the problem. Some custom code in your custom.css file breaks our theme styling (I refer to this code):

    
    .main_color #js_sort_items a, .main_color .av-sort-by-term a {
    display: inline-block;
    line-height: 30px;
    height: 30px;
    padding-right: 4px;
    margin-right: 15px;
    color: #938D83;
    }
    

    To fix the issue insert this code to your custom.css code:

    
    #top .av-masonry-sort .avia_hide_sort {
    display: none !important;
    }
    

    Best regards,
    Peter

    in reply to: Masonry sort terms include non-selected categories #263791
    This reply has been marked as private.
    in reply to: Standard Editor #263790

    Hi!

    You can use Josue’s code here: https://kriesi.at/support/topic/standard-editor/#post-262652 to activate the “debug screen” which will appear underneath the advanced layout editor: http://www.screenr.com/92MN . Then use this raw code to copy/paste it into the “Standard Text” editor.

    Regards,
    Peter

    in reply to: New share by email #263787

    Hi!

    Yes. If you need a quick fix open up wp-content/themes/enfold/includes/helper-social-media.php and replace

    
    					if(!empty($share['encode']) && $replace_key != 'shortlink' && $replace_key != 'permalink') $replace_value = urlencode($replace_value);
    					if(!empty($share['encode_urls']) && ($replace_key == 'shortlink' || $replace_key == 'permalink')) $replace_value = urlencode($replace_value);
    

    with

    
    					if(!empty($share['encode']) && $replace_key != 'shortlink' && $replace_key != 'permalink') $replace_value = rawurlencode($replace_value);
    					if(!empty($share['encode_urls']) && ($replace_key == 'shortlink' || $replace_key == 'permalink')) $replace_value = rawurlencode($replace_value);
    

    Regards,
    Peter

    in reply to: Except not showing for blog posts on category pages #263785

    Hey Matt!

    The category/archive pages use the read more quicktag ( http://en.support.wordpress.com/splitting-content/more-tag/ ) to separate the excerpt from the content. You can also use the “excerpt” option field on the post editor page to insert a custom excerpt text but you need to add this code to your child theme functions.php file or enfold/functions.php:

    
    add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1);
    function avia_category_content_filter($current_post)
    {
    if(!is_single())
    {
    	$current_post['content'] =  get_the_excerpt();
    	$current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow">  &rarr;</span></a></div>';
    }
    return $current_post;
    }
    

    to query the excerpt from the “excerpt” field.

    Cheers!
    Peter

    in reply to: Website is slow to load #263784

    Hey!

    Great :)

    Regards,
    Peter

    in reply to: Layer Slider, style of linked elements get messed up #263781

    Hi!

    I think the opacity value is the cause of the problem – when I remove the value I can read the text without problems. I recommend to apply a semi-transparent background-color to the box and to remove the opacity value. Instead of:

    
    background-color: rgb(173, 31, 35);
    

    use

    
    background-color: rgba(173, 31, 35, 0.75);
    

    If you don’t know the rgb value you can use this converter: http://hex2rgba.devoth.com/ to generate a rgba value from your hex color value.

    Best regards,
    Peter

    Hey!

    1b) You can use custom field values (click on “Screen Options” on the top right corner to show the “Custom fields” option field on the product editor page) to set different values for different products. Instead of

    
    echo "6 months";
    

    use this code:

    
    $value = get_post_meta(get_the_ID(), 'custom_delivery_time', true);
    if(!empty($value))  echo $value;
    

    and on the product editor page insert “custom_delivery_time” into the first field (key name) and 6 months into the second field: http://www.clipular.com/c/4982606751858688.png?k=aqKhvkFkIcmJ9X0Yit-nXAz8OT8

    3) Yes, if you want to remove the link try to replace:

    
    return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s"  rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
    

    with

    
    return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom avianolink" title="%s">%s</a>', $image_link, $image_title, $image);
    

    Best regards,
    Peter

    in reply to: News Widget padding & margins #263775

    Hey!

    1) Do not bump your threads. Your post will be pushed to the end of the queue again if you (or a moderator) posts a reply. In addition it makes no sense to bump a thread after one hour – the reply time is 24 hours at the moment.

    2) Please post a link to your website (the Enfold News Widget page) and we’ll investigate the css code.

    Best regards,
    Peter

    in reply to: Gallery not working #263772

    Hi kahangabriel!

    You can configure the preloading effect. Click on the “gallery” element to configure the gallery options and scroll to the “Thumbnail fade in effect” dropdown. Select “Activate animation on page load (might be preferable on large galleries)”.

    Cheers!
    Peter

    in reply to: Next / previous blog post bug #263771

    Hey!

    We reported the bug to Kriesi and if we can fix (= if it’s not a browser bug) we’ll add the patch to the next update. If you want to hide the arrows for single post entries use this code:

    
    #top.single .avia-post-nav { display: none; }
    

    Regards,
    Peter

    in reply to: Probleme mit WGM ab 2.3.2 und Enfold 2.7.1 #263570

    Hi!

    Nein, sonst würde zB ein Theme-Wechsel auf Enfold oder TwentyThirteen den Fehler beheben.

    Best regards,
    Peter

    in reply to: Probleme mit WGM ab 2.3.2 und Enfold 2.7.1 #263457

    Hi!

    Ja, da TwentyThirteen das Standardtheme ist und die Standard WooCommerce Templates nützt. Was mit TwentyThirteen nicht geht funktioniert auch mit Enfold nicht.

    Cheers!
    Peter

    in reply to: Probleme mit WGM ab 2.3.2 und Enfold 2.7.1 #263448

    Hi!

    Das Superstore Theme dient mir nicht als Referenz und ich kann auch hier den Code nicht vergleichen. Wenn es mit dem TwentyThirteen Theme nicht funktioniert, dann ist es meiner Ansicht nach ein Plugin Problem und dementsprechend von den Entwicklern zu beheben. Das uU andere Themes funktionieren mag sein, aber es würde zuviel Arbeit bedeuten nachzuforschen warum es jetzt bei anderen Themes funktioniert und beim Standardtheme nicht.

    Cheers!
    Peter

    in reply to: Probleme mit WGM ab 2.3.2 und Enfold 2.7.1 #263437

    Hey!

    Ja, ich verwende die neueste Version. Hast du schon probiert hier http://koffer-kunst.de/produkt/koffer-kunst-licht/ auf TwentyThirteen umzustellen? Ich bin mir nach Durchsicht des Theme Codes ziemlich sicher, dass es nicht am Theme liegt.

    Regards,
    Peter

    in reply to: Plugin wooCommerce German Market Kompatibilität #263386

    Hey!

    Sehr gut :)

    Cheers!
    Peter

    in reply to: Cart Icon not showing up after item added to cart #263380

    Hi!

    Please create a new thread and post a link to your website. My answer was directed to the thread creator asudoit who posted the screenshot.

    Cheers!
    Peter

    in reply to: Anzeigeprobleme mit Enfolds 2.7.1 #263373

    Hey renz54!

    1) Versuche dieses Problem mit CSS Code zu beheben. Füge nachfolgenden Code in das Quick CSS Feld ein (oder in die Child Theme style.css Datei):

    
    #top .avia-icon-list .iconlist_title {
    margin-bottom: 4px;
    }
    

    2) Versuche einmal diesen Code in das Quick CSS Feld einzufügen – er teilt die Überschrifte, wenn diese zu lang werden:

    
    h1,h2,h3{
    word-wrap: break-word;
    }
    

    3) Ändert ihr vielleicht die Farbe mit dem Quick CSS Feld ab? Dann würde das Quick CSS Feld die Einstellungen überschreiben. Ihr könnt die Farbe auch mit dsiesem Code setzen:

    
    #top #footer .widgettitle{ color: #ffffff;  }
    

    Best regards,
    Peter

    Hey!

    Great, glad you found a solution.

    Best regards,
    Peter

Viewing 30 posts - 3,601 through 3,630 (of 9,352 total)