Forum Replies Created
-
AuthorPosts
-
Hey Blacksprout!
You can use the form here: http://kriesi.at/contact/customization to request a quote from werkpress or try to find a developer here: http://www.microlancer.com/
Regards,
PeterJanuary 29, 2014 at 2:57 pm in reply to: BBPress page for a topic looks different from the demo #216374Hi!
Ok, please let us know if it doesn’t help.
Regards,
PeterHi!
1) Ok, anscheinend hat Kriesi die Option versteckt (weil wir diese noch nicht extensiv getestet haben). Ich habe jetzt am Anfang von functions.php diesen Code eingefügt:
add_theme_support('avia_enable_export');
und jetzt erscheint der Button.
2) KA was da nicht funktioniert hat. Ich habe den Code 1:1 in die functions.php (am Ende) eingefügt und er funktioniert. Ich habe auch eine Zeile in der footer.php anpassen müssen, aber das ist mit dem nächsten Update nicht mehr notwendig, da die Copyright Zeile dann standardmäßig shortcodes unterstützt.
Best regards,
PeterHey 12Switch!
Please create us an admin account and post the login credentials as private reply – we’ll look into it.
Cheers!
PeterJanuary 29, 2014 at 12:28 pm in reply to: Bug: No Post-Intro (via more-tag) ist shown when using AVIA Layout Builder #216337Hi!
I think I missed a bracket at the end of the get_the_content() function. I updated the code – please try it again.
Cheers!
PeterHi!
Please try this plugin: http://wordpress.org/plugins/insert-html-snippet/ – I know some users already use it with Enfold and it works fine for them.
Cheers!
PeterJanuary 29, 2014 at 11:07 am in reply to: Woocommerce Email Enquiry & Cart Options Extension #216309This reply has been marked as private.Hey netztaucher!
Wir haben mit diesem Plugin leider keine Erfahrung. Ich habe mir kurz die FAQ zu dem Plugin durchgesehen ( http://wordpress.org/plugins/social/faq/ ) und anscheinend verwendet dieses Plugin eigene Templates für die Kommentare, welche erst implementiert werden müssen. Ich würde daher versuchen andere Plugins zu installieren (zB habe ich dieses gefunden: http://wordpress.org/plugins/social-comments/ ) oder ihr könnt auch einen Entwickler mit der Implementierung der Plugin/Kommentar-Templates beauftragen.
Best regards,
PeterJanuary 29, 2014 at 10:44 am in reply to: Bug: No Post-Intro (via more-tag) ist shown when using AVIA Layout Builder #216295Hi simpson199!
Please try to insert following code into the functions.php file
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { global $avia_config; global $more; $more_bak = $more; if(!is_single() && $avia_config['blog_content'] == 'excerpt_read_more') { $more = 0; $current_post['content'] = get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> →</span>'); $more = $more_bak; } return $current_post; }
– it should pull the excerpt from the post content and truncate it with the “more” quicktag.
Cheers!
PeterHey!
Great :)
Best regards,
PeterHi Unionimedia!
Please try to increase the allocated php mermory to 128M. Please see http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/
Best regards,
PeterHey!
Glad Josue could help you :)
Regards,
PeterHi!
I found the problem. Your server sends the font file with the header/type “application/octet-stream” and the browser won’t interpret it as font. Please insert following code into the htaccess file located on your server
AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType application/font-woff .woff
for more information see: http://stackoverflow.com/questions/15521130/google-warning-resource-interpreted-as-font-but-transferred-with-mime-type-appl
Regards,
PeterHi!
Please try to select another thumbnail size in the “Gallery Big Preview Image Size” dropdown: http://www.clipular.com/c/4911045944541184.png?k=YJTlOicwuUGUBqt9y02TRgwqKMY
Regards,
PeterHi!
Unfortunately it makes no sense to overwrite the shortcode.js file with a child theme because we update this file very often. So if you want to solve this issue with a child theme you must choose the less invasive approach :)
You can try following css code – it will just affect the big image
.portfolio-preview-image .avia-gallery a.avia-gallery-big{ pointer-events: none; }
Regards,
PeterJanuary 29, 2014 at 10:14 am in reply to: Color section with background-image and transparent pattern overlay #216280Hey gentle_md!
With CSS3: http://www.css3.info/preview/multiple-backgrounds/ you can add multiple background images to the same element. Basically the code must look like
#example1 { background-image: url(sheep.png), url(betweengrassandsky.png); background-size: cover; background-repeat: no-repeat; }
and instead of “example1” insert your section id and replace “sheep.png” and “betweengrassandsky.png” with the urls to your images.
Regards,
PeterJanuary 29, 2014 at 10:08 am in reply to: Google AdWords Tracking after Form has been submitted #216279Hi!
Yes but the default theme contact form does not support such a feature. You can use an advanced contact form plugin like http://wordpress.org/plugins/contact-form-7/ and follow the tutorial here: http://wordpress.org/support/topic/contact-form-7-adwords-conversion-tracking?replies=4 to implement the conversion tracking.
Cheers!
PeterJanuary 29, 2014 at 9:57 am in reply to: Replace toggle icon with another entypo-fontello font OR use a png #216274Hi!
Ah – yes. I thought you mean the toggle/accordion shortcode symbol :)
If you want to replace the menu toggle icon open up functionsphp and search for:
'mobile_menu' => array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
Replace ue8a5 with your char code and change the font family if necessary (i.e. if you want to use a icon from a custom fontello.com icon set).
Cheers!
PeterJanuary 29, 2014 at 9:52 am in reply to: BBPress page for a topic looks different from the demo #216272Hey DavidMiles!
Please deactivate all plugins and check if a plugin causes the issue. I couldn’t find any obvious flaw in the theme stylesheets which could cause this issue.
Cheers!
PeterHey Jim!
Yes, unfortunately this is a wordpress limitation. See https://kriesi.at/support/topic/toppanel-plugin-messed-up-widgets-widget-areas-in-enfold/
Cheers!
PeterHi traditionalteak!
Maybe this post will help you: https://kriesi.at/support/topic/wpml-enfold-theme-media-library-missing/#post-132843
Cheers!
PeterHey!
It works now. I added a 1px whitespace after the masonry grid and it seems to fix the issue. I’ll ook into it if this is a bug in our theme code and if yes we’ll fix it with the next update.
Regards,
PeterHey!
You need to change your server configuration – see https://kriesi.at/support/topic/part-of-menu-gone/#post-207973
Unfortunately there’s nothing else I can do to help you.Best regards,
PeterHi!
Wenn du einen Shortcode für das derzeigige Jahr benötigst, verwende folgenden Code und füge diesen am Ende der functions.php Datei ein
function avia_year_shortcode() { $year = date('Y'); return $year; } add_shortcode('av_current_year', 'avia_year_shortcode');
– diesen shortcode kannst du im Fußbereich verwenden und in den Text einbauen:
©2000 – [av_current_year]
Cheers!
PeterHi!
You can add a margin to the read more link – add following css code to the quick css field and increase/decrease the margin value if necessary:
.slide-entry-excerpt .read-more-link{ margin-top: 10px; }
Regards,
PeterHi!
Please try to insert following code at the 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; }
It will deactivate the js function which re-sizes the logo if the menu & header height increases/decreases and this should fix your issue.
Regards,
PeterHey studio-dlhastings!
If you need just a simple tooltip I suggest to use the abbreviation html5 tag: http://www.w3schools.com/tags/tag_abbr.asp
If you need a more advanced tooltip I suggest to try a plugin like: http://wordpress.org/plugins/simple-tooltips/ or http://wordpress.org/plugins/wordpress-tooltips/
Cheers!
PeterHey!
or maybe when you refer to current language you mean default language?
No, I mean the current selected language which is visible in the dropdown/language switcher in the admin bar.
Best regards,
PeterJanuary 28, 2014 at 2:16 pm in reply to: Advanced Layout Editor crashes with "CSS & Javascript Toolbox" since 2.5 #215765Hi!
Thank you for the notice :)
Best regards,
PeterHi connepon!
No, unfortunately there was no solution. However now I contacted the plugin developers and asked them if they’re interested in a cooperation to fix the issue.
Regards,
Peter -
AuthorPosts