Forum Replies Created
-
AuthorPosts
-
Hi!
Thank you for the feedback comitzuu.
Best regards,
PeterHey!
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!
PeterHey 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,
PeterHey 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!
PeterHey!
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,
PeterHey 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,
PeterFebruary 14, 2014 at 9:11 am in reply to: Preview image link to lightbox & loading images from nextgen gallery #223843Hey 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!
PeterThis reply has been marked as private.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!
PeterHi 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,
PeterHi 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,
PeterHey!
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,
PeterHi Jasmer!
I answered https://kriesi.at/support/topic/head-with-social-media-and-large-logo/page/2/
Best regards,
PeterHi!
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!
PeterHi netinfoplc!
Please try to insert this code into the quick css field
.toggle_content { overflow: scroll; }
Best regards,
PeterHi!
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!
PeterHi!
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,
PeterThis reply has been marked as private.Hey!
No, the child theme will remove all PrettyPhoto references and you can use it to implement a custom lightbox script.
Best regards,
PeterHey!
You’re welcome :)
Regards,
PeterHey!
You’re welcome :)
Best regards,
PeterHi!
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!
PeterFebruary 13, 2014 at 10:04 am in reply to: Fullwidth Masonry + Fullwidth easy slider = layout problem #223303Hi!
I reported it to Kriesi. Thanks for the notice.
Regards,
PeterHey 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!
PeterHey!
Glad it works now.
Regards,
PeterHey ShortieD!
Please create us an admin account and post a link to the website.
Cheers!
PeterHi 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)
Textblockund das 1/1 Element wird gar nicht benötigt.
Regards,
PeterHi 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,
PeterHi!
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 -
AuthorPosts