Follow us on

Codestar Support Forum » WordPress Plugins » Codestar Framework

Remove added footer to my plugin settings page.

  1. How do you remove "Thank you for creating with Codestar Framework" from the left footer and and the version from the right footer from my plugin settings page?
    Thanks Russ

    Posted 1 year ago #

  2. Codestar
    Admin

    Hi Russ,

    Thanks for purchasing again. You can change it with "footer_credit" parameter.

    CSF::createOptions( $prefix, array(
    ...
      'footer_credit' => 'Add your footer credit text.',
    ...
    ) );
    
    // If you want to remove it only typing a space.
    'footer_credit' => ' ',CopyCopied!

    Regards, Codestar

    Posted 1 year ago #
  3. That worked! Thank you.

    Posted 1 year ago #

  4. Codestar
    Admin

    Nice, you’re welcome

    Posted 1 year ago #