• Hi all,

    is it allowed to remove the credit line / copyright (located under the message text field) from CFORMS?
    And if so where can I do it??

    Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Chaz

    (@eternalskychaz)

    You can ask, and he will tell you that you can remove the link, but he will NOT tell you how. There was one site that told how to do that and it seems to have vanished.

    http://snypshop.com/en/how-to-remove-cformsii-love-links/

    1) find line 1022 (or 1023) in cforms.php – it should look like this:
    $content .= $ntt . '<p class="linklove" id="ll'. $no .'"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>';

    2) add two slashes in front of this code to comment this out and you’ll be set. When you are done, it should look like this:
    // $content .= $ntt . '<p class="linklove" id="ll'. $no .'"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>';

    Another option that keeps the copyright text on the page (but hidden from display) is to locate the CSS file for the styling you have set for your forms (contained in directory: plugins/cforms/styling), the find the style definition for “linklove” and add the following attribute:

    .linklove {
    	...
    	<strong>visibility: hidden;</strong>
    }

    This has worked well for me and keep the author credit in tact.

    ppearson

    thanks for the sharing that info. However for minee i had to remove the strong code. so in the end it looks like this.

    .linklove {
    width:410px;
    margin:0 auto 10px!important;
    padding:0!important;
    text-align:center!important;
    visibility: hidden;
    }

    Hope this helps others. But i would also encourage making a small donation to the author.

    heres the easy way:
    remove:
    <p class=”linklove” id=”ll’. $no .'”>cforms contact form by delicious:days

    from the cforms.php
    done.

    If you have access to the .css file you can just add…

    p.linklove { display:none; }

    and it’ll go away (no display but it will stay in the source code)

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Removing credit line from CFORMS allowed?’ is closed to new replies.