Wigid Triyadi
Forum Replies Created
-
in case anyone has same problem with me, you need to check the permalink setting, in my case it was caused by slash on the end of url permalink.
Forum: Plugins
In reply to: [DW Twitter] Can't get DW Twitter to workHi
could you check the website URL on the application setting?
it have to be identic with the website that hosting the code.Forum: Plugins
In reply to: [TYPO3 tt_news Importer] filtering by folder ID?Cool! this is exactly what i’m looking for.
thanks again,
WigidHi Robert
I have same problem with Pedro, and your advice solved it.
please add the changes to plugin latest versioncheers
WForum: Plugins
In reply to: Possible SCRDL Exploit — JetpackHi there
is there any updates regarding this issue?
no problem with me if this only “false alarm”, but what if it is true?hopefully someone can give me the updates
Forum: Plugins
In reply to: [LightPress Lightbox] WP-Polls breaks wp-jquery-lightboxHi Paul, because of time constraints, I just had time trying to find a solution of this problem.
There are two possibilities that causing jquery fails in execution:
1. If you add the javascript library directly in header.php, there is likely a reference jquery called twice.
2. Jquery Reference was called after the lightbox or wp-poll javascript , you can check it via view source.because my limited skill of javascript management order on the header, then my solution are :
1. Add the jquery reference into header.php manually.
After<head>
i put<script type='text/javascript' src='/wp-includes/js/jquery/jquery.js?ver=1.7.1'></script>
2. Modifying/removing scripts that generate jquery reference.
open wp-polls.php
line 202 deletewp_print_scripts('jquery');
line 224
fromwp_enqueue_script('wp-polls', plugins_url('wp-polls/polls-js.js'), array('jquery'), '2.50', true);
intowp_enqueue_script('wp-polls', plugins_url('wp-polls/polls-js.js'), array('jquery'), true);
line 243
wp_enqueue_script('wp-polls-admin', plugins_url('wp-polls/polls-admin-js.js'), array('jquery'), '2.50', true);
wp_enqueue_script('wp-polls-admin', plugins_url('wp-polls/polls-admin-js.js'), true);
its not perfect, but hopefully it helps
Forum: Plugins
In reply to: [LightPress Lightbox] WP-Polls breaks wp-jquery-lightboxHi Paul
I have same problem with wp-polls and all Jquery features.
Since wp-poll write additional header to all wp pages and those header generating conflict with all jquery on the system.I hope the author notice with this problem.
I’m trying to localize the problem or event find the solution, ill update you I find the solution.. (I hope soon)