Forum Replies Created

Viewing 30 posts - 3,541 through 3,570 (of 9,352 total)
  • Author
    Posts
  • in reply to: breadcrumbs home anchor & WPML #265270

    Hi!

    Great :)

    Regards,
    Peter

    in reply to: Problem mit Schriftformatierung #265243

    Hi!

    Mir ist nun aufgefallen, dass ich das Problem auf einem anderen Windows-Rechner reproduzieren kann. Dies liegt vermutlich daran, dass mein Entwicklungsrechner Open Sans als System-Font installiert hat und der andere Windows Rechner nicht. Daher konnte die 300 Schriftstärke nicht vom System geladen werden. Ihr müsst die 300 font files mit google fonts einbinden, wenn jeder Benützer diese sehen soll. Fügt hierzu diesen Code in die Child Theme functions.php ein:

    
    add_filter( 'avf_google_heading_font', 'avia_add_google_font');
    add_filter( 'avf_google_content_font', 'avia_add_google_font');
    function avia_add_google_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:300,400,600';
    return $fonts;
    }
    

    und geht dann zu Enfold > Theme Options und speichert die Optionen neu. Anschließend sollte google fonts auch die 300 Stärke in die Font-Dateien inkludieren.

    Cheers!
    Peter

    in reply to: Instagram Plugin #265233

    Hey dkalbfu!

    No, the theme doesn’t come with an Instagram plugin. However maybe you can find a good plugin here: http://wordpress.org/extend/plugins/

    Best regards,
    Peter

    in reply to: Site Map Issue #265231

    Hi bluebeen!

    Can you post a link to your sitemap please?

    Regards,
    Peter

    in reply to: print.css #265229

    Hi!

    You must modify the print.css file. We’ll add this code with the next update though.

    Best regards,
    Peter

    in reply to: breadcrumbs home anchor & WPML #265228

    Hi!

    Ok, then try to add this code to the child theme functiond.php file (or place it at the very bottom of enfold/functions.php):

    
    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    if(defined('ICL_LANGUAGE_CODE') && ICL_LANGUAGE_CODE == "en") $args['show_home'] = 'Home';
    if(defined('ICL_LANGUAGE_CODE') && ICL_LANGUAGE_CODE == "he") $args['show_home'] = 'Home (Hewbrew)';
    return $args;
    }
    

    Replace “Home (Hewbrew)” with your Hewbrew text and “Home” with the English text. Then save the modified functions.php and the translation should show up if you switch the language.

    Regards,
    Peter

    in reply to: Enfold Update / js. file #265200

    Hey!

    Yes, but maybe Kriesi set the default value to “Activate for Smartphones & Tablets” ;)

    Best regards,
    Peter

    in reply to: print.css #265197

    Hey jurgen1979!

    Try to add this code to the print.css stylesheet:

    
    /*Tabs*/
    #top .tab_titles {
      display: none;
    }
    
    #top .tabcontainer .tab.fullsize-tab{
      display: block;
      border-bottom: none;
    }
    
    #top .tab_content{
      display: block;
      visibility: visible;
      z-index: 3;
      position: relative;
      overflow: auto;
      border-style: solid;
      border-width: 1px;
      border-radius: 2px;
      left: 0;
      width: auto;
      background-color: #fcfcfc;
      color: #666666;
    }
    
    #top .tab_inner_content{
      left: 0;
    }
    

    Regards,
    Peter

    in reply to: Blog – die aktuellsten Neuigkeiten (Text ändern) #265190

    Hi moliri!

    1) Der Text ist Teil der po/mo Übersetzungsdateien. Dieser Post beschreibt, wie man mit Codestyling the Übersetzungsdateien bearbeiten kann: https://kriesi.at/support/topic/french-version-of-site/#post-265158

    2) Hierzu eine Seite mit den LayerSlider anlegen und darunter das “Blog” Element einfügen. Dann unter Theme Options diese Seite als Blog Seite auswählen und unter “Blog Layout” – “Blog Style” die “Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page)” option auswählen.

    Regards,
    Peter

    in reply to: Firefox 29.0 and Header display #265186

    Hey BrendaSarg!

    Personally I can’t reproduce the styling flaw and the menu appears underneath the “Red Deer” banner. Maybe a browser extension (Firefox extension) breaks the website?

    Regards,
    Peter

    in reply to: Enfold Update / js. file #265184

    Hey!

    I think you don’t need to change the code since the 2.7.x update – Kriesi added a new option to the theme framework which enables you to select a higher switch width value. Go to Enfold > Theme Options > Header Layout > “Mobile Menu” tab and select “Header Mobile Menu activation” – “Activate for Smartphones & Tablets”.

    Best regards,
    Peter

    in reply to: Standard Editor #265181

    Hey!

    You can download the latest version of Enfold (version 2.7.1) for free from themeforest.net. It’s fully compatible with WP3.9. You can use ftp: https://vimeo.com/channels/aviathemes/67209750 to install the update.

    Best regards,
    Peter

    in reply to: Template Data Dissapears #265178

    Hi!

    Unfortunately there’s no other way to solve the issue. If one of these plugins is incompatible with WP3.9 you must deactivate it. The only alternative solution would be to downgrade to WP3.8.

    Regards,
    Peter

    in reply to: Breadcrumb Duplicated #265176

    Hey!

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

    Regards,
    Peter

    in reply to: Limit words count to 300 in text area of contact form #265171

    Hi oliviad!

    No, unfortunately not. This would require a js/jquery function which checks the user input and restricts it if necessary.

    Regards,
    Peter

    in reply to: Breadcrump without / in the link path to the home #265170

    Hi Juan-Jose!

    We use the get_bloginfo() function to generate the home url. If you want to change it open up wp-content/themes/enfold/framework/php/class-breadcrumb.php and search for:

    
    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    Best regards,
    Peter

    Hi simonac!

    1) You can either select the transparent header or the header with a bg color. A mixture is not possible without customization work – I’m sorry.

    2) To change the color of the menu items use this code:

    
    .header_color .main_menu ul:first-child > li > a{
    color: #555555;
    }
    

    To change the border color & thickness use:

    
    .header_color .avia-menu-fx{
    color: #555555;
    height: 5px;
    }
    
    

    Best regards,
    Peter

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

    Hey!

    Yes, I think the opacity makes the text unreadable. I’d recommend to use a semi-transparent background only.

    Regards,
    Peter

    in reply to: Blog posts don't show in translated language. #265165

    Hey!

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

    Regards,
    Peter

    Hi monlogic!

    Can you please post a link to your website?

    Regards,
    Peter

    in reply to: Image issues #265161

    Hi!

    I can’t get the music to play on Chrome with the ogg file and Chrome outputs an error which indicates that it doesn’t support the ogg format “InvalidStateError: Failed to set the ‘currentTime’ property on ‘HTMLMediaElement’: The element’s readyState is HAVE_NOTHING”. The player itself can’t be re-positioned because the player styling is not compatible with the LayerSlider position calculations. The Layerslider developers solved this issue by adding the “nocontrols” attribute to the “audio” tag which hides the controls. The music will play in the background but the user won’t see the player.

    Regards,
    Peter

    Hey!

    Great, glad it works now :)

    Regards,
    Peter

    in reply to: French Version of site #265158

    Hi!

    The “Load more” link, etc. is just a static text which is translatable with po/mo files. If you want to update/modify the po/mo translation files install this plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain (i.e. search for “Load more” and translate it). At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Cheers!
    Peter

    in reply to: visual Editor #265157

    Hi!

    Bitte aktualisiere Enfold auf Version 2.7.1. Mir ist aufgefallen, dass Version 2.6.2 verwendet wird, welche nicht mit WP3.9 kompatibel ist. Ich empfehle ein Update per ftp: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Peter

    in reply to: Can't load Avia layout pages #265156

    Hi!

    Unfortunately I’ve also no idea what’s going on but I noticed that the admin screen is completely messed up and it seems like the server doesn’t serve all css/js files properly. The admin screen looks like: http://www.clipular.com/c/5244499898925056.png?k=edFAQUT2QY7sntdygOk2pIRbQ14 and I get several js errors when the (unexpected token, etc.) when I load the page. These errors probably also break our theme code (advanced template builder code).

    Cheers!
    Peter

    Hey!

    Yes, the browser scales the image based on the screen resolution and the image resolution and this can result into blurry text. I recommend to use an image without text and to place a textbox/headline element into the color section if you want a “crispy clear” text on all devices.

    Best regards,
    Peter

    in reply to: Adsense über code Blog falsch dargestellt. #265152

    Hi!

    Unter “Performance” > “General settings” den “Minify mode” auf “Manuell” stellen. Dann unter “Minify” die Skripts einzeln hinzufügen und verwende die “Embed Location” Option um festzulegen, ob das Skript im Kopf- oder Fußbereich geladen werden soll.

    Cheers!
    Peter

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

    Hi!

    Sehr gut – da dies mAn aber verwirrend ist (was hat die “Versandkosten in Übersicht” Option mit den Einzelprodukten zu tun?) würde ich es als Fehler den GM Entwicklern melden.

    Cheers!
    Peter

    in reply to: Problem mit Schriftformatierung #264779

    Hi!

    Ich kann die Website auf Mac nicht testen und auf Windows kann ich diesen Problem nicht nachvollziehen. Ich habe aber Kriesi nun gebeten sich die Sache mit seinem MacBook anzusehen.

    Best regards,
    Peter

    in reply to: breadcrumbs home anchor & WPML #264774

    Hey bonsitemor!

    The “Home” link is just a static text which is translatable with po/mo files. If you want to update/modify the po/mo translation files install this plugin ( http://wordpress.org/plugins/codestyling-localization/ ), go to Tools > Localization and select “Themes”. Then search for “Enfold” in the list and select your language and click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain (i.e. search for “Home” and translate it). At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner).

    Best regards,
    Peter

Viewing 30 posts - 3,541 through 3,570 (of 9,352 total)