Mosne / Paolo Tesei
Forum Replies Created
-
Hi Hessel,
thanks a lot, solved! It was the deferred loading of the js.
Have a nice day
Forum: Plugins
In reply to: Unresponsive script in WP customer areasame problem here
Forum: Plugins
In reply to: [ACF qTranslate] WYSIWYG Broken with latest qTranslate-x and ACF Proin assets > acf_5 > main.js
/** * Clone functionality from standard File field type */ acf.fields.qtranslate_file = acf.fields.file.extend({ type: 'qtranslate_file', focus: function() { this.$el = this.$field.find('.acf-file-uploader.current-language'); //add this.$input = this.$el.find('[data-name="id"]'); this.o = acf.get_data(this.$el); } });this solved the issue.
Forum: Plugins
In reply to: [ACF qTranslate] WYSIWYG Broken with latest qTranslate-x and ACF Prothank you Tusko Trush, I have still some problem with the field type “file”:
after choosing the file to associate I have this error
acf-input.min.js:1 Uncaught TypeError: Cannot read property 'val' of null
any Idea? i think the target object has been renamed in the latest version… or something like this.Thanks
Forum: Plugins
In reply to: [Custom Post Type UI] archive page for custom post typehi, I was hoping that was a problem wordpress related…
but it still gave the same query even with the latest version of wordpress.so I had to write a dirty workaround;)
$year = (get_query_var('year')) ? get_query_var('year') : get_query_var('press-release'); $monthnum = (get_query_var('monthnum')) ? get_query_var('monthnum') : (integer) get_query_var('page'); $post_type = get_query_var('post_type'); $wp_query->query = array("m"=>$year,"monthnum"=>$monthnum,"post_type"=>$post_type); $query_n = array_merge($wp_query->query, array ('post_type' =>'press-release', 'posts_per_page'=> 999, 'paged' => $paged ));.
what if… it is a database corruption? Where you would go to check? Where are stored the rewrite url rules? Is it possible that this staff is cached ( maybe Transients API)? Can I check or purge it in some way?Forum: Plugins
In reply to: [Custom Post Type UI] archive page for custom post typeOf course!
here my settings
https://gist.github.com/mosne/36db9bffce0da6b60c64the permalink rule is set to
Β· Post nameForum: Plugins
In reply to: [Intuitive Custom Post Order] Adding a new term reset costum taxonomies orderSo sorry. I’ve just update the plugin to the latest version. you fix it ! well done! thank you again!
I’ve checked the code. its not qTranslate-x fault. qTranslate-slug turn off the qTranslate x URL rewriter and uses its own. unfortunately qTranslate slug lack of a clen function that convert URLs as qtrans_convertURl does. so we need to ask some implemetations to qTranslate sitemap XML and qTranslate slug teams.
In my humble opinion it would be absolutely terrific if qTranslate-slug functionalities were natively integrated in this qtranslate-x project… for a better seo and a easyer developer life!I’ve never tested qtraslate-slug.. is it good? Is it trust worthy?
the cleanest way is to add in your theme function.php
if (function_exists('qtranxf_convertURL')) { function qtrans_getAvailableLanguages() { return call_user_func_array("qtranxf_getSortedLanguages", func_get_args()); } function qtrans_convertURL() { return call_user_func_array("qtranxf_convertURL", func_get_args()); } }or add native support editing the plugin
https://gist.github.com/mosne/25d639b723825b894751Forum: Plugins
In reply to: [Relevanssi - A Better Search] No results in the second languageHello, Same problem here using mqTranslate.
I think the problem is that Relevanssi get only the primary language.
It seems a priority problem… relevanssi receives only the default language of the string instead of the raw string (containing <!–langcode>).Forum: Plugins
In reply to: [Category Custom Fields] Plug in support – categorycustomfieldsHi, really useful plugin!
unfortunately i have some issues with wordpress 3.1.3.
Form fields appears correctly but after saving the are still blank.
at the beginning i thought that was caused by a incompatibility with qTranslate but I’ve tried do deactivate it and still nothing…
i’ll stay tunned π