• Hello,

    I just want to know, after upgrade Contact Form 7 the module that i upload is deleted also.

    Is there any way to make it not removed automatically? or is there need to register in some part to tell that the modules is used by another plugins so that there is no need to re-upload again?

    Best Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • @harrysudana You can make your module as an independent plugin. For example, define a function of module process, and load it on ‘init’ action, like this:

    your-module-as-a-plugin.php

    function your_module_for_contactform7() {
    	... your module's codes here ...
    }
    
    add_action( 'init', 'your_module_for_contactform7' );

    Please inform me where is the ‘init’ action so I can use a form in my wp blog.
    Thank you.
    Maperip.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘[Plugin: Contact Form 7] About custom Module’ is closed to new replies.