Layout – Webdesign

0,00 / maand excl. BTW

Layout kiezen / webdesign aanpassen

Ander webdesign / layout? Dat kan hier heel gemakkelijk!

  1. Gratis: Kies één van de voor geprogrammeerde layouts.
  2. Gratis: Pas je gekozen webdesign naar wens aan.
  3. Kies hier een andere gratis layout: Gratis implementatie.
  4. Kies een andere gratis layout: Vergoeding voor implementatie.
  5. Kies een betaald thema: Vergoeding voor implementatie.
  6. Laat een layout voor je maken.

Andere Layout

Ander Webdesign

Eénmalige betaling

1. Om welk webdesign gaat het (naam)
2. Waar kunnen wij het vinden
3. Als het in een account staat, mogen wij dan inlog-gegevens opdat wij het kunnen uploaden

Het verwijderen van webdesigns bespaart webruimte. Als er een webdesign extra op je website / webshop wordt gezet, dan kost dat webruimte.

Prijs per maand

Categorie:

Beschrijving

ACF Tooltip

Beschrijving

If an ACF field requires a longer instruction text, the layout of the edit screen is messy and a lot of space is wasted.

The ACF Tooltip plugin hides the field instructions, adds a help symbol to the field labels and generates a tooltip based on the instruction text.

New in Version 1.2.0

The tooltip will not hide if moused over, allowing create a tooltip with a link inside without hiding the tooltip.

Custom settings

There are 7 filters that allow adjusting the design and the behavior of the tooltips.

This plugin works only with the ACF PRO (version 5.5.0 or higher).

Localizations

  • English
  • Deutsch

Custom settings with filter hooks

There are 7 filters that allow adjusting the design and the behavior of the tooltips can be adjusted.

Set the design of the tooltips

<?php function acf_tooltip_style() {     $style = 'qtip-acf';     return $style; } add_filter('acf/tooltip/style', 'acf_tooltip_style'); ?> 

The available styles can be found on the qTip options page and are shown on the qTip demo site.

You can mix the styles; e.g. “qtip-acf qtip-rounded qtip-shadow”

If you like, you can define your own style, with the class name of your style from your own CSS file (see next filter).

The qtip-acf style is the standard style, which is set without a filter.

Define your own CSS file

<?php function acf_tooltip_css() {     $css_file = get_bloginfo('template_url') . '/qtip-own.css'; // if the file is saved in your themes folder     return $css_file; } add_filter('acf/tooltip/css', 'acf_tooltip_css'); ?> 

You will find a ‘qtip-example-style.css’ in the ‘/assets/css’ folder.

Positioning the corner of the tooltip

<?php function acf_tooltip_position_my() {     $position_my = 'center left';     return $position_my; } add_filter('acf/tooltip/position/my', 'acf_tooltip_position_my'); ?> 

Position in relation to the tooltip icon

<?php function acf_tooltip_position_at() {     $position_at = 'center right';     return $position_at; } add_filter('acf/tooltip/position/at', 'acf_tooltip_position_at'); ?> 

Check out the qTip demo site to find your perfect positioning.

Apply tooltips only to fields with specific class

<?php function acf_tooltip_class() {     $class = 'with__tooltip'; // edit this to your prefered class name     return $class; } add_filter('acf/tooltip/class/only', 'acf_tooltip_class'); ?> 

Add the class to the fields where you want to show tooltips.

Exclude tooltips on fields with specific class

<?php function acf_tooltip_class_exclude() {     $class = 'no__tooltip'; // edit this to your prefered class name     return $class; } add_filter('acf/tooltip/class/exclude', 'acf_tooltip_class_exclude'); ?> 

Add the class to the fields where you don’t want to show tooltips.

Add tooltips to the Field Editor

With this filter, you can specify whether the instructions in the Field Editor are displayed as tooltips as well. By default, the instructions are displayed.

<?php add_filter('acf/tooltip/fieldeditor', '__return_true'); ?> 

Schermafbeeldingen

  • ACF Tooltip in standard mode

Installatie

  1. Upload the acf-tooltip folder to your /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Done!

Beoordelingen

21 september 2021
Installed it, activated it, and guess what? It just works! Great job, Thomas!
15 mei 2020
Very useful plugin. Please keep it alive and updated! Thank you!
7 februari 2019
Great plugin! Does the job well. However, a bit heavy; for large use cases where you have many ACF fields, I have seen a significant performance drop in the WP dashboard and increased load times.
16 december 2018
Thanks for keeping it maintained, too.
16 november 2018
For those who like verbose instructions, this plugin is a lifesaver. Works exactly as expected. Thank you so much!
Lees alle 6 beoordelingen

Bijdragers & ontwikkelaars

“ACF Tooltip” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

“ACF Tooltip” is vertaald in 4 localen. Dank voor de vertalers voor hun bijdragen.

Vertaal “ACF Tooltip” in je eigen taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

v1.2.5

  • Fixed PHP8 compatibilty

v1.2.2

  • Fixed compatibilty error of 1.2.1 update if ACF is < 5.7.0

v1.2.1

v1.2.0

  • Tooltip is no longer hidden on hover

v1.1.0

  • Changed class name to prevent future conflicts with ACF

v1.0.0

  • Initial release of this plugin, tested and stable.