bcgsam
Forum Replies Created
-
Yes, that setting is checked. I just submitted the form to test it again, and the “Reply to” email in that test is still the admin email that is saved in the general WP settings. Shouldn’t it be the customer email that was submitted with the form?
Forum: Plugins
In reply to: [Simple Business Directory - AI Powered] SBD shortcode generator bugI have the same thing happen on my end as well. I also have to refresh to get out of it. Glad it not just me! I wonder why that is?
Forum: Plugins
In reply to: [Simple Business Directory - AI Powered] Remove Hover AnimationI found a workaround with CSS! For anyone trying to do the same thing, this worked for me.
I added this under the settings and custom CSS section:
li:hover {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}h2 {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}h3 {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
-webkit-animation: none !important;
}Might be a little overkill, but it got the job done. Feel free to experiment for whatever your own needs are.