• Just started playing with this. There seems to be no way to NOT show excerpts in archives, or to show text-only excerpt.
    Is this right? Is rockettheme the only place to buy Gantry themes? Nothing is quite what I’d like, but the framework seems nice.

Viewing 1 replies (of 1 total)
  • Hi,

    The logic in our themes is by default this :

    1) If post has excerpt – show excerpt
    2) If excerpt is missing – show post content before <!–more–> tag
    3) If <!–more–> tag is missing – display full post content

    You can simply modify the theme/views/partials/content.html.twig file and remove the part responsible for displaying the excerpts (line 45-47) :

    {% if post.post_excerpt is not empty %}
                        <div class="post-excerpt">{{ post.post_excerpt|apply_filters('the_excerpt') }}</div>
                    {% else %}

    and line 60 :
    {% endif %}

    This will be changed in Hydrogen 5.2.0 to respect what’s set as the For each article in a feed, show option from the WP admin.

    Thanks!

Viewing 1 replies (of 1 total)

The topic ‘Gantry Hydrogen’ is closed to new replies.