Title: Coding a table or columns
Last modified: August 31, 2016

---

# Coding a table or columns

 *  Resolved [shotmaker](https://wordpress.org/support/users/shotmaker/)
 * (@shotmaker)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/coding-a-table-or-columns/)
 * Hi,
    I’m testing the free version of ultimate recipe. Is there a possibility 
   to code columns or tables into your own template? I would like to have the ingredients
   on the right and the instructions on the left side.
 * So far I have just this:
 *     ```
       <div class="wpurp-container">
               <?php
               $ingredient_list = new WPURP_Template_Recipe_Ingredients();
               echo $ingredient_list->output( $recipe );
               ?>
   
               <?php
               $servings_changer = new WPURP_Template_Recipe_Servings_Changer();
               echo $servings_changer->output( $recipe );?>
       </div>
   
       <h3>Anleitung</h3>
   
       <?php
             $recipe_instructions = new WPURP_Template_Recipe_Instructions();
             echo $recipe_instructions->output( $recipe );
       ?>
         </div>
       ```
   
 * Another question is if the 5 star rating is available in the free version.
 * Thank you!
 * [https://wordpress.org/plugins/wp-ultimate-recipe/](https://wordpress.org/plugins/wp-ultimate-recipe/)

Viewing 1 replies (of 1 total)

 *  Plugin Author [Brecht](https://wordpress.org/support/users/brechtvds/)
 * (@brechtvds)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/coding-a-table-or-columns/#post-6940893)
 * Hi there,
 * With HTML, CSS and PHP you could create whatever you want, basically, but it’s
   quite advanced. You have the $recipe object available with all the fields for
   you to output in any way you see fit.
 * If you’re not an expert though I recommend just looking into the Template Editor,
   as it’s a lot easier there: [http://www.wpultimaterecipe.com/docs/016-subtemplates-in-the-template-editor](http://www.wpultimaterecipe.com/docs/016-subtemplates-in-the-template-editor)
 * In the free version you can give a rating to recipes as the recipe author. In
   the Premium plugin you can have your users rate the recipes: [http://www.wpultimaterecipe.com/docs/user-ratings](http://www.wpultimaterecipe.com/docs/user-ratings)
 * Kind regards,
    Brecht

Viewing 1 replies (of 1 total)

The topic ‘Coding a table or columns’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-ultimate-recipe.svg)
 * [WP Ultimate Recipe](https://wordpress.org/plugins/wp-ultimate-recipe/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-ultimate-recipe/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-ultimate-recipe/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-ultimate-recipe/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-ultimate-recipe/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-ultimate-recipe/reviews/)

## Tags

 * [columns](https://wordpress.org/support/topic-tag/columns/)
 * [tables](https://wordpress.org/support/topic-tag/tables/)

 * 1 reply
 * 2 participants
 * Last reply from: [Brecht](https://wordpress.org/support/users/brechtvds/)
 * Last activity: [10 years, 4 months ago](https://wordpress.org/support/topic/coding-a-table-or-columns/#post-6940893)
 * Status: resolved