tcumpston
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Read Only Breaks DisplayJeff, can you send me your email address and I’ll add you as a site member. I’m using the plug in to push messages to a group of meeting attendees. Only a logged in person can post messages. Everyone else is just viewing.
Forum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] Read Only Breaks Displayhttps://WSAAI.org/livestream
Password is wsaai2022Form is on the very bottom of the page.
Forum: Plugins
In reply to: [Force Login] Reset Password Not WorkingThanks Kevin. I removed the posts code (though we didn’t have any posts for people to access anyway). Thanks for the heads up. I switched over to the is_page and seems to be working better. Thank you for the quick reply.
Forum: Plugins
In reply to: [Gravity PDF] Add PDF download link to a users account pageDid you figure out a solution to your question? I need to do the same thing and am hoping you can share your results.
Forum: Plugins
In reply to: [Content Visibility for Divi Builder] && replaced by &аmp;&аmp;how did you solve this?
Forum: Plugins
In reply to: [Content Visibility for Divi Builder] Test user roleI changed to current_user_can(“role-a”) and it sort of works. I have 3 rows with 3 different images.
The first row has !is_user_logged_in() and that image shows when the user is not logged in. WORKS PERFECT.
The second row has current_user_can(“role-a”) and that image shows when the user’s role is role-a. WORKS PERFECT.
The second row has current_user_can(“role-b”) and that image shows when the user’s role is role-b. CURRENTLY SHOWS THE IMAGE FOR A AND B.
Forum: Plugins
In reply to: [Network Subsite User Registration] Page RedirectSo I ended up doing the following:
// Automatically Log User After Registration add_action( 'gform_user_registered', 'vc_gf_registration_autologin', 10, 4 ); function vc_gf_registration_autologin( $user_id, $user_config, $entry, $password ) { $user = get_userdata( $user_id ); $user_login = $user->user_login; $user_password = $password; wp_signon( array( 'user_login' => $user_login, 'user_password' => $user_password, 'remember' => false ) ); // wp_redirect( '/registration_complete' ); // exit; }
and then created my own page with information I want them to have.
Forum: Plugins
In reply to: [Disqus Comment System] Error Updating the databaseI have tried to disable all plugins during the upgrade, deleted the htaccess file, change the theme but non of these options worked. Any ideas?
Forum: Plugins
In reply to: [Theme My Login] Server ErrorI just disabled the plug in and used WP’s lost password feature. It worked perfectly. When I activate your plug in, the lost password link doesn’t work. Thoughts?
Forum: Plugins
In reply to: [Theme My Login] Server ErrorI just checked the logs and I don’t see any errors pertaining to TML.
Forum: Plugins
In reply to: [Theme My Login] Server ErrorAnyone??
Forum: Plugins
In reply to: [Theme My Login] Server ErrorI should mention that the site is https://wsaai.org.
Forum: Plugins
In reply to: [Calculated Fields Form] If Statement Returning TextWorked like a charm. Thanks!