biswajeet
Forum Replies Created
-
Yeh thats what I face too…
Unlike the previous version, it wouldn’t rebuild the site map automatically when exclude item changes. You need to build it manually to get the change effect.Forum: Plugins
In reply to: [WP-HTML-Compression] [Plugin: WP-HTML-Compression] PHP Catchable fatal errorI just changed the update version code to –
@add_action('get_header', 'wp_html_compression_start', 1);
And now its working fine…
Check it out
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Can't get sorting, etc. to work.Clear your cache ??
Forum: Plugins
In reply to: [Plugin: WP-Table Reloaded] Can't get sorting, etc. to work.I think your dataTable js is not loaded, check it!
`yes, that’s right!
Any solution to correct that error will be nice…Sure, will put vote/working now…
thanks.Forum: Plugins
In reply to: [Simply Exclude] [Plugin: Simply Exclude] Script Error!I got it, ui-accordion is not available on WP 3.2.1
I build a custom ui-accordion script, place it your plugin folder and load it through a conditional statement. And finally it works…You too could have done this for backward compatibility, since WP 3.2.1 is not very old version.
btw, other function of the plugin is working nice and this version 2.0 have some new features. Specially the Ajax implementation…
Thanks You!
Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Regexp help pleaseWill have to check in more details…
But for the un friendly url structure like (/?p=) you need to put clean url setting OFF in WP permalink setting.Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Regexp help pleaseyour syntax: /boek/<number>_<title> => /?p=<number>
can you try with this –
Source URL: /boek/\d+
Target URL: /?p=$1Let me know the result…
Forum: Plugins
In reply to: [Redirection] [Plugin: Redirection] Regexp help pleaseHi, if I understand correctly then for your incoming link – /boek/364_title and you want to redirect to link – /boek/364_title?p=364, then you do as follows –
Source URL: /boek/364_title
Target URL: /boek/364_title?p=364other option are left with default
hope that will make it work!
Found the bug again if php gzip is enabled – That’s the admin configuration page is broken
need to rectify…
thanks!Forum: Your WordPress
In reply to: I need your suggestions…Nice theme selection…
Its clean and looks good!Thanks!
Forum: Plugins
In reply to: [mTouch Quiz] [Plugin: mTouch Quiz] No question reorderingHi ??
Actually I have implemented easy question drop & drag feature on mtq version 2.2.4. Therefore I need some time so that I can extract that part and compile it on your latest version – 5.2.1
Once it is ready, will send it to you.Thanks
Forum: Plugins
In reply to: [mTouch Quiz] [Plugin: mTouch Quiz] No question reorderingHi ??
This is a very essential requirement for easy question reordering using drop & drag table rows. I have implemented this feature, have a look first
Before reorder
After reorderBriefly – how to implement:
===========================
1. Get jquery table drag-drop plugin and attached
2. Set a new field in wp_mtouchquiz_question->question_reorder
3. Make a custom js script, attached and write your function to handle the POST data whenever drag and drop occurs and updates db field with new order via ajax.
4. Place the field ‘question_reorder’ with ORDER BY in question.php, after which your question display order will be in accordance with your drag-drop order. We can as well Place ‘question_reorder’ in ORDER BY with RAND() and also replace ORDER BY ID with ORDER BY question_reorder in show_quiz.php, after which it will arrange the question in quiz page in accordance with question_reorder + randomize
5. Finally do some styling and attach ajax loader image etc.Thanks
Forum: Plugins
In reply to: [Permalink Editor] 404 after updatesI have also face this problem too, but after plugin update I generally visit the permalink option page and save the setting once and visit any page/post with custom link and also update the page. After which every things seems to working again…
Can you share what you did to rectify it?
thanks.