-
AuthorSearch Results
-
February 17, 2014 at 10:59 am #224887
In reply to: How to add new post format ?
Hi Peter,
thanks for the fast reply and the code fragment.
Could you please explain why enfold doesn’t support get_template_part() and instead uses filter. What is the advantage ?
Kind Regards,
FoxFebruary 17, 2014 at 10:53 am #224883Alright well I can confirm that the email on my Gravatar account matches with the email on my user page within the Dashboard, but the Gravatar images still don’t show up next to my posts.
Could it be a problem on Gravatar site end of things?
Ben
February 17, 2014 at 10:52 am #224882In reply to: How to add new post format ?
Hi!
Insert this code into the functions.php file:
add_filter('avf_default_icons','avia_add_custom_icon', 10, 1); function avia_add_custom_icon($icons) { $icons['status'] = array( 'font' =>'social-fontello', 'icon' => 'ue803'); return $icons; }to register a new icon. Replace the icon and font values if necessary.
Is enfold supporting get_template_part( ‘content’, get_post_format() ); ?
No, because Kriesi uses a filter to change the post format layout and does not load different templates. For all available filter see: wp-content/themes/enfold/includes/helper-post-format.php
Best regards,
PeterFebruary 17, 2014 at 10:41 am #224874Hi!
The theme does not connect to any wordpress.com or wordpress.org profiles. All user settings are stored in the local database and you can change them on the user screen (Admin Dashboard > Users > All Users and then hover over a username and click “edit”). The email address of your user (and all users who want to use their gravatar images) must match the corresponding gravatar account address(es).
Cheers!
PeterFebruary 17, 2014 at 10:36 am #224870In reply to: Entire Enfold Website translation by WPML
Hey!
Go to WPML > Taxonomy Translation – there you can translate all taxonomies including the “Tags” taxonomy. I noticed a “Synchronize Tags assignment in content” button on this page which may help you. I recommend to ask the WPML devs if they can give you some useful tips. They know their plugin better thn we do and maybe I there’s a “duplicate all content” option and I just missed it.
Cheers!
PeterFebruary 17, 2014 at 10:33 am #224867In reply to: Enfold and WPML Portfolio Item Base slug translation
Hi!
Great :)
Regards,
PeterFebruary 17, 2014 at 10:29 am #224866Hi!
Please check the theme folder. Use ftp, connect to your server and go to wp-content/themes. Make sure that the parent theme folder is called “enfold” and not “enfold enfold” or “enfold%2Fenfold”.
Best regards,
PeterFebruary 17, 2014 at 10:21 am #224856In reply to: How to add new post format ?
Hi Ismael,
thanks for your reply. With these changes i get some warnings from font-manager.class.php (622); because the icon for status is not defined.
Is enfold supporting get_template_part( ‘content’, get_post_format() ); ?
I think this would make some changes a lot easier.Kind regards,
FoxFebruary 17, 2014 at 10:18 am #224855In reply to: 3 helps needed on product page (images included)
Hey hanlinsg!
1) This is not easily possible – please hire a freelancer if you want to modify the layout of the single product template. You can contact werkpress here: http://kriesi.at/contact/customization or hire a freelancer here: http://www.microlancer.com/
Note that relocating the “Add to cart” button position causes incompatibility issues with third party plugins for sure. That’s one of the reasons why we decided to stick with the default WooCommerce layout with Enfold. With propulsion we had several problems with third party plugins.2) Insert this code into the quick css field:
#top div div.product .woocommerce-tabs ul.tabs li a { display: none; } #top div div.product .woocommerce-tabs .panel { border: none; background: #ffffff; }3) Seems like Josue solved it: https://kriesi.at/support/topic/tab-content-field-unclickable/’
Regards,
PeterFebruary 17, 2014 at 10:13 am #224854In reply to: Entire Enfold Website translation by WPML
This is not a good news!
Second step question: Does exists a way to translate or duplicate all portfolio tags?
(I can work directly on db, if necessary)Anyway thank you for the answer!
-
This reply was modified 11 years, 10 months ago by
FLORENCE2014.
February 17, 2014 at 10:12 am #224853In reply to: Enfold and WPML Portfolio Item Base slug translation
Thank you! You helped me!!
Now you have a friend! :)February 17, 2014 at 10:10 am #224852You’re talking about the “Users” tab within the wordpress.org dashboard right? In that case then yes, my email there matches up with my email for my wordpress.com profile (with my Gravatar). And I have the “multi-post” author options selected, so it should be all set, but my Gravatar image is still not popping up on any of the posts that I have authored on my page.
Here is the URL for my site: concordnanae.com
All I’m seeing in each circle is still the small pen icon, or whichever icon I check off in the media option of each post.
Ben
February 17, 2014 at 10:08 am #224850In reply to: adding links to a gallery
Hi Peter,
I use the latest Enfold’s version. Your code creates an error when I copy paste it in functions.php:
Parse error: syntax error, unexpected T_FUNCTION in /home/wineengratisvakantie.nl/public_html/redline/wp-content/themes/enfold/functions.php on line 470
Regards,
David
February 17, 2014 at 9:48 am #224838Hi bhaydock!
WordPress will connect your user email address (you can change it on the wordpress dashboard/admin page) with your gravatar account. Just make sure that the gravatar account email address matches your wordpress user address.
Best regards,
PeterFebruary 17, 2014 at 9:46 am #224837Hey miketran!
Please install this plugin: http://wordpress.org/plugins/woocommerce-multilingual/ and configure it. If you think it’s a theme issue I suggest to deactivate Enfold and to activate the default TwentyThirteen theme. I’m pretty sure it’s not a theme issue because Enfold does not hook into the WooCommerce translation functions. If you’ve issues with the WooCommerce translation please contact the WPML support staff.
Best regards,
PeterFebruary 17, 2014 at 9:38 am #224833This reply has been marked as private.February 17, 2014 at 9:37 am #224832In reply to: adding links to a gallery
Hey David!
Make sure that you use the latest version of Enfold 2.5.2 because otherwise you can’t add a link to your gallery images. Then install this plugin http://wordpress.org/plugins/wp-gallery-custom-links/ and insert this code:
add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4); function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta) { $custom_url = get_post_meta($attachment->ID, '_gallery_link_url', true); if(!empty($custom_url)) { $link[0] = $custom_url; $link['custom_link_class'] = 'aviaopeninbrowser'; } return $link; }into your child theme functions.php file (at the very bottom).
Best regards,
PeterFebruary 17, 2014 at 9:33 am #224830Hi intrige!
1) Yes, you can use the “Enfold Latest News” widget – it allows you to select the categories which will be displayed in the sidebar.
2) No, afaik the “archive” widget does not support a category selection. However maybe you can find a third party widget here: http://wordpress.org/plugins/
Best regards,
PeterFebruary 17, 2014 at 9:16 am #224825In reply to: Enfold Website Designers – Where to Hire?
Hi davevi!
You can try: http://www.microlancer.com/ or contact the werkpress devs here: http://kriesi.at/contact/customization
Regards,
PeterFebruary 17, 2014 at 9:13 am #224824In reply to: Easy Slider > sort posts by date
Hi pako69!
Please insert this code into the enfold/functions.php file:
add_filter( 'avf_dropdown_post_query', 'avia_wpml_filter_dropdown_post_query_custom', 10, 4); function avia_wpml_filter_dropdown_post_query_custom($prepare_sql, $table_name, $limit, $element) { if(defined('ICL_LANGUAGE_CODE')) { global $wpdb; $wpml_lang = ICL_LANGUAGE_CODE; $wpml_join = " INNER JOIN {$wpdb->prefix}icl_translations ON {$table_name}.ID = {$wpdb->prefix}icl_translations.element_id "; $wpml_where = " {$wpdb->prefix}icl_translations.language_code LIKE '{$wpml_lang}' AND "; $prepare_sql = "SELECT distinct ID, post_title FROM {$table_name} {$wpml_join} WHERE {$wpml_where} post_status = 'publish' AND post_type = '".$element['subtype']."' ORDER BY post_date ASC LIMIT {$limit}"; } else { $prepare_sql = "SELECT distinct ID, post_title FROM {$table_name} WHERE post_status = 'publish' AND post_type = '".$element['subtype']."' ORDER BY post_date ASC LIMIT {$limit}"; } return $prepare_sql; }Best regards,
PeterFebruary 17, 2014 at 9:08 am #224823Topic: Enfold Website Designers – Where to Hire?
in forum Enfolddavevi
ParticipantAlthough Enfold is an easy to use and excellent WordPress theme, I am looking for a Enfold expert to translate my designs and text into a website. Is there a website like http://www.guru.com where these types of experts can be found?
February 17, 2014 at 8:09 am #224813In reply to: Easy Slider auto resume after hover / pause
Hey!
This should be possible. In wp-content/themes/enfold/js/shortcodes.js replace
next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); },with
next : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'next' ); setTimeout(this._startSlideshow(),50); }, // public method: shows previous image previous : function(e) { e.preventDefault(); this._stopSlideshow(); this._navigate( 'prev' ); setTimeout(this._startSlideshow(),50); },Cheers!
PeterFebruary 17, 2014 at 8:01 am #224812In reply to: Slides gone after last enfold update
Hey,
Now is working, I updated manually and everything is back.
The problem is because the autoupdate didn’t update all the files correctly, this is a bug on the auto update system
-
This reply was modified 11 years, 10 months ago by
andreano.
February 17, 2014 at 7:50 am #224805In reply to: Slides gone after last enfold update
Hey!
Please post the login details here as a private reply. We would like to check it. There is really something wrong with the theme because the sidebar is below the content. Deactivate the cache plugin before we can check it.
Regards,
IsmaelFebruary 17, 2014 at 7:40 am #224802In reply to: WooCommerce / Enfold Update Issue
Hi Mark!
Can you please give us a link to the website? I think it is the woocommerce update because I used the an older version of the plugin and it works. Please try to ask the woocommerce support team.
Cheers!
IsmaelFebruary 17, 2014 at 7:32 am #224801Topic: Color section background image pixelated
in forum EnfoldTaloscent
ParticipantOn the Home v8: Frontpage Shop there is a color section with a background image of http://kriesi.at/themes/enfold/files/2013/06/slide3_bg.png.
I copied this image and am using it on http://dignity.morewireless.netWhy is the same picture with the same settings pixelated/blocky and yours is not? Have I missed some settings?
ThanksFebruary 17, 2014 at 7:29 am #224800In reply to: Slides gone after last enfold update
Ismael,
Just one correction, the issue happen in all browser now.
I deactivated all plugins, remove all the slides, create a new on and the problem still there.
Don’t know what else to try.
Any help?
February 17, 2014 at 7:14 am #224795In reply to: Slides gone after last enfold update
Also I did clean the cache of my cache plugin, initially I thought about that, but it wasn’t
February 17, 2014 at 7:13 am #224793In reply to: Slides gone after last enfold update
Hi Ismael,
I don’t think the problems are the plugin. If you open the website using Safari all works, the problem happen when I use Chrome on Mac.
What do you think?
Thanks,
AndreanoFebruary 17, 2014 at 7:09 am #224792In reply to: order in search results
Hi toddgeist!
You can use this plugin to maximize the search power of your website: SearchWP
Refer to this link in order to integrate the plugin on ajax search: http://kriesi.at/documentation/enfold/use-searchwp-instead-of-the-standard-search/
Best regards,
Ismael -
This reply was modified 11 years, 10 months ago by
-
AuthorSearch Results
Viewing 30 results - 228,091 through 228,120 (of 243,824 total)
-
Search Results
-
Although Enfold is an easy to use and excellent WordPress theme, I am looking for a Enfold expert to translate my designs and text into a website. Is there a website like http://www.guru.com where these types of experts can be found?
On the Home v8: Frontpage Shop there is a color section with a background image of http://kriesi.at/themes/enfold/files/2013/06/slide3_bg.png.
I copied this image and am using it on http://dignity.morewireless.netWhy is the same picture with the same settings pixelated/blocky and yours is not? Have I missed some settings?
Thanks

