Forum Replies Created
-
AuthorPosts
-
Hey Finlando!
Open up wp-content/themes/enfold/includes/loop-index.php and replace this line
echo '<span class="blog-author minor-meta">'.__('by','avia_framework')." ";with
echo '<span class="blog-author minor-meta">';Regards,
PeterHey!
Ok, falls das Update auf 2.8.1 nicht hilft, melde dich bitte.
Cheers!
PeterHi!
@damian24 – I fixed it by moving your script code into a “code block” element. Please do not use a textblock for javascript code.Regards,
PeterJune 26, 2014 at 2:36 pm in reply to: Very low performance & dashboard theme issue "catchable fatal error" #284081Hey!
You must decrease the image file sizes – i.e. this image has a file size of over 1.1mb: http://www.oldmencrew.com/wp-content/uploads/2014/04/starter-banner.png
I recommend a tool like: http://www.obviousidea.com/de/windows-software/light-image-resizer/ or http://www.smushit.com/ysmush.it/
Regards,
PeterHi tomkellersohn!
Bite aktualisiere das Theme. Die aktuellste Version ist 1.7.1 und auf deinem Server wird 1.1 verwendet.
Best regards,
PeterHey!
I’m not sure if this will fix the issue but you can try to install the beta package (log in, click on “Your Account” > “Downloads” and scroll down to the “CMS Beta Package” to download it).
Best regards,
PeterJune 26, 2014 at 10:46 am in reply to: Woocommerce now showing "pa_attributename" for all my variations and attributes #283979Hey!
Maybe a cache (browser or server side) caused the issue.
Regards,
PeterHey rseybold!
I’m not aware of a similar bug report and I doubt it’s a theme issue. The only way to find it out though is to switch to the TwentyThirteen theme and to check if the theme switch changes anything. You can also try to deactivate all other third party plugins – maybe a plugin conflicts with WPML.
Cheers!
PeterHey!
You can use a filter to modify the default wordpress password form – I posted a sample code here: https://kriesi.at/support/topic/edit-text-on-password-protected-page-2/#post-250952 . If you need help creating a custom password form (with your logo, etc.) please hire a freelancer who can probably create a custom form within 1 or 2 working hours.
Best regards,
PeterJune 26, 2014 at 9:24 am in reply to: prettyphoto product lightbox doesn't show gallery overlay #283956Hey Lorenzo!
Open up 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,
PeterHi Micheal0424!
I’m not sure if this is a theme issue. Please switch to the default TwentyThirteen theme and check if the issue persists. If yes it’s a bbpress bug and you should report it to the plugin developers (here http://bbpress.org/forums/ ).
The only hint I can give you at this point is to deactivate all other plugins – maybe a plugin conflicts with bbpress – and to check the forum status (forum is not set to private, etc.).
Best regards,
PeterHey!
Ihr könnt Plugins wie Supercache: https://wordpress.org/plugins/wp-super-cache/ und bwp: https://wordpress.org/plugins/bwp-minify/ installieren. Diese können die Performance verbessern. Insgesamt betrachtet hängt aber sehr viel vom Server ab – wenn man Geld in einen guten Hoster investiert bekommt man auch entsprechende Resultate. Wenn man günstig für ein paar Euro pro Monat auf einem shared Server seine Website betreibt, dann sind dementsprechend auch die längeren Lade- und Seitengenerierungszeiten zu akzeptieren.
Cheers!
PeterHey!
The problem is that the contact form shortcode is currently not compatible with the ajax preview feature. I reported the issue to Kriesi and we’ll see if we :
1) remove the contact form option from the shortcode generator of the ajax preview
or
2) make the ajax contact form compatible with the ajax portfolio feature.We didn’t expect that someone would try to use the contact form with the ajax preview and tbh I’m not aware of another website with a similar setup.
Regarding the Formidable or Gravity Forms, can I still have the Ajax feature?
Yes, good point – probably not. The main problem is that your solution (ajax contact form as part of ajax loaded content) requires special integration (event bindings, etc.) which is not possible without customizing the theme and plugin files. For now the only sensible solution would be to link the portfolio grid to the single portfolio entries. There you can insert the theme contact form (even with the template builder) or the Formidable or Gravity Forms. If you want to use ajax we need to wait for Kriesi’s decision whether he wants to support ajax contact forms within ajax content or not.
Regards,
PeterJune 26, 2014 at 8:51 am in reply to: Problem mit Masonry – Portfolioeinträge öffnet es nicht in der Lightbox #283948Hi!
Ich habe mir die Sache nun angesehen und der “Default” Wert bezieht sich nicht auf das “Masonry Grid” Element (welches ja auch für Artikel oder Produkte verwendet werden kann), sonder auf das “Portfolio” Element. Die “Default” Einstellung hat daher beim Masonry Grid grundsätzlich keine Bedeutung. Es gibt daher zwei Lösungsansätze:
1) Man fügt in das Custom Link Feld die Bildurl ein.
2) Man kann mit diesem Code:
add_filter('avf_masonry_loop_prepare','avia_change_default_link', 10, 2); function avia_change_default_link($loop, $entries) { foreach($entries->posts as $key => $entry) { if($entry->post_type == "portfolio") { $id = $entry->ID; if(!post_password_required($id)) { $custom_link = get_post_meta($id ,'_portfolio_custom_link', true) != "" ? get_post_meta($id ,'_portfolio_custom_link_url', true) : false; if($custom_link) { $loop[$key]['url'] = $custom_link; } else { $url = wp_get_attachment_url(get_post_thumbnail_id($id)); if($url) $loop[$key]['url'] = $url; } } } } return $loop; }die Bild-URL als Standard-URL setzen. Der Code kann in die child theme functions.php eingefügt werden (dann ist er auch nach einer Aktualisierung des Enfold Themes noch aktiv), oder (falls kein Child Theme verwendet wird) fge diesen Code in enfold/functions.php ein.
Regards,
PeterHi!
Ok, erklärt natürlich warum kein Thumbnail generiert wurde ;)
Best regards,
PeterHi!
Thanks for sharing the instructions!
Cheers!
PeterHey!
I’ll mark this thread for Kriesi (feature request). If you need a quick solution you can try a plugin like: http://tablepress.org/ which also supports responsive layouts: http://tablepress.org/extensions/responsive-tables/
Regards,
PeterHi!
Try this code:
@media only screen and (max-width: 767px){ .responsive #top.page-id-2980 .container { margin: 0; } }It will remove the margins on the left/right and push the images to the left/right side of the viewport.
Cheers!
PeterHey!
You can increase the column width by using this css code:
#top .isotope-item.special_av_fullwidth .av_table_col.grid-content { width: 30%; }Replace 30 with any value between 1 and 100. If you want to set a different width for mobile devices you can also wrap it into the a media query like:
@media only screen and (max-width: 767px){ #top .isotope-item.special_av_fullwidth .av_table_col.grid-content { width: 100%; } #top .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image{ width: 100%; display: block; } }Cheers!
PeterHey!
Which browser and OS do you use to test the website? I just tested it with IE, Chrome and Firefox on Win8 and all 3 browsers started the video without any problem: http://www.screenr.com/8tKN
Best regards,
PeterHi xpoveda!
No, unfortunately not. I checked the code and the problem is that the plugin loads the old isotope 1.5 version and we use the new 2.0 version for Enfold (which is the most recent and stable version: http://isotope.metafizzy.co/ ). Unfortunately the 1.5 version is not fully compatible with 2.0 and thus the plugin code triggers an error (i.e. it calls a method with the name ‘reLayout’ which is called ‘layout’ since 2.0). There’s no easy way to fix this. You can suggest the plugin author to update to the new isotope script version but if they don’t want to the Social Stream plugin is incompatible with Enfold 2.8.x.
Regards,
PeterHey!
You can add the “Blog” element: http://www.clipular.com/c/6096049676484608.png?k=au_R0w-43SScGpvULI0qdVgUouE to these pages and then select one or more post categories for the blog element(s). The element will then show the posts of the selected category/ies to your page(s).
Regards,
PeterHey!
Please replace this line:
$series = new WP_Query( $args );with
$series = new WP_Query( $args ); print_r($series);and check the output wordpress adds to the page which uses the template-serie.php template. Maybe you can create us an admin account?
Regards,
PeterHey!
I checked the src urls of the images and they all point to the original images (no thumbnails). There’re also no margins or paddings between the images which would enable us to resize some of the images with css. Your best bet is to edit the shrunken images with Photoshop and to re-size them if necessary (i.e. remove the transparent margin around the logo to make the content in the middle bigger). Personally I couldn’t reproduce the issue – all images were displayed with the size of 234x187px.
Regards,
PeterHi!
Es scheint so, als ob WordPress keine Thumbnail Version des Vorschaubildes generieren möchte. Bei allen anderen Bildern hier: http://stefangebhardt.com/index.php/portfolio-2/ wird die Thumbnail Version verwendet, was man daran erkennt, dass die Bilder am Ende die Bildgröße angehängt wird (zB
http://stefangebhardt.com/wp-content/uploads/2014/05/2014-05-10_18_19_09_6935_EOS-5D-Mark-III_3_DxO_HQ_pp1-710×270.jpg
anstelle von
http://stefangebhardt.com/wp-content/uploads/2014/05/2014-05-10_18_19_09_6935_EOS-5D-Mark-III_3_DxO_HQ_pp1.jpgVon diesem Bild: http://stefangebhardt.com/wp-content/uploads/2014/06/2014_06_19_19_41_25_0819_EOS-1D-X_DxO_LQ.jpg generiert WordPress kein Thumbnail (die Datei http://stefangebhardt.com/wp-content/uploads/2014/06/2014_06_19_19_41_25_0819_EOS-1D-X_DxO_LQ-710×270.jpg existiert nicht) und ich weiß leider nicht warum. Ihr könnt probieren:
1) die Datei umzubenennen und ggf den Namen zu vereinfachen und verkürzen
2) die Datei mit Photoshop, etc. anpassen und in der Größe von 710×270 hochladen.
3) Alle Plugins deaktivieren und die Datei nochmals hochladen – vielleicht verursacht ein Plugin einen Fehler und WordPress kann keine Thumbnails mehr erzeugen.Regards,
PeterHey!
Ok, then it’s a plugin bug. Please report it here: http://marketpress.de/support/forum/woocommerce-german-market/
Regards,
PeterHi Stefan_Gebhardt!
Bitte aktualisiere Enfold auf Version 2.8.1 und versuche vielleicht die Thumbnails zu regenerieren: http://wordpress.org/plugins/regenerate-thumbnails/
Regards,
PeterHi adworks!
Please insert this code into the quick css field:
.header_color .cart_dropdown .dropdown_widget li a, #top .header_color .avia_cart_buttons .button, #top .header_color .dropdown_widget .buttons .button, .header_color .cart_dropdown_first .cart_dropdown_link { color: #719430; } div .dropdown_widget .cart_list li span{ color: #719430; } #scroll-top-link:hover, #scroll-top-link{ color: #719430; }You can change the color values if necessary.
2) You can try a background plugin like: http://wordpress.org/plugins/background-manager/ or http://codecanyon.net/item/custom-backgrounds-for-wordpress/121983. I didn’t test these plugins with Enfold though and I can’t promise they’re compatible or maybe you need to customize the theme files.
Regards,
PeterHi!
No but you can use the “Make entire table scrollable” option: https://www.clipular.com/c/5825320103968768.png?k=h3AV7MuzzUCHVxuXbm5yNsfHmTg if you want to preserve the column structure.
Regards,
PeterHey AdriaWave!
The category/archive/blog pages use the read more quicktag ( http://en.support.wordpress.com/splitting-content/more-tag/ ) to separate the excerpt from the content. You can also use the “excerpt” option field on the post editor page to insert a custom excerpt text but you need to add this code to your child theme functions.php file or enfold/functions.php:
add_filter( 'post-format-standard', 'avia_category_content_filter', 15, 1); function avia_category_content_filter($current_post) { if(!is_single() && empty($current_post['post_type'])) { $current_post['content'] = get_the_excerpt(); $current_post['content'] .= '<div class="read-more-link"><a href="'.get_permalink().'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"> →</span></a></div>'; } return $current_post; }to query the excerpt from the “excerpt” field.
Cheers!
Peter -
AuthorPosts
