Fetch Designs
Forum Replies Created
-
Forum: Plugins
In reply to: [Sign-up Sheets] Shut off cron functionalityYou can disable the reminder cron by going to Sign-up Sheets > Settings > Reminder E-mail and then uncheck “Enable Reminders” and then click the “Save Changes” button.
Forum: Plugins
In reply to: [Sign-up Sheets] Short code displaying as textCan you please confirm which version of the Sign-up Sheets plugin you are running? Also, can you copy/paste the exact shortcode you are using here so I can take a closer look?
This is still an issue. Please advise.
Forum: Plugins
In reply to: [Sign-up Sheets] Shortcode CategoryTo display sheets within just a single category you can use
[sign_up_sheet category_slug="your-slug"]Just replace
your-slugwith the slug of the category you want to display which you can find under Sign-up Sheets > Sheet CategoriesYou can find more details on how to use the shortcode at…
https://www.fetchdesigns.com/doc/sign-up-sheet-shortcode/Forum: Plugins
In reply to: [Sign-up Sheets] Not working Sign-up SheetCan you confirm which versions of the Sign-up Sheet plugin and WordPress you are using? Typically if a shortcode is displaying like that in plain text it means one of two things…
- The plugin may need to be activated – TO FIX: go to your “Plugins” page in your WordPress admin and look for the Sign-up Sheets plugin and verify it is the one by the author “Fetch Designs” and that it is activated.
- There may be a problem with the shortcode text… sometimes this happens with copying and pasting where special characters are included but may not be visible or may have the quotes accidentally swapped out for smart quotes. – TO FIX: Try deleting the shortcode from your page and manually typing it in
[sign_up_sheet]without copy/paste just in case.
Please let me know if that resolves your issue or if not, what version you are running of both the Sign-up Sheets plugin and WordPress.
Forum: Plugins
In reply to: [Sign-up Sheets] TranslateSupport for translations has now been released with version 1.0.13.
Forum: Plugins
In reply to: [Sign-up Sheets] TranslateThe Pro version currently has the POT file and this should also be rolled out to the free version with the next update to allow for translations.
Forum: Plugins
In reply to: [W3 Total Cache] 403 Forbidden When using Page Cache Disk: EnhancedUpon further inspection, we determined this is happening because we have the site locked down within the wp-content directory to help prevent malicious code execution for security purposes with the following file…
OLD: wp-content/.htaccess
# BEGIN Lock down wp-content directory Order deny,allow Deny from all <Files ~ ".(xml|css|jpe?g|png|gif|js|pdf|svg|ttf|woff|woff2|woff3|otf|eot)$"> Allow from all </Files> # END Lock down wp-content directoryWe updated it to include the following extensions to the allow list:
html_gzip|css_gzip|js_gzipso the new file is as follows…NEW: wp-content/.htaccess
# BEGIN Lock down wp-content directory Order deny,allow Deny from all <Files ~ ".(xml|css|jpe?g|png|gif|js|pdf|svg|ttf|woff|woff2|woff3|otf|eot|html_gzip|css_gzip|js_gzip)$"> Allow from all </Files> # END Lock down wp-content directoryAny update on this?
In our case, we do a database clean when we back port from production to our local environments and 2FA is causing issues locally. Since it’s not needed on those environments we are hoping to add a piece to our MySQL sanitization script to disabled 2FA when we copy from production to our local environments.
Forum: Plugins
In reply to: [W3 Total Cache] W3 TOTAL CACHE FATAL ERRORIs this a new issue? We weren’t experiencing this prior to updating from 0.10.1 to 0.13.1
Sent
Forum: Plugins
In reply to: [Disqus Comment System] Undefined index: HTTP_HOSTJust checking on the status of this. It looks like it’s not yet fixed in the current version (3.0.16).
Thanks in advance!
Forum: Plugins
In reply to: [Disqus Comment System] Undefined index: HTTP_HOSTWe are having the same issue. I believe it’s occurring because we have
define('DISABLE_WP_CRON', true);and are running our cron with a real cron job usingphp /path/to/wp-cron.phpWe resolved by updating line 167 to…
$current_host = isset($_SERVER['HTTP_HOST']) ? $_SERVER['HTTP_HOST'] : '';If you could roll a fix for this into the next update it would be most appreciated. 🙂
- This reply was modified 8 years, 2 months ago by Fetch Designs.
Forum: Plugins
In reply to: [W3 Total Cache] Where is w3tc_varnish_flush() and w3tc_varnish_flush_post()?Thanks for the tip! It’s definitely beyond me why they were removed as well.
In fact, in addition to those functions being removed we also noticed that after the upgrade our “Reverse Proxy” settings were wiped out… the
Enable reverse proxy caching via varnishhad been checked, but was now unchecked and theVarnish serverswe had listed were empty after the upgrade.