ghalleb
Forum Replies Created
-
Forum: Plugins
In reply to: [CSV Importer] Slow Import ans Solution…Sorry for the late answer…
I’m importing to a customn post type too.
With this 2 lines, importing was like 20x faster.
Check if there is not this lines anywhere else or try to put them in several files like functions.php or in the plugin itself….
Forum: Plugins
In reply to: [Alphabetic Pagination] JS Live() and PaginationI manage to make the number pagination work. But… It only work in auto mode, and I would like it to work in custom mode too!!!
I could send you the code if you want and we try to adjust it together.
Do you have time? We could discuss that in private.
Forum: Plugins
In reply to: [Usernoise modal feedback / contact form] Some strings are not translatingFor you it will be easier:
Go in the database, table wp_terms
search for slug idea, question, problem, praise and modify the name column to whatever you need
Forum: Plugins
In reply to: [Usernoise modal feedback / contact form] Some strings are not translatingFor my part I need to use WordPress translation mechanism (and not the values in the database) because my site is not only in one language.
That’s why changing the values in the database is not a solution.So I don’t touch value in the table wp_terms and I translate them with __($exp).
But for a WordPress installation only in one language, my solution may be overkill…
Forum: Plugins
In reply to: [Usernoise modal feedback / contact form] Some strings are not translatingIn fact those fields don’t use the wordpress translation mechanism
In _inc/form.php line 14,
change
esc_html($tag->name)
for
echo esc_html(__($tag->name, ‘usernoise’))Forum: Plugins
In reply to: [Usernoise modal feedback / contact form] Conflict with Jquery 1.9.0I still have the problem with 3.5 on UserNoise.js line 19:
if ($.browser.msie && $.browser.version == ‘7.0’){
Forum: Plugins
In reply to: [Codestyling Localization] Rescan/Edit window doesn't openAnyone experiencing the same problem?
I try to disable all the plugin, I still have the same problem…
Any help would be welcomed.