Plugin Directory

Changeset 1445021


Ignore:
Timestamp:
06/28/2016 02:44:27 PM (10 years ago)
Author:
skittery
Message:

Fixed a bug on WP 4.5.3

Location:
send-ref
Files:
3 added
3 edited

Legend:

Unmodified
Added
Removed
  • send-ref/tags/0.1/send-ref.php

    r1403268 r1445021  
    1111
    1212function send_ref_Shortcode( $atts ){
    13    
     13    $ref = '';
    1414    foreach ($_GET as $key => $value) {
    1515        $ref .=  "<input type='hidden' name='$key' id='$key' value='$value'>";
     
    4242function send_ref_plugin_text(){ ?>
    4343
    44    
     44
    4545    <br><br><br>Add the following where you want the hidden fields to be:<code>[send_ref]</code>
    4646<?php } ?>
  • send-ref/trunk/readme.txt

    r1403268 r1445021  
    33License: GPLv2 or later
    44License URI: http://www.gnu.org/licenses/gpl-2.0.html
    5 Stable tag: 0.1
     5Stable tag: 0.2
    66Add hidden fields to Contact Form 7 (or other contact forms) with all the parameters in the URL.
    77
  • send-ref/trunk/send-ref.php

    r1403268 r1445021  
    1111
    1212function send_ref_Shortcode( $atts ){
    13    
     13    $ref = '';
    1414    foreach ($_GET as $key => $value) {
    1515        $ref .=  "<input type='hidden' name='$key' id='$key' value='$value'>";
     
    4242function send_ref_plugin_text(){ ?>
    4343
    44    
     44
    4545    <br><br><br>Add the following where you want the hidden fields to be:<code>[send_ref]</code>
    4646<?php } ?>
Note: See TracChangeset for help on using the changeset viewer.