Forum Replies Created
-
AuthorPosts
-
October 9, 2013 at 7:42 am in reply to: Installed wp and enfold theme and will not move from wp-admin. #172895
Hi!
Please try to increase the allocated memory to 128M by editing wp-config.php: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
PeterHello!
Yes, we use the standard get_adjacent_post() function which is quite limited at the moment. However they plan to improve it with wp3.8 ( http://core.trac.wordpress.org/ticket/17807 ).
Cheers!
PeterHello!
I think this issue is related to the plugin I created for you because the grid seems to use a custom post type and not the standard portfolio post type. I’ll send you the updated plugin today.
Cheers!
PeterHi!
Nearly all Kriesi themes (including Enfold with the “boxed layout”) work with following settings
Z-index value of background layer: 2 ID or class of the content container/wrapper: #wrap_all Z-index value of content layer: 5 Position of the content container/wrapper: relative
Tbh it depends on the project. Personally I’d recommend Enfold because it’s very flexible and you can use it for every project (photography, blog, portfolio, ecommerce, etc.) but on the other hand Flashlight is the perfect theme for photographers and if the client is happy with the default layout/features you can use it without modifying the theme files and you don’t need to use a third party plugin for the bg slider.
Regards,
PeterHey formateins!
1) You can use following filter code to sort all items alphabetically:
function custom_post_grid_query( $query, $params ) { $query['orderby'] = 'title'; $query['order'] = 'ASC'; return $query; } add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);
If you want to use additional query parameters you just need to store them in the $query array. You can also use this hook to query the entries in a certain order if the default order parameters do not fulfill your requirements.
2) If you want to sort the items manually I’d recommend to use this plugin: http://wordpress.org/plugins/post-types-order/ – it adds a drag’n’drop sorting feature to the admin panel.
Regards,
PeterHey frankwelschlehmann!
Yes, personally I’d recommend to use a background image plugin like: http://wordpress.org/plugins/background-manager/ or http://wordpress.org/plugins/wp-backgrounds-lite/ (note – I’m the plugin author). However some advanced customization may be required if you want change the current theme styling to a semi transparent styling with semi transparent content containers, etc. too.
Cheers!
PeterHi wvanderzee!
Please try to insert following code into the quick css field to fix the issue
@media only screen and (max-width: 989px) { #mobile-advanced, .mobile_active.mobile_menu_tablet #advanced_menu_toggle{display:block;} .mobile_active #advanced_menu_toggle{display: none;} } @media only screen and (max-width: 767px) { .mobile_active #advanced_menu_toggle{display: block;} }
Regards,
PeterHello!
Please try following code instead
add_filter('avf_portfolio_sort_first_label','avia_change_label', 10, 2); function avia_change_label($all, $params) { $all = "Name of your label"; return $all; }
and replace “Name of your label” with your custom text.
Cheers!
PeterHello!
Please make sure that the /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php file exists on your server. The function is defined in this php file.
Regards,
PeterHello!
I can’t test the code on an ipad/iphone, etc. but you can try it – insert following code into the quick css field
#commentform { clear: both; }
I think something forces the comments to float to the right and the clear:both attribute will prevent the comment form floating.
Cheers!
PeterHi gmmediadienste!
Du kannst den Icon Shortcode nützen. Einfach im “Default Editor” auf das “Zauberstab” Icon klicken und dann das “Icon” Element aus der Liste auswählen. Dann das entsprechende Icon auswählen, die Optionen anpassen und in den Texteditor einfügen. Nun kann man diesen Shortcode kopieren und entweder in ein Textwidget einfügen oder (wenn du diesen direkt im HTML Code anzeigen möchtest) mit
<?php echo do_shortcode("MEIN SHORTCODE"); ?>
einbinden. Statt MEIN SHORTCODE füge aber deinen Icon Shortcode ein.
Best regards,
PeterHi CarvedBlock!
Yes, Kriesi hides the code of the “Advanced Layout Builder” when the user switches to the default editor because we want to avoid that inexperienced users manipulate the template builder code directly. If you want to access/edit the template builder source code you can use the “debug mode” which will display the plain source code underneath the visual composer. This post: https://kriesi.at/support/topic/after-building-with-avia-no-content-visibleeditable-on-the-standard-editor/#post-171445 shows you how to activate the debug mode.
Cheers!
PeterHey!
If you’re using the default blog layout you can use the read more quicktag: http://en.support.wordpress.com/splitting-content/more-tag/ to split the content into an excerpt + full text version or you can modify the theme code a bit to use the “excerpt” text instead. Open up loop-index.php and replace
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";
with
$blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content"; if(!is_single()) $blog_content = "excerpt_read_more";
– WP will then use the get_the_excerpt() function to retrieve the excerpt and will truncate the post content automatically if no excerpt text is set.
Best regards,
PeterOctober 8, 2013 at 9:49 am in reply to: Google Maps in true Fullwidth and without Mouse Wheel interaction #172120Hi Jens!
Which google maps plugin are you using? If you use the http://www.wpgmaps.com/ plugin you can deactivate it on the options page ( Maps > Settings and check the “Disable Mouse Dragging”). If you’re using the default widget you need to modify the theme code: https://kriesi.at/support/topic/full-width-google-maps/#post-135567
To add a fullwidth map to your website you need to stretch a section element to 100%. Use the section id or class (see: https://kriesi.at/support/topic/add-a-anker-shortcode-template-to-avia-layout-builder/ ) to stretch the section with css code – i.e. use following css code
.mycustomsection{ width: 100%; }
Then add a texblock element into the section and paste your shortcode into the texblock editor field.
Regards,
PeterOctober 8, 2013 at 9:35 am in reply to: Product Slider & Product Grid with Yoast causes Layout Builder to not load #172117Hi vahlchiro!
Please try to increase the allocated memory to 128M by editing wp-config.php: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
Cheers!
PeterHi!
2) No, I’m sorry. These “css errors” are actually no errors but the code is required to maintain the cross browser compatibility for webkit browser users. The browser specific prefixes (like -webkit, -moz, etc.) are not part of the CSS3 specifications and thus the w3c validator will mark them as “errors” although the code makes sense and works perfectly fine. Removing the code can cause styling issues for some users and that’s why we think it’s better to use browser prefixes even if w3c does not accept them. In addition I’m not sure who told you that 100% valid css code will improve your seo but you’re wasting your time – search engines do not care about these browser prefixes at all. Even invalid html code can make sense – i.e. if you add semantic markup to the code which is not part of the html5 standard and which helps the search engines to parse your content. See also: http://yoast.com/w3c-validation-seo/
Regards,
PeterHello mgould!
Please excuse the late reply. It didn’t show up in my support queue because another support staff member closed it. I answered the thread here: https://kriesi.at/support/topic/ie-8-issues-2/
I’ll close this thread now. Please post your reply(ies) here: https://kriesi.at/support/topic/ie-8-issues-2/
Best regards,
PeterHey!
Have a look at: https://kriesi.at/support/topic/enfold-doesnt-work-in-internet-explorer/#post-170437
Cheers!
PeterHi!
Because we don’t want to be responsible if the freelancer fails and we want to avoid that someone thinks we offer an “official customization service”.
From time to time I can help out with customization work but right now I’m too busy because I already work on some customization projects and I need to work on the Enfold 2.4 update :)
Best regards,
PeterOctober 7, 2013 at 12:34 pm in reply to: Video (Vimeo,Youtube) in Ajax Portfolio not working ? #171570Hey!
Ich kann dies jetzt auf deiner Website nicht testen, da anscheind stattdessen ein Vimeo Iframe eingebunden ist, der aber auch einwandfrei funtioniert: Bei Vimeo wird kein Flash Object angezeigt, aber man kann sich den Iframe Source Code ansehen. Bei mir funktioniert wie gesagt Youtube, selbsgehostete Filme mit dem mediaelementjs html5 player, Vimeo und Soundcloud. Ich würde einmal probieren, ob Youtube auf anderen PCs dargestellt wird – wenn ja, liegt es vielleicht an einer Browser Extension oder Browser Einstellung, welche Youtube auf deinem PC/Mac blockiert. Ich werde einmal Kriesi’s Feedback abwarten und wenn er die Fehler reproduzieren kann, werden wir dieses Problem natürlich kostenlos beheben. Ansonsten muss man sich ansehen warum es nicht funktioniert und ggf eine andere technischen Lösung implementieren.
Cheers!
PeterHi!
Sure – I replaced
if(settings && settings.data.search('action=save-widget') != -1 && settings.data.search('id_base=' + widget_id_base) != -1)
with
if(typeof(settings.data) !== 'undefined' && settings.data.search('action=save-widget') != -1 && settings.data.search('id_base=' + widget_id_base) != -1)
Regards,
PeterOctober 7, 2013 at 11:11 am in reply to: Video (Vimeo,Youtube) in Ajax Portfolio not working ? #171541Hey!
Keine Ahnung warum es bei dir nicht geht. Habe das Portfolio nun getestet und der Youtube Player wird über die gesamte Breite angezeigt und spielt das Video ab: http://www.screenr.com/ugLH
Da die Youtube Videos direkt von Youtube eingebettet werden, benötigt man keine spezielle Funktion um diese im Ajax Content anzuzeigen. Der Player, samt JS Code, Video, etc. wird in einem Iframe geladen und der User sieht eigentlich nur den Inhalt des Iframes.
Ich werde den Post aber für Kriesi markieren – vielleicht kann er den Fehler reproduzieren.
Cheers!
PeterHello chooseone!
1) Open up /wp-content/themes/enfold/includes/loop-index.php and replace
the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
with
$posttags = get_the_tags(); $count=0; $tagoutput = ''; if ($posttags) { $tagoutput = '<strong>'.__('Tags:','avia_framework').'</strong><span> '; foreach($posttags as $tag) { $count++; if ($count <= 3) { $tagoutput .= $tag -> name . ', '; } } } $tagoutput = (substr($tagoutput,-2) == ', ') ? substr($tagoutput, 0, -2) : $tagoutput; echo $tagoutput ;
2) Yes :)
Regards,
PeterHey!
Yes this should be possible. Open up /wp-content/themes/enfold/includes/loop-index.php and replace
$current_post['slider'] = get_the_post_thumbnail($the_id, $size);
with
$current_post['slider'] = get_the_post_thumbnail($the_id, 'full', array('class' => "attachment"));
Cheers!
PeterHi!
Please create an admin account and post the login credentials as “private reply”. We’ll activate the plugin and check the html code to find the issue.
Best regards,
PeterOctober 7, 2013 at 10:06 am in reply to: [SOLVED] Since Update 2.3.1: Gravatars in the comments not showing with Firefox #171520Hi!
Our BBPress 2 forum does not support such tags at the moment (solved, not solved, etc.) but we’ll close all solved threads immediately to avoid “thread hijacking” :)
Regards,
PeterHi!
Yes, it’s indeed not easily possible to use the shortcode with these elements. The only workaround I can imagine is to use the “Magic wand” shortcode generator (standard text editor) to generate the icon list shortcode and then you can copy/paste the shortcode into the text editor field of the textblock.
Best regards,
PeterHello!
Yes, I received the mail but I couldn’t find the cause of the problem. I forwarded the login data to Kriesi and I’m waiting for his feedback. In the meantime please update the theme to v2.3.1 – the theme update comes with the new LayerSlider version (4.6.4) and maybe the updated slider script will fix your issue too.
Best regards,
PeterHi!
I fixed it. I had to change a code line in framework/js/conditional_load/avia_google_maps_widget.js and this fix will be included in the next update (Enfold 2.4).
Regards,
PeterHey!
Personally I can’t reproduce the issue on a Win8 PC with IE10/9 or Chrome/Firefox: http://www.screenr.com/qhLH
We’ll wait for Kriesu’s feedback because he can test the website on a Mac. Ask your client to clear all browser caches – maybe he didn’t clear them and his browser uses cached files/data to display the website.Cheers!
Peter -
AuthorPosts