jonazu
Forum Replies Created
-
Forum: Plugins
In reply to: [Date Picker in List Fields for Gravity Forms] Default date per fieldHi
Thanks a lot for fixing the bug! It works now as expected.
Jonas
Forum: Plugins
In reply to: [Date Picker in List Fields for Gravity Forms] Default date per fieldThanks a lot!
Unfortunately there is one bug: When the list is hidden and only shown conditionally the pop-up calender is shown at the bottom of the page.
Are you able to reproduce the issue?
Forum: Plugins
In reply to: [Date Picker in List Fields for Gravity Forms] Default date per fieldThanks for the feedback. That would be awesome!
Forum: Plugins
In reply to: [Enhanced Media Library] Taxonomies and WPMLHi Nadia
That was the obvious solution I tried. Unfortunately I cannot set it to nothing. It is disabled. Can you set it to nothing?
Jonas
Forum: Plugins
In reply to: [Enhanced Media Library] Taxonomies and WPMLThe latest update enables Media Categories for translate by default!
I had to delete wpml-config.xml as I didn’t want to use this feature yet. I already have lot’s of media categories and I need time to translate and move the media around.
Can you please make this optional?
Forum: Plugins
In reply to: [Enhanced Media Library] Taxonomies and WPMLHi Nadia
Thank you for the update. I’m very much looking forward for this feature! Already bought the Pro version and happy to hear that there is active development going on.
Regards
JonasForum: Reviews
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Breaks jQuery@photocrati: Just a quick update on my current workaround: I ended up replacing $ with “jQuery”. Not very elegant but it works now. (Removing your wp_print_scripts hook gave me JS errors with fancybox.)
And btw: I bought the Plus Edition as I really like the functionality of the plugin and needed better templates. Maybe this speeds up the process with fixing the wp_print_scripts. 😉Forum: Plugins
In reply to: [SyntaxHighlighter Evolved] Broken on 2015 themeThanks @miguel_angel for this quick fix.
Forum: Plugins
In reply to: [Dave's WordPress Live Search] Autocomplete not working at allThere may be an incompatibility with other plugins. E.g. Relevanssi (once I deactivated it the results of Live Search showed up)
Forum: Reviews
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Breaks jQueryI didn’t think of the version parameter. Thanks for pointing that out.
Unfortunately this didn’t solve it. My current version is the most recent 2.1.1.
So I was a bit curios how NextGEN is handling all this jQuery things and I found out that there is a fix_jquery function which is used with the wp_print_scripts. I citate the codex:
Since WordPress 3.3, wp_print_scripts should not be used to enqueue styles or scripts.
I commented the action
add_action('wp_print_scripts', array(&$this, 'fix_jquery'));and my code works now. I still have to test if NextGEN is working without errors. But anyhow shouldn’t you remove this line?
Forum: Reviews
In reply to: [Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] Breaks jQueryI din’t expect replies. I’m positively surprised. Thanks.
So if you make the effort to reply, I make the effort to explain the problem. (And maybe we find a solution?) And I have to admit I was a bit angry by the time I did the review as I lost some time figuring out why this happend. Sorry for that.Anyway, I use FoundationPress which enques it’s own jQuery in functions.php:
wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', get_template_directory_uri() . '/js/jquery/dist/jquery.min.js', array(), '1.0.0', false ); wp_enqueue_script( 'jquery' );The HTML looks like this:
<script type='text/javascript' src='[url to theme folder]/js/jquery/dist/jquery.min.js'></script>I have other jQuery dependent code which works well with this setting. The only plugin which uses jQuery (I suppose) is Contact Form 7 for the AJAX success alert once I’ve sent the form.
After activation of NextGEN Gallery the code looks like this:
<script type='text/javascript' src='[domain]/wp-includes/js/jquery/jquery.js'></script> <script type='text/javascript' src='[domain]/wp-includes/js/jquery/jquery-migrate.min.js'></script>The custom jQuery is gone. And my custom code isn’t working anymore because of this JavaScript error:
TypeError: $ is not a functionWhich is caused by this simple jQuery check:
$(document).ready(function () {Contact Form 7 is working, though.
I think I could figure out some workaround, but I want to use the jQuery delivered by FoundationPress. And actually I don’t understand why NextGEN overrides my custom jQuery?
Forum: Requests and Feedback
In reply to: Why doesn't WordPress support multilingual OOTB?After two days thinking about my question and your answers I came to the conclusion that it’s good the way it is. 🙂
Forum: Plugins
In reply to: [Theme Switcher] alternative to this old pluginI looked at the code and it’s actually quite simple. It uses some deprecated functions. This could be a problem in the future.
Forum: Requests and Feedback
In reply to: Why doesn't WordPress support multilingual OOTB?I’m fine with Klingon and I think we’re getting to the point slowly. 🙂
For me it’s not only the language packs. It’s all the “logistics” in the background to manage post and meta translations for user generated content. As WordPress does not cover this, there are plugins making it easier to manage translations. (Maybe I shoud’ve used “translations” in the first place.)
And I understand it is a lot of time and effort to make any system capable of handling multiple languages simultaneously. But everyone starting with WordPress needs to evaluate the possiblities there are of translating content (which is well described in the codex) and most likely sticks to one method to increase productivity for future times.
Knowing that WordPress was actually a blogging system (and usually one only blogs in one language) I understand it wasn’t top priority at the beginning. But as WordPress longs for greater things, why not including such an important thing soon? Is it just to keep WordPress as lean as possible or is it on the map but there are other things with higher priority? Or…?
Forum: Requests and Feedback
In reply to: Why doesn't WordPress support multilingual OOTB?OOTB = abbr. of out-of-the-box. Which means, why isn’t WordPress including multilingual in the core?
And by “multilingual” I do mean maintaining a website (and its posts) in many languages and allowing the editors/visitors to switch between those languages.
Actually I’m not even complaining as I use WPML and it does its job.
I’m just curious on why WordPress doesn’t cover this in the core. Because for me it should be a core feature.