Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Insert this snippet in your wp-content/theme/child-themes/functions.php file. to allow additional post form in the account page*/
- add_filter( 'wpuf_account_sections', 'add_new_post_form_in_my_account' );
- function add_new_post_form_in_my_account( $sections ) {
- $sections = array_merge( $sections, array( array( 'slug' => 'add-product-form', 'label' => 'Add Product' ) ) );
- return $sections;
- }
- add_action( 'wpuf_account_content_add-product-form', 'wpuf_product_page_section', 10, 3 );
- function wpuf_product_page_section( $sections, $current_section ) {
- echo do_shortcode('[wpuf_form id="2564"]'); /* Use your (http://prntscr.com/10jx9tc) post form's shortcode which you want to render on the My Account page*/
- }
Add Comment
Please, Sign In to add comment