• Resolved sjoerd89

    (@sjoerd89)


    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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Jeremy

    (@jrh001)

    I am also experiencing this problem now where the {page_url} smart tag does not return the URL of the page where the form was submitted, but a query string related to cron job, e.g.:

    /?doing_wp_cron=[long string of numbers]
    /?action=as_async_request_queue_runner&nonce=[number string]

    Thread Starter sjoerd89

    (@sjoerd89)

    I am also experiencing this problem now where the {page_url} smart tag does not return the URL of the page where the form was submitted, but a query string related to cron job, e.g.:

    /?doing_wp_cron=[long string of numbers]
    /?action=as_async_request_queue_runner&nonce=[number string]

    Hopefully we will get an answer soon, if i find something myself i will let you know

    Plugin Support Ethan Choi

    (@ethanchoi)

    Hi @sjoerd89 and @jrh001,

    Sorry for the trouble with that! We’ll be releasing a plugin update this week that should fix this issue. We’ll provide an update here when we have more details.

    Thanks!

    Thread Starter sjoerd89

    (@sjoerd89)

    Sorry for the trouble with that! We’ll be releasing a plugin update this week that should fix this issue. We’ll provide an update here when we have more details.

    THANKS!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Email not showing weblink anymore’ is closed to new replies.