Skip to content

Instantly share code, notes, and snippets.

@hivepress
Created April 27, 2022 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hivepress/80fa5789fd066865b7561ac05ce9a371 to your computer and use it in GitHub Desktop.
Save hivepress/80fa5789fd066865b7561ac05ce9a371 to your computer and use it in GitHub Desktop.
Enable rich text (HTML) editor for the vendor description #hivepress #vendors
<?php
add_filter(
'hivepress/v1/models/vendor',
function( $model ) {
$model['fields']['description']['editor'] = true;
return $model;
},
1000
);
@obey24com
Copy link

didn't work for me / taskhive

@hivepress
Copy link
Author

Please make sure that you added it correctly (e.g. via the Code Snippets plugin). Also, note that it's a snippet for the vendor (not listing) description, please check it in Account/Settings section.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment