This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {findIconDefinition, icon, library} from '@fortawesome/fontawesome-svg-core' | |
import {registerIconLibrary} from '@shoelace-style/shoelace' | |
/** | |
* This class is used to insert font awesome icons (version 6.5 and higher) into Shoelace web components. | |
* | |
* Font Awesome : https://fontawesome.com | |
* Shoelace : https://shoelace.style | |
* | |
* Usage: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'acf/input/admin_head', function () { | |
// Assume to be in <plugin>/css/acf-addon.css | |
wp_enqueue_style( 'acf-addon', plugins_url( '/css/acf-addon.css', __FILE__ ), [ | |
'acf-input', | |
'acf-pro-input', | |
] ); | |
} ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* empty function for acf.Field ie, it clears all the existing rows | |
* | |
* Only for repeater | |
* | |
* @returns {boolean} | |
* | |
* @author : Christian Denat | |
* @email : [email protected] / [email protected] | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Use this gist to add a row in a repeater field and retrieve all the sub fields you can manage later. | |
* | |
* @author : Christian Denat | |
* @email : [email protected] / [email protected] | |
* | |
* @date : 20210525 | |
* | |
*/ |