rahul.sahni0105
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Error Mesages – plugin doesnt workPlease note that the plugin still works if you enter the generated tag in the form…
Only the form fields to generate the tag do not show upForum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Error Mesages – plugin doesnt workAlso, the obfuscate parameter doesnt work…the email address is still shown as plain text (albeit hidden) in the source code.
Forum: Plugins
In reply to: [Contact Form 7 - Dynamic Text Extension] Error Mesages – plugin doesnt workYup, Same problem here..
On selecting the dynamic text field from the generate tag drop down, none of the input fields show in the right pane.
The error message is the same as above, shown at the bottom of the page.
Pls help.
Thanks & Regards
Forum: Plugins
In reply to: [The Events Calendar] Previous Event Not Letting Me Link to Next EventIf you want to use it and wait for the fix use a older version like 3.4.1, this problem started after 3.5. Till the time they are fixing the issue this is the best thing I can come up with. I hope they fix this issue ASAP.
I am also having the same issue since past few days and this thing is happening in all of my event calendar installs. I have everything updated to the latest and even tried to switch to default wordpress theme to test if its theme issue, still same issue even deleted and re installed the plugin but still no change. Please help me also to resolve the issue.
here is the link to my event calender: http://www.clearsouthasia.org/activities/past/
Forum: Plugins
In reply to: [The Events Calendar] Previous Event Not Letting Me Link to Next EventHi,
Even on my website previous and next button not working in the list view. When you click previous event some ajax runs and link changes from pretty permalink to normal but listed events remains the same. Even if you click again same thing happens. Even on my install everything is up to date, can you help me in fixing this?
Any luck in resolving this problem. At my end its uber menu which is causing this trouble @yanickdev if you find out the crack please do share even i really want uber menu on my website.
Forum: Plugins
In reply to: [WooCommerce] Restrict payment options based on productHey Sean Donovan,
How much will you charge to make this into a plugin. Say we want a box on the products page, where you can select the payment methods available for that product?
Forum: Plugins
In reply to: [WooCommerce] Partial Payment@rafa23 how did you set up ‘Name Your Price Plugin’ to accept partial payments?
Forum: Plugins
In reply to: [WooCommerce] Add fields to woocommerce registration formHi,
I managed to map the WP default profile fields, first name and last name in woocommerce by modifying templates/myaccount/form-login.php and woocommerce-functions.php using the following tutorial as a base:
http://tommcfarlin.com/add-custom-user-meta-during-registration/As per the instructions, I made the following edits:
1. Added the following to form-login.php
<div class="form-row form-row-first"> <label for="reg_firstname"><span class="required">*</span> <strong><?php _e('Firstname', 'woocommerce'); ?></strong></label> <input type="text" class="input-text" name="firstname" id="reg_firstname" size="30" value="<?php if (isset($_POST['firstname'])) echo esc_attr($_POST['firstname']); ?>" /> </div> <div class="form-row form-row-last"> <label for="reg_lastname"><span class="required">*</span> <strong><?php _e('Lastname', 'woocommerce'); ?></strong></label> <input type="text" class="input-text" name="lastname" id="reg_lastname" size="30" value="<?php if (isset($_POST['lastname'])) echo esc_attr($_POST['lastname']); ?>" /> </div>2. Added the following to woocommerce-functions.php in the function woocommerce_process_registration()
$user_firstname = isset( $_POST['firstname'] ) ? trim( $_POST['firstname'] ) : ''; $user_lastname = isset( $_POST['lastname'] ) ? trim( $_POST['lastname'] ) : '';and
$new_customer_data = array( 'user_login' => $sanitized_user_login, 'user_pass' => $password, 'user_email' => $user_email, 'role' => 'customer', 'first_name' => $user_firstname, 'last_name' => $user_lastname );The thing is that while #1 can be achieved by overriding the woo templates through your theme but I am not sure how to modify / override a specific function. The only problem is that if the plugin is updated, you will lose the changes in #2 and will have to make the changes again.
As far as adding custom fields like “Where did you hear about us” might be possible using the same method above.
Hope it helps!