Remove FORCRAFT link from wordpress

0

We have developed a vehicle protection association system and a landing page for it ( Sistemavalor.com.br ). We use Wordpress to develop the landing page and to develop the contact forms we use the FORMCRAFT plugin. It turns out that at the end of the form the plugin adds the link "POWERED BY FORMCRAFT" . Does anyone know how I can edit this plugin or else know another similar plugin that does not add this link?

Thank you.

    
asked by anonymous 18.04.2016 / 17:50

1 answer

1

Friend, I think the quickest solution is this:

Add this CSS class to your main style.

a.powered-by {
    display: none!important;
}

form.fc-form.fc-form-1.align-.spin-.save-form-.dont-submit-hidden-.remove-asterisk-.icons-hide-.label-placeholder.frame-visible.field-alignment-left {
    margin-bottom: 20px;
}

The first CSS class is to permanently hide the text and the second is to adjust the margin.

    
18.04.2016 / 18:18