Forum Replies Created
-
AuthorPosts
-
Hi!
I don’t have access to the old 2.5 version but I’ll mark this thread for Kriesi – maybe he has a backup.
Cheers!
PeterMarch 1, 2014 at 12:41 pm in reply to: Chinese Characters Replacing Icons in Internet Explorer 11 #231053Hey!
I think the problem is that your fonts load from a different domain. Replace the http://findlay56.dogloverbiz.netdna-cdn.com path with http://howdoidate.com/ and IE11 will display the fonts. Another user reported that even the www prefix may break IE11 and the “origin” hack ( http://www.fontsquirrel.com/blog/2010/11/troubleshooting-font-face-problems ) doesn’t always work.
Cheers!
PeterHey!
Ok, I’ll leave this thread open :)
Cheers!
PeterHi!
Bitte richte mir einen Admin Account ein – ich sehe mir die Sache an und ändere die Konfiguration der Blog-Seite wenn nötig.
Best regards,
PeterHey!
Yes sure – the code line alone won’t work and it’s only useful if you apply another filter function.
Please create me an ftp account and post the login credentials. I’ll debug the php code.
Best regards,
PeterHey!
You can use filezilla – yes. It should also run on older Windows or Mac computers. If you need help with the ftp installation I recommend to view this video: https://vimeo.com/64927356
Cheers!
PeterMarch 1, 2014 at 12:18 pm in reply to: How to Integrate Google Custom Search (CSE) into Enfold #231044Hey ttem!
1) Insert this code at the bottom of functions.php
add_filter('avf_frontend_search_form_param', 'avia_deactivate_ajax_search',10,1); function avia_deactivate_ajax_search($params) { $params['ajax_disable'] = true; return $params; }
2) Insert this code into the functions.php file:
add_filter('avf_which_archive_output', 'avia_change_archive_title',10,1); function avia_change_archive_title($output) { if (strpos(strtolower($output), 'search results for') !== false) { $output = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() ); } return $output; }
Regards,
PeterMarch 1, 2014 at 12:09 pm in reply to: Entire Menu Disappearing (Instead of Select Items) with Membership Plugin #231043Hey crazyflx!
The only possible conflict I can think of is the wordpress menu walker class. Afaik wordpress doesn’t support multiple menu walkers for a menu and if our theme registers a menu walker class the membership plugin must not register a second walker class. However if it registers a second/custom walker class the menu might break. Our menu walker class can be found in wp-content\themes\enfold\includes\helper-responsive-megamenu.php and it’s required to display the mega menu. I’m not sure how the DigitalAccessPass plugin handles the menu and I don’t have enough time to dig into the plugin code but that’s imo the only possible conflict. If you just need a function which hides/shows certain menu items based on the user roles try the “conditional menu” feature: https://kriesi.at/support/topic/enfold-conditional-menu/ . If you want to add a custom conditional check see: https://kriesi.at/support/topic/using-conditional-menus-with-custom-defined-user-roles/ for more information.
Regards,
PeterHi!
Please try to add this code to the htaccess file:
<FilesMatch ".(ttf|otf|eot|woff)$"> <IfModule mod_headers.c> Header set Access-Control-Allow-Origin "*" </IfModule> </FilesMatch>
– see: http://stackoverflow.com/questions/17831664/font-awesome-not-working-in-firefox-ie
Cheers!
PeterHey!
Thank you for the hint BKBAllan!
Regards,
PeterMarch 1, 2014 at 10:12 am in reply to: Breadcrumbs doesn't work correct after portfolio sorting (part 2) #231006Hey!
Please try to clear the browser cache and clear the cookies – maybe it fixes the issue because Kriesi uses sessions to store the breadcrumb path for portfolio items. If it doesn’t help please contact the plugin author of the “post types order” plugin and ask him how you can revert the plugin changes. Ismaels code here: https://kriesi.at/support/topic/breadcrumbs-doesnt-work-correct-after-portfolio-sorting/ will deactivate the default portfolio breadcrumbs and this change will also remove the portfolio page from the breadcrumb trail.
Regards,
PeterMarch 1, 2014 at 10:06 am in reply to: Search Results Not Matching "Instant Search" Results After Installing Relevanssi #231003Hey!
During my tests the relevanssi_do_query() function always returned the same results for the ajax search and the standard search but I didn’t test the “exclude page” option. I’d ask if there’re any limitations of the relevanssi_do_query() function which may effect the search results and produce a different result. You can also ask how (and if) you can add the excluded page ids to the search query somehow – i.e. the post__not_in parameter should enable you to exclude some pages/posts but I’m not sure how you can retrieve the excluded entries list from Relevanssi, etc.
Regards,
PeterHi!
I’m not sure if the theme causes the issue but I really doubt it at this point. Probably the Preorders extension has a whitespace somewhere and triggers the “headers already sent error which eventually breaks the sessions. I did a quick test on my localhost and I can reproduce the issue with any theme including TwentyThirteen – the default wordpress theme. Try to switch to the default theme on your server and check if the theme change fixes the issue.
Regards,
PeterFebruary 28, 2014 at 3:58 pm in reply to: Error on the top on the ajax results with relevanssi plugin search #230633Hi ttem!
Seems like the Relevanssi plugin doesn’t work properly on your server (our theme code doesn’t use a direct sql query for the ajax search but we use the standard wordpress query). If you deactivate it the error should be fixed. Please contact the plugin author if you need help with the search plugin configuration.
Best regards,
PeterHi!
Please keep us posted if they find something. Afaik the default themes like twenty fourteen, twentythirteen and twentytwelve, etc. do not use the wp_list_pages() function (I searched the theme code) and we can’t compare them to Enfold…
Best regards,
PeterHey!
I found the problem. Please do not use anchor/link elements to mark new areas but set an id for the color section(s) – you can use the custom id option: http://www.clipular.com/c/6311726240759808.png?k=5q489eH2KIKf4vetdVv788OyKmc . Our scroll script detects the color section ids and it will change the menu highlights if necessary. Also see: http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/
Cheers!
PeterFebruary 28, 2014 at 3:05 pm in reply to: header menu issue (elements are not displaying inline) #230604Hi!
@motylanogha – please create us an admin account and I’ll look into it.
Regards,
PeterHey CelebrationEvents!
Please deactivate the wp debug mode. Open up wp-config.php and replace:
define( 'WP_DEBUG', true );
with
define( 'WP_DEBUG', false );
Cheers!
PeterFebruary 28, 2014 at 1:51 pm in reply to: Testimonials/quotations appears incorrectly, then works ok #230592Hi!
Afaik the 2.5.4 update already includes this fix.
Cheers!
PeterHey!
Maybe a third party plugin/WooCommerce extension causes the issue? Our theme does not hook into or manipulate the add to cart function in any way and I’m not sure if the issue is related to the theme. Did you try the cart with the default TwentyThirteen theme?
Regards,
PeterHey!
Please use one header type only. It seems like the front page uses a different header type than the other pages and this configuration duplicates the language switcher.
Regards,
PeterHey!
Great :)
Best regards,
PeterHey!
You can use the video or audio shortcode:
http://codex.wordpress.org/Audio_Shortcode
https://codex.wordpress.org/Video_Shortcodeto embed your video/audio files into the page content. Use the shortcodes like:
[video mp4="source.mp4" ogv="source.ogv" webm="source.webm"] [audio mp3="source.mp3"]
and instead of source.mp4, source.ogv, etc. insert the urls to your video/audio files.
Best regards,
PeterHi!
The parallax effect is brand new and we didn’t add it to the documentation yet. However we’ll extend the documentation here: http://kriesi.at/documentation/enfold/ when we have some time.
Cheers!
PeterHi!
I think it’s still a memory error. Sometimes you can’t increase it by changing the value in the wp-config.php and then you must ask the server administrator/host to increase it for you. Make sure they set it to 128M.
Cheers!
PeterFebruary 28, 2014 at 11:49 am in reply to: Blog Post disappeared + Masonry Gallery order of appearance #230554Hi Justin!
Please create us an admin account and post the login credentials as private reply. We’ll look into it.
Regards,
PeterHi!
1) Füge diesen CSS Code in das Quick CSS Feld ein:
.socket_color a:hover { text-decoration: none; }
2) Dazu gibt es derzeit keine Einstellungsmöglichkeit. Devin arbeitet an einem Print Stylesheet, welches das Drucklayout in Zukunft für alle Browser anpassen sollte, aber derzeit gibt es dbzgl keine Option. Wir werden das Print Stylesheet in ein Update integrieren, wenn es fertig ist.
Cheers!
PeterHey!
Maybe WPML didn’t set the language cookie and then the category query will not return the translated categories. Try following – go to this page: http://epsu-cj.eu/wp-admin/post.php?post=11&action=edit&lang=fr and then click on the “pencil” icon next to “EN” to translate the entry: http://www.screenr.com/mBBN
Best regards,
PeterHey!
Please create me an admin account and post the login credentials as private reply. I did a quick test on my test server ( http://test.inoplugs.com/homepage/home-v7-one-page-portfolio/ ) with the latest theme version and the menu highlight works properly. Maybe it’s a plugin conflict or the duplicate menu ids break the script somehow.
Regards,
PeterHi!
Afaik you can copy/duplicate the content easily. Use the “Duplicate button” and then (when the translated entry was created) click the “Translate Independently” button to translate the content. Some layout elements (i.e. the portfolio grid, post slider, gallery or the blog element) require a separate configuration for each language because the ids of the categories and of the translated post/attachment entries vary from language to language. Static elements (like textblocks) do not require a separate configuration but obviously it’s necessary if you want to translate the static text. I created a short video which demonstrates the translation process and which also shows you that the categories may vary from language to language (i.e. if not all categories are translated, have a different name, etc.): http://www.screenr.com/CBBN
Best regards,
Peter -
AuthorPosts