molina_wind
Forum Replies Created
-
Forum: Plugins
In reply to: [Slimbox] Problem on WP3.6tzdk, thanks a lot for your answer!! I had not idea about that. I’ll start taking care.
Forum: Plugins
In reply to: [Slimbox] Problem on WP3.6I had same problem in my website (oceanmind.net) so I downloaded tzdk’s solution.
It worked perfect at the beginning (thanks for that!) but now it works only once in a while. Sometimes attached images are open in a white page as if there were no plugin installed.
Any suggestion?
Thanks in advanceForum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Plugin translationDone!
$loop = $id .”—” . $name . “—” . $text . “—” . sac_time_since($time) . ” atrás—” . $url . “—“;
Hope this custom solutions helps someone else.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Plugin translationI guess I did it editing:
“simple-ajax-chat-core.php”// time since entry
function sac_time_since($original) {
$chunks = array( // unix time (segundos)
array(60 * 60 * 24 * 365 , ‘a?o’),
array(60 * 60 * 24 * 30 , ‘mes’),
array(60 * 60 * 24 * 7, ‘semana’),
array(60 * 60 * 24 , ‘día’),
array(60 * 60 , ‘hora’),
array(60 , ‘minuto’),I still need to find how to modify “ago” word showed after message is published.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Plugin translationThanks for your help Jeff.
I found something in “simple-ajax-chat-form.php”I edit this way:
<div id=”sac-latest-message”><span><?php _e(‘último mensaje:’, ‘sac’); ?></span> <em id=”responseTime”> hace <?php echo sac_time_since($r->time); ?></div>
<ul id=”sac-messages”>So text in now PARTIALLY in spanish before sending a message. But once a message is sent I have the “0 minutes ago” text again.
Perfect. Thanks Jeff!