Created
April 26, 2022 16:13
-
-
Save hivepress/4ed3d319ab220c6e005f58a4da95e504 to your computer and use it in GitHub Desktop.
Enable rich text (HTML) editor for the listing description #hivepress #listings
This file contains hidden or 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
| <?php | |
| add_filter( | |
| 'hivepress/v1/models/listing', | |
| function( $model ) { | |
| $model['fields']['description']['editor'] = true; | |
| return $model; | |
| }, | |
| 1000 | |
| ); |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a common issue not specific to HivePress, but adding the HTML meta tag mentioned here https://stackoverflow.com/questions/19165545/disable-css-for-responsive-design to the theme's header.php file should do the job.