Skip to content

Instantly share code, notes, and snippets.

@tharlab
Forked from hivepress/functions.php
Last active December 21, 2023 10:19
Show Gist options
  • Save tharlab/cd3d97f47031447981bbc84978d99b90 to your computer and use it in GitHub Desktop.
Save tharlab/cd3d97f47031447981bbc84978d99b90 to your computer and use it in GitHub Desktop.
Enable rich text (HTML) editor for the listing description #hivepress #listings
<?php
add_filter(
'hivepress/v1/models/listing',
function( $model ) {
$model['fields']['description']['editor'] = array( //'quicktags' => true,
'media_buttons' => false, //if false show image button instead
'toolbar1' => 'styleselect, bold, italic, underline, bullist, numlist, blockquote, link, image, wp_adv, quicklink, fullscreen,',
);
return $model;
},
1000
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment