Title: F4 Simple White Label
Author: FAKTOR VIER
Published: <strong>15. studenoga 2019.</strong>
Last modified: 15. prosinca 2025.

---

Pretraga dodataka

![](https://ps.w.org/f4-simple-whitelabel/assets/banner-772x250.jpg?rev=2193581)

![](https://ps.w.org/f4-simple-whitelabel/assets/icon-256x256.jpg?rev=2193581)

# F4 Simple White Label

 Od [FAKTOR VIER](https://profiles.wordpress.org/faktorvier/)

[Preuzmi](https://downloads.wordpress.org/plugin/f4-simple-whitelabel.1.0.12.zip)

 * [Detalji](https://hr.wordpress.org/plugins/f4-simple-whitelabel/#description)
 * [Recenzije](https://hr.wordpress.org/plugins/f4-simple-whitelabel/#reviews)
 *  [Instalacija](https://hr.wordpress.org/plugins/f4-simple-whitelabel/#installation)
 * [Razvoj](https://hr.wordpress.org/plugins/f4-simple-whitelabel/#developers)

 [Podrška](https://wordpress.org/support/plugin/f4-simple-whitelabel/)

## Opis

With [F4 Simple White Label](https://www.f4dev.ch) you can change the **login image**,
add a **custom logo to the admin bar** and change the **admin footer texts**.

Currently this is only possible with a few easy to use hooks. We plan to add an 
options page to the WordPress backend, so you can change all the above mentioned
without using a single line of code.

#### Usage

You can add the following hooks to the functions.php of your theme.

**Add favicon to login page and backend:**

    ```
    add_filter('F4/SWL/admin_favicon', function() {
        return 'url-to-your-favicon.ico';
    });
    ```

**Change the login page image:**

    ```
    add_filter('F4/SWL/login_image', function() {
        return 'url-to-your-login-image.png';
    });
    ```

You can also change the **href**, **link text**, **image alt text** like this:

    ```
    add_filter('F4/SWL/login_image_href', function() {
        return 'https://www.f4dev.ch';
    });

    add_filter('F4/SWL/login_image_link_text', function() {
        return 'This WordPress is powered by FAKTOR VIER';
    });

    add_filter('F4/SWL/login_image_alt', function() {
        return 'FAKTOR VIER logo';
    });
    ```

If needed you can add custom **inline styles** to the image:

    ```
    add_filter('F4/SWL/login_image_style', function() {
        return 'width:50px; height:50px;';
    });
    ```

**Add a custom logo to the admin bar:**

    ```
    add_filter('F4/SWL/admin_bar_logo', function() {
        return 'url-to-your-admin-bar-logo.png';
    });
    ```

You can also change the **href**, **logo alt text** like this:

    ```
    add_filter('F4/SWL/admin_bar_logo_href', function() {
        return 'https://www.f4dev.ch';
    });

    add_filter('F4/SWL/admin_bar_logo_alt', function() {
        return 'FAKTOR VIER logo';
    });
    ```

If needed you can add custom **inline styles** to the logo:

    ```
    add_filter('F4/SWL/admin_bar_logo_style', function() {
        return 'height:20px; margin:8px 0;';
    });
    ```

If you have users that like to use the **light color theme**, you can define a different
logo for that. If you dont use this hook, the **admin_bar_logo** logo us used for
all themes:

    ```
    add_filter('F4/SWL/admin_bar_logo_light', function() {
        return 'url-to-your-admin-bar-logo-light.png';
    });
    ```

**Change the backend footer texts:**

    ```
    add_filter('F4/SWL/admin_footer_text', function() {
        return '<span id="footer-thankyou">Thank you for creating with WordPress.Get</span>';
    });

    add_filter('F4/SWL/admin_footer_update_text', function() {
        return 'Version 5.3';
    });
    ```

#### Features overview

 * Add favicon to login page and backend
 * Change the login page image
 * Add a custom logo to the admin bar
 * Change the backend footer texts
 * Easy to use
 * Lightweight and optimized
 * 100% free!

#### Planned features

 * Everything configurable in the backend without a single line of code

## Snimke zaslona

 * [[
 * Login page image
 * [[
 * Admin bar logo
 * [[
 * Admin footer texts

## Instalacija

 1. Upload the plugin files to the `/wp-content/plugins/f4-simple-whitelabel` directory,
    or install the plugin through the WordPress plugins screen directly
 2. Activate the plugin through the ‘Plugins’ screen in WordPress
 3. Use the hooks explained in the usage section above

## Recenzije

![](https://secure.gravatar.com/avatar/fe45569d39e3b56544a6843cac3c2e61368ea1661b9de1b229539d61fa731d2c?
s=60&d=retro&r=g)

### 󠀁[Functional](https://wordpress.org/support/topic/functional-37/)󠁿

 [Carlos Hernández](https://profiles.wordpress.org/carlosdezv/) 05. rujna 2022.

It does just what you need without cluttering the dashboard with thousands of options
or notifications.

 [ Pročitajte 1 recenziju ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/)

## Suradnici i Programeri

“F4 Simple White Label” je softver otvorenog koda. Sljedeće osobe su doprinijele
ovom dodatku.

Suradnici

 *   [ FAKTOR VIER ](https://profiles.wordpress.org/faktorvier/)

“F4 Simple White Label” je preveden na 3 jezika. Zahvala [prevoditeljima](https://translate.wordpress.org/projects/wp-plugins/f4-simple-whitelabel/contributors)
za njihov doprinos.

[Prevedite “F4 Simple White Label” na svoj jezik.](https://translate.wordpress.org/projects/wp-plugins/f4-simple-whitelabel)

### Zainteresirani ste za razvoj?

[Pregledajte kôd](https://plugins.trac.wordpress.org/browser/f4-simple-whitelabel/),
pogledajte [SVN spremište](https://plugins.svn.wordpress.org/f4-simple-whitelabel/)
ili se pretplatite na [dnevnik razvoja](https://plugins.trac.wordpress.org/log/f4-simple-whitelabel/)
od [RSS](https://plugins.trac.wordpress.org/log/f4-simple-whitelabel/?limit=100&mode=stop_on_copy&format=rss).

## Dnevnik promjena

#### 1.0.12

 * Support WordPress 6.9

#### 1.0.11

 * Support WordPress 6.5

#### 1.0.10

 * Support WordPress 6.1

#### 1.0.9

 * Update www.f4dev.ch links

#### 1.0.8

 * Support WordPress 6.0

#### 1.0.7

 * Support WordPress 5.9

#### 1.0.6

 * Support WordPress 5.8

#### 1.0.5

 * Support WordPress 5.7

#### 1.0.4

 * Support WordPress 5.6

#### 1.0.3

 * Support WordPress 5.5

#### 1.0.2

 * Support WordPress 5.4

#### 1.0.1

 * Update namespaces

#### 1.0.0

 * Initial stable release

## Meta

 *  Version **1.0.12**
 *  Zadnje ažuriranje **prije 4 mjeseca**
 *  Aktivnih instalacija **200+**
 *  WordPress inačica ** 5.2 ili viša **
 *  Testirano do **6.9.4**
 *  PHP inačica ** 7.0 ili viša **
 *  Jezici
 * [English (US)](https://wordpress.org/plugins/f4-simple-whitelabel/), [German](https://de.wordpress.org/plugins/f4-simple-whitelabel/),
   [German (Austria)](https://de-at.wordpress.org/plugins/f4-simple-whitelabel/),
   i [German (Switzerland)](https://de-ch.wordpress.org/plugins/f4-simple-whitelabel/).
 *  [Prevedite na vaš jezik](https://translate.wordpress.org/projects/wp-plugins/f4-simple-whitelabel)
 * Oznaka
 * [favicon](https://hr.wordpress.org/plugins/tags/favicon/)[login](https://hr.wordpress.org/plugins/tags/login/)
   [login page](https://hr.wordpress.org/plugins/tags/login-page/)[White Label](https://hr.wordpress.org/plugins/tags/white-label/)
   [whitelabel](https://hr.wordpress.org/plugins/tags/whitelabel/)
 *  [Napredni pogled](https://hr.wordpress.org/plugins/f4-simple-whitelabel/advanced/)

## Ocjena

 5 out of 5 stars.

 *  [  1 5-star review     ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/?filter=5)
 *  [  0 4-star reviews     ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/?filter=4)
 *  [  0 3-star reviews     ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/?filter=3)
 *  [  0 2-star reviews     ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/?filter=2)
 *  [  0 1-star reviews     ](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/#new-post)

[See all reviews](https://wordpress.org/support/plugin/f4-simple-whitelabel/reviews/)

## Suradnici

 *   [ FAKTOR VIER ](https://profiles.wordpress.org/faktorvier/)

## Podrška

Želite nešto reći? Potrebna vam je pomoć?

 [Pregledaj forum za podršku](https://wordpress.org/support/plugin/f4-simple-whitelabel/)

## Doniraj

Želite li podržati napredak ovog dodatka?

 [ Donirajte ovom dodatku ](https://www.faktorvier.ch/donate/)