Raam Dev
Forum Replies Created
-
Forum: Plugins
In reply to: [Comment Mail] No subscription options displayingIn that case it sounds like your theme might not be following the proper WordPress standards. See the following from the Comment Mail inline docs:
This template is connected to one of two hooks that are expected to exist in all themes following WordPress standards. If the comment_form_field_comment hook/filter exists, we use it (ideal). Otherwise, we use the comment_form action hook (most common). This is how the template is integrated into your comment form automatically. If both of these hooks are missing from your WP theme (e.g., subscr. options are not showing up no matter what you do), you will need to seek assistance from a theme developer.
If your theme doesn’t use either of those standard hooks, you’ll need to manually tweak your theme to call the Comment Mail subscription options from the appropriate place. The following will display the subscription options:
<?php comment_mail::subOps(); ?>Note that you must disable the built-in template in the Comment Mail options before doing this: Comment Mail β Config. Options β Comment Form
Forum: Plugins
In reply to: [Comment Mail] No subscription options displaying@whatwhatwhatwhat Just to confirm, in Comment Mail β Config. Options β Comment Form, you have it set to “Yes, use built-in template system”, correct? Also, can you confirm which version of Comment Mail you’re using?
Forum: Plugins
In reply to: [Comet Cache] Home Page cleared dailyCould a plugin just cause cache clearning without supporting Comet Cache ?
Yes, any plugin that you install in WordPress could trigger any of the WordPress hooks that Comet Cache listens for, which means that any other plugin is capable of causing Comet Cache to clear the cache without that plugin having any knowledge of Comet Cache.
This is all made possible by the WordPress Plugin API, which makes it possible to build plugins that integrate tightly into the entire WordPress platform. That means if, for example, a plugin that knows nothing about Comet Cache saves a post in WordPress, Comet Cache should automatically know that it needs to clear the cache for the post that was just saved. This is both good and bad. It’s good because it means automatic integration with nearly all other WordPress plugins, but it can be bad if other plugins fire hooks without considering the greater effects to the rest of the WordPress site.
Forum: Plugins
In reply to: [Comet Cache] Home Page cleared daily@massimod It sounds like you have another plugin installed that’s firing a hook on a daily basis that Comet Cache attaches to as a sign that the Home Page cache needs to be cleared.
Here’s a list of actions that Comet Cache hooks into in various ways:
https://github.com/websharks/comet-cache/blob/170220/src/includes/classes/Plugin.php#L490-L551However the easiest way to find the culprit will likely be to disable other plugins one-by-one until you find the one that’s causing Comet Cache to clear the cache.
@albertvincentj Could you clarify what you mean by “page/homepage header image and text settings”? And just to confirm: you’re using the theme on a self-hosted site, not a WordPress.com site, correct?
Forum: Plugins
In reply to: [Comet Cache] Title Bar Search Missing@inndesign Awesome! Glad to hear the issue has been resolved and that you’re enjoying Comet Cache. π
Now that you mention that you were using a much older version of Comet Cache, I remember there was a time when Comet Cache disabled the Admin Bar in certain scenarios but we resolved that issue more than six months ago and now it doesn’t disable the Admin Bar for any reason.
Forum: Plugins
In reply to: [Comet Cache] Title Bar Search Missing@inndesign I just tested this by installing and activating Comet Cache v170220 and visiting the front-end of my site: the search in the top-right did not disappear and works just fine. There’s something else on your site, likely another plugin, that is hiding the search in the Admin Bar.
Also, when logging in, then clicking out to view the site, the admin bar disappears where a admin is shown logged in from the login page of Magic Members, but the missing admin bar does not allow returning?
Comet Cache does not hide the Admin Bar for any purpose. If the admin bar is being hidden, I suggest disabling other plugins one-by-one and retesting until you find the plugin that is causing this issue. Perhaps Magic Members is disabling the admin bar when it detects a caching plugin is enabled?
- This reply was modified 9 years, 3 months ago by Raam Dev.
Forum: Plugins
In reply to: [Comet Cache] exclude some part of the page that being not cached@shethdhaval What you’re referring to is called “Dynamic Fragmentation”. Comet Cache does not currently support that as there are many security implications. You can read more about this and leave a comment to show you vote for this feature here: https://github.com/websharks/comet-cache/issues/222
Forum: Plugins
In reply to: [Comet Cache] Empty Folders@massimod Thanks so much for following up. π I’m happy to hear the latest version resolved the issue for you.
Forum: Plugins
In reply to: [Comet Cache] Strange Folder links in cache directory ?@massimod That’s because you have 404 Caching enabled (Comet Cache β Plugin Options β 404 Requests).
The way 404 Caching works is Comet Cache generates a single cache file for your 404 error page (
----404----.htmlin your screenshot) and then generates symlinks (pointers) to the 404 error page cache file every time someone tries to visit a URL that returns a 404 “Not Found” error.So, it looks like someone tried to visit
/hook-filters.phpon your site and since that’s not a valid page, Comet Cache generated a symlink forhook-filters-php.htmlthat points to----404----.html(the actual 404 error page cache file).In other words, what you’re seeing is entirely normal. π
Forum: Themes and Templates
In reply to: [Independent Publisher] Remove Author Bio in Multi Author ModeBy the way, I love how you’ve customized the theme for your site! Beautiful. π
Forum: Themes and Templates
In reply to: [Independent Publisher] Remove Author Bio in Multi Author Mode@abrokenmuse The easiest way would be to add some custom CSS that hides that:
.single .site-description { display: none; }You can use Jetpack’s Custom CSS module (and then add the above to Appearance β Edit CSS) or use a Child Theme and add that to
style.css.- This reply was modified 9 years, 3 months ago by Raam Dev.
Forum: Plugins
In reply to: [Comet Cache] JS conflict after updating WP 4.7.2@im_a_marvel Also, please make sure you’re running the latest version of Comet Cache (v161221).
Forum: Plugins
In reply to: [Comet Cache] JS conflict after updating WP 4.7.2@im_a_marvel I’ve done lots of testing of Comet Cache on WP 4.7.2 and I’m not seeing any problem at all. Can you please test in a clean WordPress installation and if you’re still having issues, please check the JavaScript console in your browser and let me know if you see any errors there (in Chrome, you can access the JavaScript console by going to View β Developer β JavaScript Console).
Forum: Reviews
In reply to: [Comet Cache] ItΒ΄s a gret tool, but…@ibiza69 It’s not about enabling JavaScript. The Super Socializer plugin needs to be updated so that it uses AJAX (a method of updating things via JavaScript) instead of relying on a page refresh to refresh the counters.
If you try using something like Jetpack’s Sharing feature, with the official sharing buttons (see screenshot), you’ll see that those counters update just fine even when Comet Cache is caching the page.