Comment 'Hello @Genesis !If...' to 'how to make recaptcha dark theme like in this article?'
  • Hello @Genesis !

    If you are using the Lucid template then you may transform the file modules\boonex\lucid\data\template\system\scripts\BxTemplCaptchaReCAPTCHANew.php by the following way:

    <?php defined('BX_DOL') or die('hack attempt');

    /**

     * Copyright (c) UNA, Inc - https://una.io

     * MIT License - https://opensource.org/licenses/MIT

     *

     * @defgroup  UnaTemplate UNA Template Classes

     * @{

     */

    /**

     * @see BxDolCaptcha

     */

    class BxTemplCaptchaReCAPTCHANew extends BxBaseCaptchaReCAPTCHANew

    {

      public function __construct ($aObject, $oTemplate = false)

      {

        parent::__construct ($aObject, $oTemplate);

    $this->_sSkin = 'dark';

      }

    }

    /** @} */

    The bold line was added. But don't forget about this part during the upgrade.