Recent activity
Subscribe to this feed-
Alex Vermeule started following the idea "Better "Keep me updated by e-mail" option" in JS-Kit.
Alex Vermeule replied on October 16, 2009 11:32 to the question "Why are my JS-Kit comments are not synchronized with Wordpress?" in JS-Kit:
Alex Vermeule replied on October 16, 2009 11:13 to the question "Why are my JS-Kit comments are not synchronized with Wordpress?" in JS-Kit:
Dear JS-Kit,
The comments on http://hetnieuwewerkenblog.nl are not synced with the local WordPress database.
Not sure why this is happening,
Can you please look into this?
Thank you very much.
With kind regards,
Alex Vermeule
This reply was created from a merged topic originally titled
ECHO Comments not synced with local WordPress DB.
Alex Vermeule posted a topic that has since been removed from JS-Kit. see the change log
Alex Vermeule replied on October 12, 2009 08:18 to the question "Remove the 'COMMENTS' word after the comment count in Wordpress." in JS-Kit:
Hi Ryan, perhaps this is what you are looking for:
http://support.js-kit.com/jskit/topic...
Alex Vermeule replied on September 22, 2009 16:58 to the problem "Echo Outage" in JS-Kit:
Alex Vermeule replied on September 22, 2009 16:38 to the problem "Echo Outage" in JS-Kit:
Echo is still down on our site. Can you please investigate?
The url is http://hetnieuwewerkenblog.nl
Alex Vermeule replied on September 22, 2009 15:08 to the problem "Echo Outage" in JS-Kit:
Alex Vermeule reported a problem in JS-Kit on September 22, 2009 13:19:
Echo OutageDear Js-kit,
Today we launched a new blog http://hetnieuwewerkenblog.nl with Echo enabled.
Right now, Echo is not loading/not showing up anymore while I have not changed anything to the code. Nasty side effect is that it is causing a delay of loading the sidebar too.
Any idea what is going on?
The url is http://hetnieuwewerkenblog.nl
Thank you very much for looking into this.
With kind regards,
Alex Vermeule
Alex Vermeule replied on September 16, 2009 11:51 to the problem "Echo's WordPress plug-in 'breaks' the #comments url" in JS-Kit:
Alex Vermeule replied on September 16, 2009 07:43 to the problem "Echo's WordPress plug-in 'breaks' the #comments url" in JS-Kit:
Alex Vermeule replied on September 16, 2009 07:41 to the problem "Echo's WordPress plug-in 'breaks' the #comments url" in JS-Kit:
Hi Igor,
Thank you very much for your fast response and your reply!
I had to modify the code just a little bit (notice the single quotes at the word comments):
echo "<!-- Path: $path; Uniq: $uniq -->\n";
Otherwise I'd get a parse error (syntax error, unexpected T_STRING, expecting ',' or ';'.) I think this has to do with the php version you use, php 5 in my case.
Anyway, thanks as always! :-)
With kind regards,
Alex Vermeule
Alex Vermeule reported a problem in JS-Kit on September 15, 2009 14:03:
Echo's WordPress plug-in 'breaks' the #comments urlDear JS-Kit,
A default WordPress install appends the id '#comments' to the 'comment-count-link'. E.g. http://yourdomain.com/%permalink%/#co...
This way WordPress tells you were comments section on a posting actually starts (see a default comments.php). When clicking the comment-count-link, it takes you directly to the comments area of a post, awesome functionality ;-)
However, when Echo's WordPress plug-in is enabled, it break this functionality as Echo does not seem to use the #comments id to start/tell where the comments on your page start. As a result, the permalink is opened without taking you to the comments section...
A hack would probably adding the comments id to the plug-in code somewhere. Any idea where and if you can fix this?
Thank you very much.
With kind regards,
Alex Vermeule
Alex Vermeule replied on September 14, 2009 08:09 to the idea "Customize/remove the word 'Comments' when using Echo with WordPress" in JS-Kit:
Hi Philippe,
You are welcome! I think the best solution would be to have an option in Echo's Wordpress plugin that allows you to set this label. Then you do not have to hack it as my example above. Another possibility is to be able to 'override' the label with javascript, but that does not seem the best solution in terms of speed and user experience.
Looking forward to your localization efforts so I can use Echo in Dutch :-)
Best regards,
Alex Vermeule
Alex Vermeule shared an idea in JS-Kit on September 12, 2009 19:02:
Customize/remove the word 'Comments' when using Echo with WordPressDear Js-kit,
When using Echo together with WordPress, Echo does not allow you to change/remove the word 'Comments" after the comment-count.
Echo does allows you to tweak the comment-count-number using the JSKitCommentsCountFilter function as described on http://wiki.js-kit.com/Admin+Guide+-+....
However, in order to remove or translate the word 'Comments', you need to edit the Echo's WordPress Plugin file in the following way:
function jskit_comments_number() {
global $post;
$uniq = jskit_get_post_uniq_value($post->ID);
$number = '0';
This is definately a hack so it seems like a must have feature (also from a localization perspective) to be able to change or modify the word 'Comments'.
Thanks very much for considering this.
With kind regards,
Alex Vermeule
Alex Vermeule replied on September 11, 2009 14:23 to the question "How to change the behaviour and text of the comment count link" in JS-Kit:
Alex Vermeule replied on September 11, 2009 13:10 to the question "How to change the behaviour and text of the comment count link" in JS-Kit:
Hi Igor,
Thanks very much for your help! For those reading this thread, Igor found out that one of my own .js files caused troubles on the page. It used the following code:
if(document.childNodes) {
window.onload = init
}
This overrided Echo's "onload" event, disabling the the JSKitCommentsCountFilter function.
Thanks again Igor.
With kind regards,
Alex Vermeule
Alex Vermeule replied on September 10, 2009 17:28 to the question "How to change the behaviour and text of the comment count link" in JS-Kit:
Alexve replied on September 10, 2009 15:19 to the question "How to change the behaviour and text of the comment count link" in JS-Kit:
Alexve asked a question in JS-Kit on September 10, 2009 14:41:
How to change the behaviour and text of the comment count linkHi, I am using WordPress together with ECHO and I want to change the behaviour of the comment-count link on my homepage and postings.
This is what I want to achieve:
0 comments -> display nothing at all
1 comment -> display '1 Reactie'
2 comment -> display '2 Reacties'
3 comment -> display '3 Reacties'
Etc.
Comments Closed -> display 'Reacties gesloten'
My wordpress template uses the following code to normally achieve that:
<?php comments_popup_link( __( '', 'blank' ), __( '1 Reactie', 'blank' ), __( '% Reacties', 'blank' ), 'comments-link', __('Reacties gesloten', 'blank')); ?>
As soon as I enable the Echo plugin for Wordpress, the Echo adds it's functionallity and this function is not used anymore. This is what I expected however, I am confused how to achieve the results as described above with Echo enabled.
When Echo is enabled, the comment count is displayed as 'X Comments', where X is the number of comments.
According to the WIKI (http://wiki.js-kit.com/Admin+Guide+-+...) I need to use the
JSKitCommentsCountFilter function. However adding the JSKitCommentsCountFilter(count) example code from the WIKI in my header.php does not change any behavior.
Can someone please explain to me how to achieve the desired results?
Thanks very much.
| next » « previous |
Loading Profile...





