Support

Account

Home Forums Add-ons Repeater Field Link image repeater field Reply To: Link image repeater field

  • Hi @krislynn
    I think the issue is you are assuming the wrong variables.

    You have saved the link data as:

    
    $textfield_1 = $rows[$random_1]['link'];
    

    You should echo the link like this:

    
    <?php echo $textfield_1; ?>
    

    not,

    
    <?php echo $textfield_1['link']; ?>
    

    Please debug your variables before posting back a reply.

    Thanks
    Elliot