How to create a custom template

This section is intended for developers. Basic knowledge of PHP and CSS is required to customize default templates or create your own templates.

Refer to the "ChatGTP Template Creator" documentation section for instructions on creating templates using ChatGPT.

Content Egg templates combine HTML layout with PHP code to display product data. Bootstrap 5 is embedded in the plugin by default, so you can use any Bootstrap CSS classes to ensure a responsive and modern design.

Steps to Create a Custom Template

  1. Starting Code:

    • Your template must start with the following code:

    <?php
    /*
     * Name: My template name
     * Modules:
     * Module Types: PRODUCT
     *
     */
    
    use ContentEgg\application\helpers\TemplateHelper;
    
    // This will include the Bootstrap 5 CSS file and the default plugin CSS file
    \ContentEgg\application\components\BlockTemplateManager::getInstance()->enqueueCeggStyle(true);
    
    ?>
    • Replace 'My template name' with the actual name of your template.

  2. Add a Div Container:

    • Next, add the following div container:

    <div class="cegg5-container">
    <!-- Inside this container, you can use Bootstrap 5 classes -->
    </div>
  3. Implement a Product Loop:

    • Implement a loop to iterate through and display all products:

    <?php foreach ($items as $key => $item) : ?>
    <!-- product data output here -->
    <?php endforeach; ?>
  4. Product Fields:

    • The $item array contains the following product fields:

      • unique_id

      • title

      • description

      • img

      • url

      • price

      • priceOld

      • currency

      • currencyCode

      • percentageSaved

      • manufacturer

      • rating

      • domain

      • merchant

      • logo

      • ean

      • images

      • subtitle

      • promo

      • shipping_cost

      • last_update

  5. Output Product Data:

    • To output product data, use the following snippets. Ensure to escape data output with the related WordPress functions.

Product Title:

Product Affiliate URL:

Product Image:

Product Description:

Product Price:

Product Old Price:

Merchant Domain:

Merchant Logo URL:

Merchant Small Icon URL:

Product Stock Status String:

Product Last Update Date Timestamp:

Amazon Price Update Notice:

Affiliate Disclaimer:

Badge:

Read next:

How to install a custom template

Last updated