Note that there are some explanatory texts on larger screens.

plurals
  1. POexpression engine: Content in channel fields don't show up on the webpage when called in a template
    primarykey
    data
    text
    <p>I have a snippet called sidebar with the following code.</p> <pre><code>&lt;div id="ebook_offer"&gt; {exp:channel:entries channel="test"} &lt;h3&gt;Ebook&lt;/h3&gt; {/exp:channel:entries} &lt;/div&gt; &lt;div id="about_blog"&gt; {exp:channel:entries channel="blog_sidebar"} &lt;h3&gt;About Obsia's Blog&lt;/h3&gt; {/exp:channel:entries} &lt;/div&gt; &lt;div id="testimonials"&gt; &lt;/div&gt; &lt;div id="demo" dynamic="no" limit="1"&gt; &lt;/div&gt; &lt;div id="recent posts"&gt; {exp:channel:entries channel="blog" limit=5 offset=1} &lt;h3&gt;Recent Posts&lt;/h3&gt; &lt;li&gt;{title}&lt;/li&gt; {/exp:channel:entries} &lt;/div&gt; &lt;div "connect"&gt; &lt;/div&gt; &lt;div = "subscribe"&gt; {exp:mailinglist:form list="blog_list" form_id="blog_subscribe"} &lt;h3&gt;Subscribe&lt;/h3&gt; &lt;p&gt;First Name &lt;input type="text" name="first_name"="{first_name}"&gt;&lt;/p&gt; &lt;p&gt;Email &lt;input type="text" name="email" value="{email}"&gt;&lt;/p&gt; &lt;p&gt;&lt;input type="submit" value="submit"&gt;&lt;/p&gt; {/exp:mailinglist:form} &lt;/div&gt; </code></pre> <p>This snippet is called inside the index.php template for blog template group and the code is as follows:</p> <pre><code>&lt;div id="blog_display"&gt; {exp:channel:entries channel="blog" limit="5"} &lt;h2&gt;{title}&lt;/h2&gt; {author} {if blog_images} &lt;img src="{blog_images}" alt="blog image {title}" class="some_class" /&gt; {/if} {teaser} &lt;p&gt;comments {comment_total} &lt;/p&gt; {/exp:channel:entries} &lt;/div&gt; {sidebar} </code></pre> <p>I also have channel called sidebar with fields such as ebook_offer, about_blog, recast posts, testimonials, subscribe. I can get the subscribe forms to show up. I can see recent posts on my webpage but can't see any of the content that has been filled in about_blog field. </p> <p>Anyone know why blog channel works but not my sidebar channel.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload