---
title: How to Integrate JetEngine by Crocoblock with SEOPress
url: "https://www.seopress.org/support/guides/how-to-integrate-jetengine-by-crocoblock-with-seopress/"
lang: en-US
updated: 2025-01-03
---

# How to Integrate JetEngine by Crocoblock with SEOPress

## How to use meta field values with SEOPress?

By default, every meta fields created from **JetEngine**, **Post Types**, are just **custom fields**, ie post metas stored in the default table `wp_postmeta`.

[![JetEngine meta fields settings page](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-fields.png)](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-fields.png)

*JetEngine meta fields settings page*

You can easily request the value of these fields by using `%%_cf_your_custom_field_name%%` with your SEO and social metadata, and manual schemas.

With automatic schemas, select **Custom fields**, then the name of your custom field.

[![Custom fields from JetEngine with SEOPress' schemas](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-field-schema.png)](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-field-schema.png)

*Custom fields from JetEngine with SEOPress’ schemas*

With automatic custom schema, just enter the dynamic variable like this: `%%_cf_your_custom_field_name%%`

## How to use meta fields with a custom table storage?

When you register your custom post type with JetEngine, you can choose to store your data to a custom table by checking “**Custom Meta Storage**” option.

[![Custom table - JetEngine Post Type settings](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-post-type-settings.png)](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-post-type-settings.png)

*Custom table – JetEngine Post Type settings*

To request the meta field values, you will need some custom code.

### For your SEO/Social metadata/Manual and Custom schema

Adapt this snippet to match your need by following our dedicated guide to [add dynamic variables](https://www.seopress.org/support/guides/create-your-custom-dynamic-variable-for-your-meta-title-description-social/) to SEOPress.

### For automatic schema

To add a [predefined dynamic variable](https://www.seopress.org/support/hooks/filter-predefined-dynamic-variables-for-automatic-schemas/) to the default list, use this code:

[![New dynamic variables from JetEngine for our automatic schemas](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-fields-dynamic-variable.png)](https://www.seopress.org/wp-content/uploads/2024/11/jetengine-seopress-meta-fields-dynamic-variable.png)

*New dynamic variables from JetEngine for our automatic schemas*

## Advanced usage with repeater / checkbox / radio / select field types

Based on our guide to [create custom dynamic variables with SEOPress](https://www.seopress.org/support/guides/create-your-custom-dynamic-variable-for-your-meta-title-description-social/).
