tlash
Forum Replies Created
-
Forum: Plugins
In reply to: [Age Gate] custom field set cookiePhil,
You are awesome. thank you.Forum: Plugins
In reply to: [Age Gate] custom field set cookieHi Phil,
Turns out I do need some guidance on a JS version as our server cache requires i use JS.When I use the code above, I see the cookie is set in the browser cookie, but when I inspect with dev tools it’s not there. Switching off JS and then I see the cookie in dev tools.
Thanks in advance.
Forum: Plugins
In reply to: [Age Gate] setting a field name for a custom fieldHi Phil,
With all three functions above, including the my_field_names, I still see “The Ag Field Terms field is required”Forum: Plugins
In reply to: [Age Gate] custom field set cookieThanks! that works great. There’s another issue but i will open separate item.
Forum: Fixing WordPress
In reply to: Class __PHP_Incomplete_Class has no unserializerThis just happened to one of my sites. saw the same error on mobile only with WP 4.7.1 on godaddy. In your managed dashboard there’s a godaddy menu. There’s an option to flush the cache. That worked without calling support.
Hope this helps somebody. this thread definitely helped me.
Forum: Plugins
In reply to: [User Access Manager] UAM | Ultimate MemberMkwadraat,
Did you resolve this? How? I’m looking for the same solution.when i use UAM and try to restrict files, it restricts all of them. I just want to restrict files attached to specific posts.
thanks1
Forum: Plugins
In reply to: [WP Store Locator] How to list stores with responsive columnsThis custom CSS will give you three columns.
/*store location */
#wpsl-result-list li {
width: 33%;
float:left;
}this will revert to one column when the screen size is narrower than 767px (ipad mini) you can change that to be 480 so it’s just phone, etc.
@media screen and (max-width: 767px) {
#wpsl-result-list li {
width: 100%;
float:left;
}
}- This reply was modified 8 years, 1 month ago by tlash.
Forum: Plugins
In reply to: Woocommerce colour picker popupbump. Looking for the same thing. did you find a solution?
Forum: Fixing WordPress
In reply to: WordPress 4.3 – Unable to disable sending password to usersi reposted this in the support forum:
We need an option to NOT SEND EMAIL TO NEW USER
in 4.3, when adding a new user from the backend: wp-admin/user-new.php
Under the password generator, there’s text that states:
A password reset link will be sent to the user via email.I am suggesting that there be a checkbox to toggle that action:
[x] A password reset link will be sent to the user via email.Myself, like many other bloggers i suspect, have guest bloggers where i produce the content. They never login. But, i need to create an account for them so that the metadata Author field works properly. I don’t want to send them any automated notifications.
Long time wordpress developer managing 20+ installations.
Forum: Fixing WordPress
In reply to: WordPress 4.3 – Unable to disable sending password to usersi might add that there’s a caching bug in the current form. When i click show password on the /wp-admin/user-new.php i see the last registered user’s password. Which is significant security issue
Forum: Fixing WordPress
In reply to: WordPress 4.3 – Unable to disable sending password to usersSkipping over the irony that in order to post on this forum i had to register—which sent me a password in email clear text—I am requesting a feature for 4.3.1 that there be added a checkbox to send the new registered user an invite or not.
I’m okay with that email asking them to pick or change their password. I just don’t always want that message to be sent, and i don’t want to disturb the mailer or a user from using the forgot password function when they need it.