BenM
Forum Replies Created
-
Forum: Reviews
In reply to: [Demo Data Creator] Be careful – lost 2 weeks of developmentSo, If I understand, you DON’T backup anything during 2 weeks and you’re shooting here to say “I’m so stupid !” ?
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] CPT custom taxonomies orderYou’re right, it works with hierarchical.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] French translationNot possible to edit message on wordpress forum ???
For the previous, it’s _e(‘Delete all chat messages’, ‘sac’), not __()
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] French translationAnother one, simple-ajax-chat-admin.php line561 :
<input type="submit" name="sac_truncate" class="button-secondary" id="mm_truncate_all" value="<?php __('Delete all chat messages', 'sac'); ?>" />Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] French translationchat-admin, line 539 :
<div><span><?php sprintf( __('Last Message %s ago', 'sac'), sac_time_since($chat->time) ); ?></span></div>So, you should really read i18n page from WordPress Codex
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] French translationWowowow !
$chat_report = __('Currently there', 'sac'); if (!empty($chats)) { if (count($chats) == 1) { $chat_report .= __(' is ', 'sac'); } else { $chat_report .= __(' are ', 'sac'); } $chat_report .= count($chats) . __(' chat message', 'sac'); if (count($chats) == 1) { $chat_report .= __(' (your default message)', 'sac'); } else { $chat_report .= __('s', 'sac'); } } else { $chat_report .= __('0 chat messages. Please add at least one message via the chat box.', 'sac'); } ?>You should correct this using _n !
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] French translationchat-admin.php :
line 186 $chat_report = __('Currently there', 'sac'); line 606 : <p><strong><?php _e('Delete all plugin settings', 'sac'); ?></strong></p>Forum: Plugins
In reply to: [ReCaptcha Integration for WordPress] PHP notice on settings pagealways here !
Forum: Plugins
In reply to: [Import and export users and customers] extra user informationHi,
I need custom fields import ! And your plugin works with that (under certain conditions), it’s just a problem a redundancy.
In fact you right : once I desactivate, Extra user informations are no longer displayed.
But why your plugin show this extra field ?
Forum: Plugins
In reply to: [Better User Search] Doesn't work – SQL ErrorIt works perfectly for me.
Thank you for the correction.Forum: Reviews
In reply to: [Better User Search] It's ok now !I already done this.
Forum: Plugins
In reply to: [Better User Search] Doesn't work – SQL ErrorEven with ‘COLLATE utf8mb4_general_ci’, it doesn’t find anything in display_name, first_name, last_name, custom field.
Forum: Plugins
In reply to: [Better User Search] Doesn't work – SQL ErrorSame.
WP utf8mb4 upgrade/Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Is there an API?Wow, excellent, it even takes my CPT !
By the way, there’s an old link in “Add more themes” -> “Guide to create your own theme” : http://support.mailpoet.com/knowledgebase/guide-to-creating-your-own-wysija-theme should be http://support.mailpoet.com/knowledgebase/guide-to-creating-your-own-wysija-theme. Bad rewriting 🙂
Forum: Fixing WordPress
In reply to: menu items private statusOk, just have to get_post_status($item->object_id).