tejinder
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: .htaccess, Paypal & Wishlist Member troubleHere is my problem:
I have a membership-based online site where users can buy membership and access all categories and post
I need user can click on paypal button and then redirect to paypal after payment return to welcome page and automatically username and password sent to user by email.For this i am using wordpress and wishlist plugin.
i setup the plugin and theme, also create paypal button as per instructions.
i place the button code by clicking on a Paypal button within my website . They are then redirected to Paypal to make payment and then e re-directed to my website to complete a registration form. after registration a confirm email sent to user.here my problem starts.
First of all after payment no email sent to user in which username or password include but before i buy this plugin i see this video (listen at 11.00) you said automatically username and password sent to user after payment https://member.wishlistproducts.com/23-paypal-integration-wp27/Second problem, if user disconnected after payment for example get 404 page error or browser hangs or internet disconnect not able to access registration form after payment then how user access the site.
Third problem, after payment and filling registration form a confirmation email including confirm your email link sent to user this is for what, if user already paid then why this email is sent?
and you can you please tell me how i make wishlist plugin code readable, is there any software ?
Please Help!
disabled my tinymce editor. problem solved
Replace this code to in visitor-likedislike-post-rating.phpfunction LoadExtensions() { $plugin_JS_path = get_option('siteurl').'/wp-content/plugins/visitor-likedislike-post-rating/js/'; wp_deregister_script('jquery'); wp_enqueue_script('jquery', $plugin_JS_path.'jquery-1.3.2.min.js', FALSE, '1.3.2'); } }
ADD This code>>>>>
function LoadExtensions() { if(!is_admin()) { $plugin_JS_path = get_option('siteurl').'/wp-content/plugins/visitor-likedislike-post-rating/js/'; wp_deregister_script('jquery'); wp_enqueue_script('jquery', $plugin_JS_path.'jquery-1.3.2.min.js', FALSE, '1.3.2'); } }