511

Product support

Get help in the plugin support forum.

  • Added on Jan 30, 2020
  • Current version: 1.0.4
  • Platform Compatibility
    v3.x not tested
    v2.x use latest
    v1.x use latest
  • Created by
    Bronze partner

Categories

oc-checkcontent

Check if content file exists

Usage:

Content file

Prevent error if choosing non-existing content file (and use :slug instead of content file name)

{% if content_exists( this.param.slug ~ '.htm') %}
    {% content this.param.slug %}
{% else %}
    {% content 'default' %}
{% endif %}

Media file

Check if media file is present in the media folder

{% set img = 'gallery/' ~ 'image.png' %}

{% if media_exists( img ) %}
    <img src="{{ img|media }}" alt="">
{% else %}
    <p>no image found</p>
{% endif %}

Check Content / Media

Check if content file exists (with a small modification you can check existence of any file from October file system)

Use :slug instead of content file name One universal page for all contents you have:

/page/:slug

{% if content_exists( this.param.slug ~ '.htm') %}
    {% content this.param.slug %}
{% else %}
    {% content 'default' %}
{% endif %}
1.0.4

Added partial check

Mar 28, 2022

1.0.3

Added media check

Jun 06, 2020

1.0.2

Added readme

Feb 07, 2020

1.0.1

Initialize plugin.

Jan 30, 2020