CreativeFedora
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Form Not Submitting: Spinning ArrowsThanks for the reply. I did come across the page regarding conflicts that can occur with JavaScript. After reverting to a WP default theme (TwentyFifteen) I learned that the theme I was using from Theme Trust was compromised since Chrome and Firefox displayed a Cialis link in the header. After replacing the theme with a clean version of it CF7 started working as it should, and no Cialis link.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginAmazing! I really appreciate all your help. Thanks. I’ve learned quite a bit about php just tinkering with WP-Members and now Peter’s plugin.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginWow! Thanks much! I came across something similar while searching user_id in the WP codex. I think I’m ready to go.
How would I add an additional user besides ‘Fedora.’ For instance I want 2 users to be able to view the same page?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginThanks for following up on this matter. I’m unfamiliar with much of php but I’m sure I can tinker with it and figure it out.
Where would I put the code to test if a user is logged in?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginCorrect, I’m able to have the 5 user/pass combos and redirect to the specified page. However, I need the the pages to be password protected.
As of now each page is password protected via the post/page publishing options, but that requires a user to input an additional password once they are logged in and redirected to the specified page.
What WP-Members allows me to do is add a user/pass combo and redirect to the specific protected page without having to input an additional password.
The goal is to avoid having a secondary password to view the page.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginMy goal is to have 5 different users with respective passwords that when a user logs in they are directed to the specified page.
I’m able to get 90% done with WP-Members but after the login from the homepage the redirect leads to a blank homepage. Upon refreshing the blank page the redirect goes through.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginThanks Yoda. Peter’s plugin works well, but I do need the pages that I’m redirecting to to be password protected. I can password protect the pages via WP’s post/page publishing options but that forces the user to login to be redirecting and then input a password to see the page.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginThis is what the form code I’m using looks like:
add_filter( 'wpmem_sidebar_form', 'my_sidebar_form_filter' ); function my_sidebar_form_filter( $form ) { return ' <form name="form" method="post" action="' . $post_to . '"> <p>Please log in here if you have received a mailing asking you to prequalify</p> <div id="user-input"> Username: <input type="text" name="log" class="username" id="username" /> Password: <input type="password" name="pwd" class="password" id="password" /> <input type="hidden" name="rememberme" value="forever" /> <input type="hidden" name="redirect_to" value="' . $post_to . '" /> <input type="hidden" name="a" value="login" /> <input type="hidden" name="slog" value="true" /> <input type="submit" name="Submit" class="buttons" value="' . __( 'login', 'wp-members' ) . '" /> </div> </form>'; }Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect after loginThanks. The same situation happens with your code Chad, the login goes through but directs to a blank version of the home page. If I refresh the page, and after clicking to resend the info via the box that comes up, it loads up the correct page.
Try it out: http://www.opinionsearchusa.com/
Login: user1
Pass: user1Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect user to specific pagesThanks for pointing me in the right direction. I’m not a PHP programmer and am unfamiliar with much of the coding. Here’s where I’m starting off at and need guidance cleaning up the code and using the correct values.
add_filter( 'wpmem_login_redirect', 'my_login_redirect' ); function my_login_redirect() { if(username-a) { return 'http://www.opinionsearchusa.com/2013-ne-la/'; } }Forum: Fixing WordPress
In reply to: Adding Video – Not ResizingBump.
No one’s had issues with specifying the dimensions of a video?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect user to specific pagesThanks. I understand and implemented the login redirect for one user, but what I don’t understand is how to program to accommodate 5 users that lead to their respective survey pages.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Login in Header of pageI came across the filter wpmem_sidebar_form and used that to completely change the layout of the login in form. Pretty damn cool!
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Login in Header of pageThis is the link to the custom stylesheet that I’m using: http://www.hectorarandadesigns.com/sandbox/opinion/wp-content/themes/theme-opinion-search/wp-members.css
I followed the walk through on this page: http://rocketgeek.com/tips-and-tricks/setting-up-a-custom-wp-members-stylesheet/
I made a few tweaks, for instance color is set to red, and the color hasn’t changed.
As for adding the login form in the header. Do I use the form login code wp-member utilizes? I found the function/code within the wp-members-sidebar.php, would that be a starting point?
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Login in Header of pageOn a related note on customizing the coloring of the login widget I’ve specified the stylesheet (wp-members.css) in the custom stylesheet box in the settings, uploaded the file to my theme folder, and it’s linked properly, but when I make changes none of the them appear.
Any ideas why the changes are going through?