Forum Replies Created

Viewing 30 posts - 4,711 through 4,740 (of 9,352 total)
  • Author
    Posts
  • in reply to: Version 2.6 update messed up styling #235330

    Hi!

    We’ll release an update asap but it can take some time because of the Envato review process. If you don’t want to modify the file on your own download the updated code here: http://pastebin.com/raw.php?i=UFNW4X18 and use the wordpress editor (Appearance > Editor) to replace the entire code in functions.php with the updated code from http://pastebin.com/raw.php?i=UFNW4X18

    It’s the quickest solution we can provide. If you don’t want to modify the file please wait for the Envato update notification.

    Cheers!
    Peter

    in reply to: Enfold 2.6 Image Handling #235324

    Hey ryanhulseberg!

    Can you post a link to your website please? I must check which code (html/php) or maybe css resizes the images before I can provide a fix.

    Regards,
    Peter

    in reply to: WooCommerce Product Slider – Broken href #235316

    Hi!

    I couldn’t find any bug in our code. Please try to deactivate all third party plugins except WooCommerce and activate them one by one to find the conflicting plugin.

    Regards,
    Peter

    in reply to: Caption in Lightbox for Gallery Images #235315

    Hey!

    Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery.php and replace:

    
    $description = trim($attachment->post_content) ? esc_attr($attachment->post_content) : "";
    

    with

    
    $description = trim($attachment->post_content) ? esc_attr($attachment->post_content) : esc_attr(trim($attachment->post_excerpt));
    

    We’ll add this fix to the next update.

    Regards,
    Peter

    in reply to: Blog post not responsive in full width #235313

    Hi intosuwo!

    Please post a link to your blog page.

    Best regards,
    Peter

    Hi!

    Ich persönlich würde versuchen diese Funktion in das Child Theme zu geben (ebenfalls in die functions.php). Siehe hierzu: http://kriesi.at/documentation/enfold/using-a-child-theme/ . Falls dies nicht gewünscht wird könnt ihr den Code direkt bearbeiten – in wp-content/themes/enfold/includes/admin/register-admin-options.php sucht nach:

    
    'EB Garamond'=>'EB Garamond',
    

    und ersetzt die Zeile durch:

    
    'EB Garamond'=>'EB Garamond',
    'Exo' => 'Exo:400',
    

    Regards,
    Peter

    in reply to: Issue after page edit #235306

    Hey!

    The log in doesn’t work for me. I get an error “Invalid username”.

    Best regards,
    Peter

    Hi!

    To remove the line breaks for the headline and to align the menu item to the right use this code:

    
    .sidebar_left .my-parent-item {
    padding-left: 0;
    padding-right: 0;
    font-size: 20px;
    }
    
    .sidebar_left  .widget_nav_menu .current_page_item{
    padding-left: auto;
    padding-right: 0;
    }
    

    Regards,
    Peter

    Hey!

    The theme does not support a map background at the moment. You can suggest this feature here: https://kriesi.at/support/topic/enfold-feature-requests/ and if more users request it we’ll maybe implement it. If you’re in a hurry please hire a freelancer who can help you to implement such a feature.

    Regards,
    Peter

    in reply to: Deutsche Sprache aktivieren #235300

    Hey!

    Ja, das Theme Option Panel selbst ist derzeit nicht übersetzt und auch nicht übersetzbar. Da sich bisher niemand daran gestoßen hat, haben wir es noch nicht für die Sprachdateien aufbereitet. Welche Einstellungen sind unverständlich? Dann erkläre ich diese schnell auf Deutsch.

    Regards,
    Peter

    in reply to: Mouse over product show filename in stead of ALT tekst #235298

    Hey!

    Please let us know if you need more help.

    Cheers!
    Peter

    in reply to: Thumbnail Größe bei normaler WP Galerie #235297

    Hi gmmediadienste!

    Kriesi setzt diese standardmäßig per CSS auf eine Größe von 80px. Du kannst die Größe mit diesem Code:

    
    #top .gallery .gallery-item {
    width: 150px;
    height: 150px;
    }
    

    anpassen. Füge den Code in das Quick CSS Feld ein.

    Regards,
    Peter

    in reply to: Secondary menu doesn't display on translated pages #235294

    Hey!

    Please update to Enfold 2.6 – maybe the update fixes the issue. If it doesn’t help I recommend to restore the database with a backup file. Maybe bwp-minify changed some WPML settings and now the menu sync feature doesn’t work anymore.

    Best regards,
    Peter

    in reply to: Yoast and Home Page Titles tags #235288

    Hey!

    Please update the plugin to version 2.6 and WordPress to version 3.8.x Also make sure that Yoast SEO and all other plugins are up to date.

    Cheers!
    Peter

    in reply to: Deutsche Sprache aktivieren #235287

    Hi!

    Eure Seite scheint für mich auch auf Deutsch übersetzt zu sein: http://www.clipular.com/c/4902809128402944.png?k=5tmfEk5BqvnM3sG1AmDGB_iIZZo – die Texte auf der Suchseite und im Frontend sind alle in Deutsch gehalten und auch der Layout Element Editor und der Shortcode Editor: http://www.clipular.com/c/5934477452771328.png?k=U_wDtJwFi9qERrH4DWYa3yYMT4k sind auf Deutsch übersetzt?

    Cheers!
    Peter

    in reply to: LayerSlider Enfold 2.6 Issue on Safari #235284

    Hey!

    I tagged this thread for Kriesi. LayerSlider is a third party plugin and we propably need to report these issues to the plugin author. I noticed that the slider starts to work on Chrome if I activate/deactivate the dev console which tells me that the “resize window” action seems to trigger a recalculation of the slider elements. Maybe we can use this hack for a temporary fix until the plugin author releases an update.

    Cheers!
    Peter

    in reply to: Einige Fragen zur Konfiguration, Style usw #235283

    Hi!

    1) Versucht einmal diesen Code:

    
    .socket_color a:hover, .socket_color a, .socket_color a:active {
    text-decoration: none;
    }
    

    Vielleicht fügt noch ein !important an, damit dieser Code wirklich jeden anderen Code überschreibt.

    2) Könnt ihr einen Link zur Sitemap Seite posten?

    3) Ihr könnt den Code in die Child Theme functions.php einfügen. Wenn ihr noch kein Child Theme verwendet empfehle ich hier: http://kriesi.at/documentation/enfold/using-a-child-theme/ unser “Demo” Child Theme herunterzuladen und es gemäß den Anweisungen zu installieren. Ihr könnt dann benutzerdefinierten css code in die child theme style.css einfügen und den benutzerdefinierten php Code könnt ihr in die functions.php Datei geben. Der Vorteil ist, dass das Child Theme beim Update von Enfold nicht überschrieben wird und eure Änderungen Bestand haben.

    Cheers!
    Peter

    in reply to: Fullwidth easyslider Fade in #235282

    Hi!

    I think the “white flash” effect is a mixture of the cross fade effect and the white page background which is visible for some ms during the transition. Try to change the background color of the slideshow container to i.e. black with this css code:

    
    .flex_column .avia-slideshow {
    background: #000;
    }
    

    Cheers!
    Peter

    in reply to: Woocommerce integration #235279

    Hey!

    Replacing the lightbox script is not easily possible. You can download this child theme: http://www.mediafire.com/?05ho02ecut516hu if you want to replace prettyphoto with fancybox 2. I used it on my website to replace the lightbox script. You can also use this child theme as a starting point for the implementation of another third party lightbox script. If you want to use the default lightbox with a thumbnail navigation open up wp-content/themes/enfold/js/avia.js and replace:

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:false, default_width: ww, default_height: wh });
    

    with

    
    elements.prettyPhoto({ social_tools:'',slideshow: 5000, deeplinking: false, overlay_gallery:true, default_width: ww, default_height: wh });
    

    Regards,
    Peter

    in reply to: Zähler wie auf der Homepage (Kriesi.at) #235276

    Hey!

    Kriesi hat hierfür einen neuen Shortcode geschrieben. Soweit ich weiß ist geplant, dass dieser mit einem Theme Update zu Enfold hinzugefügt wird, aber derzeit ist er nicht im Theme Code enthalten.

    Regards,
    Peter

    in reply to: Using rel=0 parameter in YouTube url #234660

    Hey Per!

    No, afaik the WordPress oembed api (see: http://codex.wordpress.org/Embeds ) does not support any additional parameters. If you just want to insert the video into the page/post content I recommend to use the iframe code instead which supports parameters.

    Regards,
    Peter

    Hi schneiderinho!

    Hast du den Code in die Child Theme functions.php eingefügt oder ganz am Anfang der Enfold functions.php nach:

    
    <?php
    

    Best regards,
    Peter

    in reply to: slider transitions #234655

    Hey!

    Edit the Layerslider where you want to show the timer, click on the “Global Settings” tab and activate the “Circle timer” option: http://www.clipular.com/c/5586569532538880.png?k=mpviLeZTDthU2jxizVl0_yD82P4
    You can also configure the “Autostart”/”Autoplay” option on this page.

    Best regards,
    Peter

    in reply to: enfold > preheader #234654

    Hey!

    I’m sorry you feel this way. Hopefully Jupiter will fit your requirements.

    Best regards,
    Peter

    in reply to: Portfolio Custom URL/Link Setting Open in New Window #234652

    Hey GavinAnstey!

    Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php and replace:

    
    if($custom_link) $this->loop[$key]['url'] = $custom_link;
    

    with

    
    if($custom_link) $this->loop[$key]['url'] = $custom_link;
    if($custom_link) $blank = "target='_blank'";
    

    and

    
    $this->loop[$key]['html_tags'] = array('a href="'.$this->loop[$key]['url'].'"','a');
    

    with

    
    if(empty($blank)) $blank = '';
    $this->loop[$key]['html_tags'] = array('a '.$blank.' href="'.$this->loop[$key]['url'].'"','a');
    

    Regards,
    Peter

    in reply to: Help with main menu #234647

    Hi alfredo72!

    Can you elaborate please? The titles of the main menu: http://www.clipular.com/c/5887492121165824.png?k=qOXCudoo7-nZhAsb9z55AK1cIh8 seem to display properly and they’re centered underneath the logos.

    Regards,
    Peter

    in reply to: Google Showing Enfold Theme Default Pages, Not Blog #234639

    Hi!

    1) Please set a proper page title for your website – at the moment it’s set to “-” which will have a negative impact on your SEO. I recommend to install http://wordpress.org/plugins/wordpress-seo/ and to configure the settings carefully.

    2) If you don’t want Google to index the demo pages I recommend to use Yoast SEO to set the meta robots data to “noindex, nofollow” or just set the entry status to “Draft”. As soon as the pages are published google will try to index them.

    Cheers!
    Peter

    in reply to: Enfold Layer Slider non-functioning in IE10 or Chrome #234637

    Hey Ryan!

    We’ll release a new version of Enfold (2.6) this week. It will include the new LayerSlider v5.x version which should hopefully fix all issues. If the update doesn’t fix the issue for you we’ll look into it.

    Best regards,
    Peter

    in reply to: custom text for blog post area #234629

    Hey schoenj!

    I suggest to use the free Codestyling plugin to translate the theme or to change the content of the current translation. Install the 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 the “create po-file” button. Click on “Rescan” to search for all text strings. Afterwards click on “Edit” and translate the required strings from the “avia_framework” textdomain. At least click the “create mo file” button next to the “Textdomain” selection dropdown (top left corner). Search for “Leave a Reply” and “Want to join the discussion?”, etc to translate the comment text strings.

    Cheers!
    Peter

    in reply to: Bugs #234626

    Hi ullihaush!

    1) Can you post a link to your website please? I’ll check the link code and test them with Firefox.

    2) Which videos do you want to embed into the content? Youtube and vimeo videos? If yes your server must support the oembed protocol otherwise it can’t query the video data from the provider (also see: http://codex.wordpress.org/Embeds ). To test if your server supports the oembed protocol I suggest to add a simple youtube shortcode to a post – just insert:

    
     [embed width="123" height="456"] http://www.youtube.com/watch?v=dQw4w9WgXcQ [/embed]
    

    into the post content. If this video works but the theme video shortcode doesn’t it’s a theme bug. If this video doesn’t work too your server simply doesn’t support the oembed protocol (yet) and you must contact the host/server administrator for help because our theme relies on the standard wordpress embed api.

    Cheers!
    Peter

Viewing 30 posts - 4,711 through 4,740 (of 9,352 total)