Forum Replies Created

Viewing 30 posts - 5,131 through 5,160 (of 9,352 total)
  • Author
    Posts
  • in reply to: Enfold Theme is Broken and has poor support #223882

    Hi!

    Thank you for the feedback comitzuu.

    Best regards,
    Peter

    in reply to: Masonry galery hat nicht die volle Breite! #223879

    Hey!

    Kannst du mir bitte einen Admin Account einrichten und die Login Daten als private Antwort senden? Ich sehr mir die Konfiguration an und versuche den Fehler zu finden.

    Cheers!
    Peter

    in reply to: Easy Slider auto resume after hover / pause #223877

    Hey hawea74!

    By default the slider will ignore the mouse hover event and the autorotation won’t stop. However Kriesi added an hidden option to the slideshow script and you can activate it if necessary. Open up wp-content/themes/enfold/js/shortcodes.js and replace

    
    hoverpause: false,
    

    with

    
    hoverpause: true,
    

    Best regards,
    Peter

    in reply to: Couple issues, mostly browser related #223873

    Hey Tali!

    1) I can’t reproduce this issue on the demo page and on my test servers: http://kriesi.at/themes/enfold/cart/
    Please deactivate all browser extensions – maybe an extension causes the styling flaws. If this doesn’t help post a link to your website and we’ll check the css code.

    2) You can try this css code:

    
    .dropdown_widget .cart_list {
    overflow-y: auto;
    max-height: 300px;
    }
    

    You can replace 300px with any other px value. % values are not supported.

    Cheers!
    Peter

    in reply to: Portfolio grid image load effect speed #223850

    Hey!

    Ah ok – open up wp-content/themes/enfold/js/avia.js and search for:

    
    					imgParent.css({height:'auto'}).each(function(i)
    					{
    						var currentLink = $(this);
    
    						setTimeout(function()
    						{
    							currentLink.animate({opacity:1},1500);
    						}, (100 * i));
    					});
    

    Replace it with

    
    					imgParent.css({height:'auto'}).each(function(i)
    					{
    						var currentLink = $(this);
    						currentLink.animate({opacity:1},1500);
    					});
    

    Best regards,
    Peter

    in reply to: Modify Masonry Gallery #223846

    Hey mgerenser!

    1) You can try to add an opacity effect to the masonry images – insert this code into the quick css field

    
    .av-masonry-image-container:hover img {
    opacity: 0.6;
    }
    

    2) See https://kriesi.at/support/topic/question-about-the-full-width-masonry-gallery/

    Regards,
    Peter

    Hey AlexKK!

    1) No, the lightbox on the portfolio page can’t display all portfolio images but just the featured images.

    2) You can add a nextgen shortcode to a post, page or portfolio entry to display the nextgen image gallery(ies). You can either create a portfolio page (which just shows the featured images) and then on the single portfolio entry pages show the nextgen galleries or you can use the menu editor (Appearance > Menus) to link to a single portfolio entry or page directly. By going this way you don’t need a portfolio page and you can bypass the limitation of the portfolio page if necessary (see 1)).

    Cheers!
    Peter

    in reply to: portfolio-item Name #223841
    This reply has been marked as private.
    in reply to: Broken Theme once I have reinstalled #223567

    Hey!

    Please click on the “Screen options” tab in the right page corner and make sure that the “Avia Layout Builder” option field is activated: http://www.clipular.com/c/5983054.png?k=AR77PzrVKJBKyZ_pC_VlXh-QVhw

    Cheers!
    Peter

    in reply to: CM Download Manager plugin does not activate #223566

    Hi Anthony!

    I can’t reproduce the issue. Maybe another third party plugin conflicts with the CM Download Manager plugin or you must increase th allocated memory: http://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/ to 128M.

    Best regards,
    Peter

    in reply to: woocommerce groups #223562

    Hi cube!

    You can use the shortcode within a textblock – I just tested it on my localhost and it worked for me. Wrapping multiple template builder elements into a “groups shortcode” is not possible at the moment though. You can try to manipulate the shortcode data directly by using the debug mode: https://kriesi.at/support/topic/moving-a-layout-element-testimonials/#post-211049 but I’m not sure if the Layout Builder will still work if you wrap elements into a group shortcode.

    Best regards,
    Peter

    in reply to: Multilingual Press Pro + Enfold + Multisite #223361

    Hey!

    Update: I tested Multilingual Press Pro 1.1.1 and I didn’t find any major theme incompatibility issues. A small known issue is that you can’t translate/build the template builder pages directly with the second text editor (because just one instance of the Layout Builder is supported at the moment). Afaik v2.0 will not add a second text editor to the “Edit” page anyway and you simply need to switch to the other blog to use the Layout Builder – thus I consider this issue as “minor issue”.

    Regards,
    Peter

    in reply to: functions.php #223327
    in reply to: Head With Social Media and Large Logo #223326

    Hi!

    You mus not duplicate the function because function names must be unique – use following code instead:

    
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    function avia_add_custom_icon($icons)
    {
    $icons['apple']	 = array( 'font' =>'social-fontello', 'icon' => 'ue803');
    $icons['yelp']	 = array( 'font' =>'social-fontello', 'icon' => 'ue800');
    return $icons;
    }
    
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);
    function avia_add_custom_social_icon($icons)
    {
    $icons['Apple'] = 'apple';
    $icons['Yelp'] = 'yelp';
    return $icons;
    }
    

    Cheers!
    Peter

    in reply to: Tables in Accordion Toggle #223325

    Hi netinfoplc!

    Please try to insert this code into the quick css field

    
    .toggle_content {
    overflow: scroll;
    }
    

    Best regards,
    Peter

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

    Hi!

    Versuche einmal die “Javascript Minify” Option zu deaktivieren. Ich vermute, dass W3TC die Scripts so komprimiert, das IE8 diese nicht mehr richtig ausführen kann und dann wirkt sich dies auf die gesamte Seite aus. Wenn dies dein Problem behebt versuche vielleicht auf den “manuellen Modus” umzuschalten und inkludiere die Skripts manuell – dann kann man bestimmte Skripts auslassen, welche nicht komprimiert werden dürfen.

    Cheers!
    Peter

    in reply to: Breite des Containers ändern (Theme: Enfold) #223318

    Hi!

    Wenn du die Breite im Child theme anpassen möchtest füge folgenden Code am Ende der Child Theme functions.php ein:

    
    add_action('init','avia_child_theme_setup');
    function avia_child_theme_setup(){
    global $avia_config;
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    

    Dieser Code überschreibt die Werte in der $avia_config Variabel, sobald das parent theme geladen wurde.

    Regards,
    Peter

    in reply to: portfolio-item Name #223317
    This reply has been marked as private.
    in reply to: Avia.js modification in child theme #223312

    Hey!

    No, the child theme will remove all PrettyPhoto references and you can use it to implement a custom lightbox script.

    Best regards,
    Peter

    in reply to: How can I install Enfold Theme into WordPress? #223311

    Hey!

    You’re welcome :)

    Regards,
    Peter

    in reply to: Masonry & Blog Single Author Full Width #223307

    Hey!

    You’re welcome :)

    Best regards,
    Peter

    in reply to: Add Text Information to Header Area #223306

    Hi!

    In header.php replace

    
    echo $extraClose;
    

    with

    
    echo $extraClose;
    echo "<div class='custom-header-text'>your text goes here</div>";
    

    and replace “your text goes here” with your custom text. Some additional styling might be required – if you need help with it pleasee post a link to the website.

    Cheers!
    Peter

    in reply to: Fullwidth Masonry + Fullwidth easy slider = layout problem #223303

    Hi!

    I reported it to Kriesi. Thanks for the notice.

    Regards,
    Peter

    in reply to: Logo Rendering Small in Firefox #223302

    Hey crealities!

    You can try to insert this code at the very bottom of functions.php

    
    add_filter('body_class','avia_remove_resize_function');
    function avia_remove_resize_function($classes)
    {
        $classes[] = 'avia_deactivate_menu_resize';
        return $classes;
    }
    

    If it doesn’t help please post a link to your website.

    Cheers!
    Peter

    in reply to: Parse error when installing #223290

    Hey!

    Glad it works now.

    Regards,
    Peter

    in reply to: [bug] contact form #223289

    Hey ShortieD!

    Please create us an admin account and post a link to the website.

    Cheers!
    Peter

    in reply to: Masonry galery hat nicht die volle Breite! #223286

    Hi speedhajker!

    Bitte versuche die Masonry Gallery aus dem 1/1 Layout Elemeent zu nehmen. Eigentlich sollte folgendes Layout funktionieren:

    Text-Block
    Masonry Galerie (voller Breite)
    Textblock

    und das 1/1 Element wird gar nicht benötigt.

    Regards,
    Peter

    in reply to: bilingual site setup #223284

    Hi Munford!

    Please try to deactivate all third party plugins (except WPML) and check if the portfolio categories start to work. If yes activate them one by one to find the culprit. I know that a few plugins (i.e. the Mailchimp plugin) break the WPML queries on the admin page and then the category selector won’t work.

    Best regards,
    Peter

    in reply to: Inconsistent main menu and sub menu on-states #223283

    Hi!

    Yes, I think a link to your website will help us to understand the problem. You can post the links to your website as “private reply”. Then only the forum moderators and administrators can view them and all other users + search engines can’t read them because they can’t access your post.

    Best regards,
    Peter

    in reply to: How can I install Enfold Theme into WordPress? #223282

    Hey dogukansara!

    Please see https://vimeo.com/64927356

    Regards,
    Peter

Viewing 30 posts - 5,131 through 5,160 (of 9,352 total)