Raam Dev
Forum Replies Created
-
Forum: Plugins
In reply to: [Comet Cache] MultiSite clear sites' caches?@tools4toni Thanks again for that review! 🙂
Forum: Plugins
In reply to: [Comet Cache] MultiSite clear sites' caches?I cleared the cache, but it says only the main site cache was cleared. Is there a way to clear the subsites too?
If you install Comet Cache as a Network Plugin, you should see two buttons at the top of the Comet Cache options page: Clear and Wipe. The Wipe button will clear the cache for all sites in the network.
This plugin is the only thing that keeps my MS installs working and stable. I use a ton of plugins. Before I used Commet Cache/Zen Cache, years ago now, my installs would deteriorate and break. I’d have to rebuild. Your plug-in is the only serious function one I can use. All other big name plugins caused huge issues – including backup, caching, optimizing, etc. plugins. Never this one. It’s a life saver.
Thanks so much! 🙂 I’d love if you could leave a review here: https://ww.wp.xz.cn/support/view/plugin-reviews/comet-cache
Forum: Plugins
In reply to: [Comet Cache] MultiSite clear sites' caches?@tools4toni You don’t need to upgrade, no. The free version of Comet Cache supports WordPress Multisite.
Forum: Themes and Templates
In reply to: [Independent Publisher] Social Media Icon@jroberts2 Yes, it’s going to be a problem. The WordPress.com version is not the same theme. See: http://independentpublisher.me/2016/getting-support-for-independent-publisher-on-wordpress-com/
Forum: Reviews
In reply to: [Comet Cache] Brilliant, and so simple@chrishe Thanks so much for the great 5-star review! 🙂 Glad to hear you’re enjoying Comet Cache.
Forum: Themes and Templates
In reply to: [Independent Publisher] Social Media Icon@jroberts2 Have you followed the instructions here? If yes, are you using the WordPress.com version of the theme (which is different than the one hosted on ww.wp.xz.cn)?
Forum: Plugins
In reply to: [Comment Mail] Problem with duplicate content@samilyjones You should use Google Webmaster Tools to block access to
?comment_mail:
https://support.google.com/webmasters/topic/4598466?rd=1For example, you can add the following to your
robots.txtfile to block the Google Web Crawler from indexing specific pages:User-agent: * Disallow: /?comment_mail*There’s no reason for Google to attempt indexing of those pages.
Forum: Plugins
In reply to: [Comet Cache] White Screen of Death@webinautcom Also, as per the WordPress Forum guidelines, in the future please open a new support thread instead of posting to someone else’s, as it helps prevent unnecessary notifications to other people and helps us solve each individual issue.
Forum: Plugins
In reply to: [Comet Cache] White Screen of Death@webinautcom If you follow the uninstallation instructions, Comet Cache will be completely removed from your site. If problems persist after following those uninstallation instructions, then the issue is not being caused by Comet Cache.
Can you tell me which version of PHP your site is running? Also, do you know what web server (Apache? NGINX?)?
Forum: Plugins
In reply to: [Comment Mail] Problem with duplicate content@samilyjones Hmm, I’m not sure what “Tags duplicate title” means. Can you give me some more information?
Forum: Plugins
In reply to: [Comet Cache] CometCache breaks GravityForms ReCaptchaJust an update: The Gravity Forms developer got in touch with me and I’m investigating this issue more closely now that I have a copy of the plugin.
Forum: Plugins
In reply to: [Comet Cache] Compatible with load balancer?@jamesja Yes, it should be compatible and there should be no special settings required. Load balancer configurations vary from host to host, so I recommend asking your system administrator or data center if the load balancer is compatible with WordPress caching plugins. They will know if any special configuration is necessary.
Forum: Plugins
In reply to: [Comment Mail] PHP Code to add subscriber@theupdatecompany Cool. 🙂 Glad to hear you got it working.
For future reference, we’re not allowed to provide support for the Pro version here on the ww.wp.xz.cn forums, but since you have a license you’re more than welcome to open a support ticket or post your questions on our main community forum. Thanks for going Pro! 🙂
Forum: Plugins
In reply to: [Comment Mail] PHP Code to add subscriber@theupdatecompany Try something like this:
<?php use WebSharks\CommentMail\SubInserter; $sub_insert_data = array( 'post_id' => 123, 'status' => 'subscribed', 'deliver' => 'asap', 'fname' => 'John', 'email' => '[email protected]', ); $SubInserter = new SubInserter($sub_insert_data); // Inserts new subscriber. if ($SubInserter->hasErrors()) { print_r($SubInserter->errors()); //print_r($SubInserter->errorCodes()); //print_r($SubInserter->errorsHtml()); }Also, I opened a feature request to add the
SubInserter()method to the Comment Mail API so that this can be done more easily in a future version: https://github.com/websharks/comment-mail/issues/290Forum: Themes and Templates
In reply to: [Independent Publisher] Remove featured image from front page@majapiraja Glad you’re enjoying the theme. 🙂 You can add the following CSS to a Child Theme or if you’re using Jetpack with the Edit CSS module enabled, you can add this to Appearance → Edit CSS:
.blog .entry-content .wp-post-image, .archive .entry-content .wp-post-image { display: none; }