
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@verygoodplugins/wpfselect
Advanced tools
A React component add-on that gives you the tools needed to add a dropdown with all the available tags and with conditions based on the active CRM
A lightweight React component that allows easy integration with WP Fusion. It can be used in the block editor or any kind of React interface in WordPress
WPF Select retrieves the list of available tags of the CRM that WP Fusion is configured to use.
If the CRM supports new tags to be created outside their application WPF Select will automatically create new tags on user input if the tags do not exist.
If the CRM doesn't support new tags to be created outside their application, WPF Select will automatically add a refresh button within the element.
The button will pull all the available tags from the CRM and will update the list of tags.
WPF Select is an NPM package fully transpiled to be supported on modern browsers.
It can be installed by using the following command in your terminal:
npm install @verygoodplugins/wpfselect
Or by adding the following object property to the dependencies object in your package.json file.
"@verygoodplugins/wpfselect": "^1.0.8"
To implement the component you need to make sure you import it to your current file by adding the following code snippet at the top of your file:
import WpfSelect from "@verygoodplugins/wpfselect";
Then you can simply add it to your component using the JSX syntax:
<WpfSelect />
The component can be extended by adding a default value, a onChange function and other settings.
This prop allows you to add a custom function that will be called when the value of the select element will be changed in any way.
This prop allows you to add an array of tags that will act as a default value. Usually it is used to add tags that were selected in a previous interaction and saved as an attribute of the block.
This prop allows you to define the id parameter of the main HTML element.
This prop allows you to add extra HTML classes to the refresh button that gets added when the CRM doesn't support the creation of new tags.
<WpfSelect
existingTags = { my_existing_tags }
onChange = {
( tags ) => {
props.setAttributes( {
my_existing_tags: tags
} );
}
}
elementID = 'my-tags-select'
refreshButtonClass="custom-refresh-btn"
/>
FAQs
A React component add-on that gives you the tools needed to add a dropdown with all the available tags and with conditions based on the active CRM
We found that @verygoodplugins/wpfselect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.