• Resolved elimariaaaa

    (@elimariaaaa)


    Hi,

    Is there a way to change field names without going directly to the plugin files?
    I tried to change one field – from title to Company name, and I changed it here: wp-crowdfunding/shortcode/Submit_Form.php

    //Title
                $html .= '<div class="wpneo-single">';
                $html .= '<div class="wpneo-name">'.__( "Company Name" , "wp-crowdfunding" ).'</div>';
                $html .= '<div class="wpneo-fields">';
                $html .= '<input type="text" name="wpneo-form-title" value="'.$title.'">';
                $html .= '<small>'.__("Put the Company Name here","wp-crowdfunding").'</small>';
                $html .= '</div>';
                $html .= '</div>';

    But I’m worried it will be overwritten once an update comes up. How can I handle this?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Ashfiqur Rahman Anim

    (@anim07)

    Hello @elimariaaaa

    This is the best way to override the form. The best option is to make the edit in the child themes funtion.php file. That is the way we suggest to our other users too. Its best in this way and also updating will not make any major difference if you use the child theme. Hope this is clear.

    Best regards

Viewing 1 replies (of 1 total)

The topic ‘Change Field Names outside Plugin’ is closed to new replies.