Email not showing weblink anymore
-
Hi there,
i am using WP-forms on 2 parts of my website.
1 on the contact page with just the form in a shortcode [wpforms id=”119519″], the email that we get in our inbox normally had the example.com/contact but now it shows example.com/?action=as_async_request_queue_runner&nonce=e8093757b7. We can’t see where the email is from now.The second place we have this form is on our productpages and we got in there with a function in functions.php with this:
add_filter( 'woocommerce_product_tabs', 'product_enquiry_tab' ); function product_enquiry_tab( $tabs ) { $tabs['test_tab'] = array( 'title' => __( 'Meer weten?', 'woocommerce' ), 'priority' => 50, 'callback' => 'product_enquiry_tab_form' ); return $tabs; } function product_enquiry_tab_form() { global $product; //If you want to have product ID also //$product_id = $product->id; $subject = "".$product->post->post_title; //echo "<h3>"Geef aan wat u over het product wil weten"</h3>"; echo do_shortcode('[wpforms id="119519"]'); //shortcode van contactformulier ?> <script> (function($){ $(".product_name").val("<?php echo $subject; ?>"); })(jQuery); </script> <?php }
Also forms that get send from a productpage now show a weird weblink like the one above from our contactpage. We didn’t change anything and it worked perfectly for a long time.
Hope this is enough information about the problem,
Sjoerd
- The topic ‘Email not showing weblink anymore’ is closed to new replies.