The issue here is that the user wanted to add a class to their block, however when they tried to add the class it doesn't get saved when the page is updated.
Solution:
When you add a css class here you will need to press either the Enter key or the spacebar key.
Once you've done this it should set the custom class that you've added.
Problem: I have two custom post types, Recipes and Ingredients, in a many-to-many (M2M) post relationship. In the intermediary post type, there is a custom field representing the quantity of each Ingredient in a specific Recipe. On the Recipe post template, I want to display a list of related Ingredients, the quantities of each, and I want to sort the Ingredients using a custom sort order I specify in wp-admin.
Solution: In the Recipe post, add related Ingredients in the Recipe post's relationships panel, and set the quantity and sort order for each Ingredient. In the Recipe post template, create a View of the intermediary post type. You must query the intermediary post type in order to specify your own custom sort order, which must be managed in a custom number field in the intermediary post type. Use the Query Filter to filter by post relationship, where the intermediary post type is related to the post being displayed. Use the Ordering panel to order by the custom order field in the intermediary post type. Display information about the related Ingredient post and the corresponding quantity in the loop of the View.
Problem: I would like to allow my site visitors to download a PDF file that includes some custom user fields.
Solution: Use a View or a Content Template to output the desired custom User field values, and use print stylesheets to style the output. Users can print to PDF using the native browser print features.