pankaj-jst
Forum Replies Created
-
Hi Mrinal,
Thanks for the reply but the bank transfer method is not working. Whenver i select the “Bank Transfer” option in frontend. It redirects back to form page.
Please also let me know. How to integrate “Credit Cart” payment transfer separately in this Payment Methods.
Hello tkei,
I was got the same problem. But i found the way to solve this problem. May be it’s not a good and proper way. But it works for me.
For change the category listing on backend.
Go to:- wp-content/plugins/wp-user-frontend/admin
edit form.php and change the code near to line no. 732$taxonomy = ‘w2dc-category’; //new category name
wp_dropdown_categories( array(
‘hide_empty’ => false,
‘hierarchical’ => true,
‘selected’ => $default_cat,
‘name’ => ‘wpuf_settings[default_cat]’,
‘show_option_none’ => __( ‘- None -‘, ‘wpuf’ ),
‘taxonomy’ => $taxonomy) );
For change the category listing on frontend.
Go to:- /wp-content/plugins/wp-user-frontend/classedit render-form.php and changes need to done on line no. 1212
Just change it like
$taxonomy = ‘w2dc-category’; /*$attr[‘name’]*/Hope that this can help you.