Forum Replies Created
-
AuthorPosts
-
Hi!
Glad you found the answer :)
Regards,
PeterHey!
Try to add following code into the qick css field
.header_color .header_bg, .header_color{ background-color: transparent; }
Cheers!
PeterNovember 1, 2013 at 11:00 am in reply to: slide's images vanished after upgrading to last version #183312Hey!
Yes, you can use the “blank template” which hides the menu and footer areas. Or you can hide the menu with the “conditional menu” option. It helps you to show/hide certain menu items on certain pages. See: https://kriesi.at/support/topic/enfold-conditional-menu/
Best regards,
PeterHi!
Please use following code (instead of Ismaels code) to fix the issues
#top .main_menu .menu li.facebook { display: block; width: 32px; background: url(https://www.petersandinfoto.se/wp-content/uploads/2013/11/facebook32.png) no-repeat 0 27px; text-indent: 9999px; }
Regards,
PeterHi!
Great :)
Regards,
PeterHi!
Glad you solved it :)
Cheers!
PeterHey Jon2323!
See http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
Regards,
PeterHey!
Please create us an admin account and post the login credentials as private reply.
Best regards,
PeterHi!
Glad you found a solution :)
Best regards,
PeterOctober 31, 2013 at 9:37 am in reply to: Enfold and Windows 8 / 8.1 (as well as other Kriesi themes) #182898Hi dmaca!
I marked this thread for Kriesi (for reference http://msdn.microsoft.com/en-us/library/ie/dn320426(v=vs.85).aspx ). Tbh I think this doesn’t make sense because the user can bookmark your site with and without the xml file.
Best regards,
PeterHi!
Tbh I also couldn’t find the reason why the cloud zoom plugin doesn’t work properly. You may want to try an alternative plugin: Magic Zoom which should work flawlessly with our themes.
Regards,
PeterHi!
Yes, I didn’t notice that the filter call was invalid. I changed my code and it should work now.
Regards,
PeterHi SRD!
You need to add some custom widgets into the Footer – column1, Footer – column2 and Footer – column3 widget areas. Enfold will display some “dummy content” if these widget areas are empty.
Regards,
PeterHi yukanl!
You can try a plugin like: http://wordpress.org/plugins/wp-custom-admin-bar/ which helps you to modify the styling.
Regards,
PeterHey!
Please remove the pretty photo plugin from your server – you don’t need it because the theme already includes the lightbox script.
Your logo modification breaks our javascript. Please open up enfold/js/avia.js and replace
if(navigator.appVersion.indexOf("MSIE 7.") == -1) avia_resize_menu();
with
/* if(navigator.appVersion.indexOf("MSIE 7.") == -1) avia_resize_menu(); */
Cheers!
PeterHey!
Great, glad it worked :)
Best regards,
PeterHi!
Ok, please let us know if CF7 works for you.
Cheers!
PeterHi!
Great, glad I could help you :)
Best regards,
PeterHey brelax!
No, this would require a heavy theme code customization. If you really need such a feature you can try to hire the guys from werkpress ( http://kriesi.at/contact/customization ).
Cheers!
PeterHey!
@claudernest17 – yes, but if you use the “Default Editor” WordPress will use the default page.php template. If you modify it (like described here: https://kriesi.at/support/topic/enfold-comments-on-pages/ ) WordPress should show the comment form at the end of the page after the page content. If you activate the “Advanced Layout” editor WordPress will not use the pagephp template and the comments won’t work at all.
@grpetz – we plan to implement it with one of the next theme updates but we didn’t look into it yet. In fact we can’t even promise this feature because we may stumble over technical problems which we can’t solve.Best regards,
PeterHey!
Ok, werde es für Kriesi markieren, dass er bescheid weiß :)
Regards,
PeterHey!
masonry_gallery.php just extends masonry_entries.php and you need to modify masonry_entries.php if you want to modify the gallery output. If you want to show the title of the image in the lightbox use the code I posted in my last answer and replace
if($post_type == 'attachment' && strpos($html_tags[0], 'a href=') !== false) { $linktitle = 'title="'.esc_attr($description).'"'; } else if(strpos($html_tags[0], 'a href=') !== false) { $linktitle = 'title="'.esc_attr($the_title).'"'; }
with
if($post_type == 'attachment' && strpos($html_tags[0], 'a href=') !== false) { $title = esc_attr(get_the_title($thumb_ID)); $linktitle = 'title="'.esc_attr($title).'"'; } else if(strpos($html_tags[0], 'a href=') !== false) { $linktitle = 'title="'.esc_attr($the_title).'"'; }
By default Enfold will display the alternative text in the lightbox (instead of the image title) because of consistency reasons.
Regards,
PeterOctober 31, 2013 at 8:40 am in reply to: Warning message: extract() expects parameter 1 to be array, null given #182862Hey Alejandro!
We’ll look into it. Please try following quick fix. Open up enfold/css/dynamic-css.php and replace
extract($color_set); extract($main_color); extract($styles);
with
if(empty($color_set) || empty($main_color) || empty($styles)) return; extract($color_set); extract($main_color); extract($styles);
Cheers!
PeterOctober 31, 2013 at 8:34 am in reply to: Updated to WP 3.7 and Enfold 2.4 and now Portfolio Grids are Broken #182861Hey!
Did you fix the issue? The portfolio grid links work for me just fine now: http://www.screenr.com/TnbH
However I noticed that the server sometimes responses very slow. As soon as I load the page one time it’s cached in the browser and loads fast afterwards. I.e. if I open http://www.taylorezell.com/photos/africa-gallery/ directly the browser will cache the website content and as soon as I access this page from http://www.taylorezell.com/photos/ it will load very fast, otherwise it takes probably a minute or so until the server sends the data. I’m not sure what causes the issue – maybe your hoster can provide a php error log which helps us to find the culprit.Regards,
PeterHi StuWeTueHo!
You can use following code
add_action( 'woocommerce_after_shop_loop_item_title', 'avia_add_product_cat', 1); function avia_add_product_cat() { global $product; $product_cats = wp_get_post_terms($product->id, 'product_cat'); $count = count($product_cats); foreach($product_cats as $key => $cat) { echo $cat->name; if($key < ($count-1)) { echo ', '; } else { echo '<br/>'; } } }
Insert it at the bottom of functions.php.
Cheers!
PeterHey!
Glad you solved the issue :)
Cheers!
PeterHi wesdacar!
See http://stackoverflow.com/questions/11487427/is-there-any-font-smoothing-in-google-chrome – short answer: the google chrome devs are working on it and improve the font face support from version to version but it’s still not perfect.
Regards,
PeterHi Ignazio!
No, at the moment it’s not easily possible to use the builder as a standalone plugin. We plan to release the builder as a plugin in the future but we have no exact plans yet.
Best regards,
PeterHey!
They released v4.6.5 today and I’ll ask Kriesi to add it to the next theme update.
Best regards,
PeterHi!
Also Kriesi modifiziert die Standard WooCommerce Templates in /wp-content/themes/enfold/config-woocommerce/config.php. Er verwendet hierfür bestehende Hooks um die Template Bausteine in Enfold zu integrieren.
Regards,
Peter -
AuthorPosts