Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [Thumbs Rating] Thumb rating is not working in Firefox onlyYes I am using W3 Total Cache plugin.
I tried it in chrome and opera, it’s working fine in these browsers.
Why is this happening?
Can you point me right direction so I can try to fix it.Forum: Plugins
In reply to: [W3 Total Cache] clear cache periodicallySupport is dead here.
Forum: Plugins
In reply to: [W3 Total Cache] Possible to unset caching for certain page?Sure you can do that. Just add these (type of cache you want to disable) to your page template php file.
// Disables page caching for a given page. define('DONOTCACHEPAGE', true); // Disables database caching for given page. define('DONOTCACHEDB', true); // Disables minify for a given page. define('DONOTMINIFY', true); // Disables content delivery network for a given page. define('DONOTCDN', true); // Disables object cache for a given page. define('DONOTCACHEOBJECT', true);
Forum: Plugins
In reply to: [W3 Total Cache] clear cache periodicallyActually that’s what I am also looking for.
I have a function that creates posts automatically if it find a new entry in external RSS feeds. Once that happens, I want W3TC to clear all cache (page + database + object + etc) programmatically as soon as post is published.
Lol,
Why lol??? I don’t understand the sarcasm.
Thanks Jeff for following up.
I am now using Contact Form 7 plugin to create posts/custom posts and uploading featured thumbs. Contact Form 7 has tons of hooks for that as well as it’s well documented. And since it’s highly customizable, now I can create unlimited forms and customize them as I require without modifying core plugin files.
The other reason why I choose Contact Form 7 because I was already using this plugin for website contact forms. So I did not want my website to overload with another plugin and couple of JS/CSS files for a feature that I could achieve with existing plugin.
Although I checked updated version of USP and it looks nice.
Can you please let me know which plugin you use now?
If I do not find a better solution, I think I am going to use Contact Form 7 or Gravity Forms to create posts from front end. Both of these offers good support for hooks.
Thanks Jeff, for responding so fast and trying to fix all these issues.
No disrespect to you but I think I will stay away from this plugin for a while. These notices and warnings are just tip of the iceberg and not following coding standards. All JavaScript libraries are loaded from PHP file instead of enqueuing standard jQuery plugins (like Jquery Cookie or Parsley JS) individually with wp_enqueue_script. There are more issues.
Although it’s still a good plugin and kinda works but I was expecting more, at least better coding since I always follow your blog for best practices. Anyway thanks for your help.
I was digging into more and found that wp-load.php is not loaded correctly.
require(‘../../../../wp-load.php’);
This gives error if we have moved wp-content directory to custom location. Shouldn’t you use ABSPATH or some other better methods. Don’t include wp-load, please
More php notices caused by plugin.
`PHP Notice: Undefined index: HTTP_HOST in /mydomain.com/public_html/wp-content/plugins/user-submitted-posts/user-submitted-posts.php on line 179
PHP Notice: Undefined index: user-submitted-tags in /mydomain.com/public_html/wp-content/plugins/user-submitted-posts/user-submitted-posts.php on line 105
PHP Notice: Undefined index: user-submitted-category in /mydomain.com/public_html/wp-content/plugins/user-submitted-posts/user-submitted-posts.php on line 107
PHP Notice: Undefined index: user-submitted-content in /mydomain.com/public_html/wp-content/plugins/user-submitted-posts/user-submitted-posts.php on line 108`That’s great!
I am a big follower of your blogs (perishablepress & digwp). And I have learned a lot from these two. ??
Yes, sorry. I checked and these are all PHP Notices. And it does not break functionality of the plugin.
But the size of my logs increases by couple of MBs each day. Can you fix these in next update?
I am using free version of this plugin and for now, it’s more than sufficient for my requirement.
The only thing bugging me is the captcha field because almost on all forms, it comes as last field. It does not make sense to add it in middle of the form, don’t you think.
I guess I will have to edit form in submission-form.php
Forum: Plugins
In reply to: [Thumbs Rating] Previously voted checked "state"A question.
How many days does it takes to browser clear localstorage automatically?
I think in my case, it cleared in 5-7 days.Please let me know.
Forum: Plugins
In reply to: [Thumbs Rating] W3 errorAll these errors are caused by your theme.
I only see one error by Thumbs Rating plugin.Forum: Plugins
In reply to: [Thumbs Rating] Show spinner/loading image while processingThat’s ok because I was not using admin +/- interface and shortcodes. So it’s only 2 functions for me that I added in my functions.php and of course .js and .css file too. Working great!
Although I would suggest you to also add one more meta key for “Total number of rating” because a lot of people would like to display most rates posts, just like most up and down rated posts. ??