MethodMan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: .htaccess, regex, and wordpressGot it to work! Thanks for the help MethodMan! LOL.
‘# Redirect to new blog URL structure
RewriteEngine on
RewriteBase /
RewriteRule ^\d{4}\/\d{2}\/(.*)$ /blog/$1/ [R=301,L]’Forum: Fixing WordPress
In reply to: .htaccess, regex, and wordpressSo far this is what I have. Any suggestions to get it work?
`# Redirect
RewriteEngine on
RewriteBase /
RewriteRule ^\/\d{4}\/\d{2}\/(.*)$ /blog/$1/ [R=301,L]’Forum: Plugins
In reply to: [Fast Secure Contact Form] Workflow of Fast Secure Contact FormsResolved
Forum: Plugins
In reply to: [Fast Secure Contact Form] Workflow of Fast Secure Contact FormsFWIW, one solution I went with was the Salesforce solution above. We just used their code for a form. It worked. The only problem we were having was that we were getting so much spam, and there code had no way of blocking it.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Workflow of Fast Secure Contact FormsI haven’t found a simple answer. One of my standards for meeting HIPAA is encryption at rest, encryption during transmission. Here are some options that I ran into:
Gravity Forms with the Gravitate Plugin
https://wordpress.org/plugins/gravitate-encryption/Combine this with an SSL Certificate for the site.
Although it worked, I wasn’t comfortable maintaining it since it says the plugin is only compatible up to 3.6.1.
LuxSci SecureForms
https://luxsci.com/secure-formAlthough not a plugin, it is a service that allows you to embed a secure document on your site, in a HIPAA compliant manner. The only thing is that you are charged a monthly fee.
Writing the Code
I don’t have the skill to do this, but one option we were considering is writing the code to encrypt and decrypt either using the PHP encryption functions and/or the MySQL encryption functions.Hope this helps. Let us know if you came up with another solution!
Thanks again!
Thank you!
What do you mean by “WordPress does not any search engines”?
Forum: Plugins
In reply to: [W3 Total Cache] home page images goneI am not an expert on this, debating whether or not to install W3TC or go with WPSC.
With that said, it may be the CSS/JS file that may be the culprit. W3TC may not be updating correctly or pulling it correctly to show the animations.
Forum: Plugins
In reply to: [Fast Secure Contact Form] Salesforce IntegrationThanks. I tried looking at the documentation, but I don’t quite understand how to do the integration. Perhaps I will reach out to him.
BUMP. I am have been having the same problem, and can’t figure it out.
Forum: Themes and Templates
In reply to: [Tracks] Concept DevelopmentAhh. That makes so much sense. I was thinking it had to do with putting an image over the hover, but opacity makes so much sense and is an elegant solution.
Forum: Themes and Templates
In reply to: [Tracks] Changing the Color of the UnderlineThanks for pointing me in the right direction! There is one more I needed, and figured it out with your help: How to change the underline beneath the titles. The “:after” was really helpful. (I don’t quite understand how “:after” works, but it works!)
In case anyone else needs to change the underline:
.excerpt-header:after, .entry-header:after { background: #XXXXXX; }Forum: Plugins
In reply to: [Plugin: WP Glossary] Removing "Posted in ."I found it! It was in a content-single.php in the theme I was working in.
How did I find it? I used Google Chrome to see what the style sheet was calling the area I wanted. I searched all the files for that style. Then I commented out the relevant code.
Forum: Fixing WordPress
In reply to: HTML and PHP refreshes but not CSSThanks for the suggestion. I finally figured it out! After clearing out all the local caches, wordpress caches, the one place we did not clear was another cache.
We were using CloudFlare. CloudFlare had the paged cached. Excluding the CSS file solved the problem.
Forum: Plugins
In reply to: [Redirection] Regex RedirectionTrial and error. It worked.