A Few Questions About CGBlog
Posted: Tue Dec 10, 2013 11:55 am
Hi Everyone,
I have a site running CMSMS 1.11.8 and the latest modules. The site is a community-based recipe sharing site that runs off of CGBlog.
I would like to know how to do the following:
(1) Disable the expiration - when FEUs submit their recipes, it shows an expiration. I have the "By default frontend submitted articles use the expiry date" option in CGBlog's options set to No, but from the admin the articles still show an expiration.
(2) How do I organize the custom fields on the Frontend Article Submission Form Templates? The custom field code is
How do I call individual ones?
(3) I cannot seem to pull in my custom fields that contain 2 words. For example, I have "Cook Time" - so I use
Nothing shows.
(4) I have enabled FEUs to change the status so that they can leave a recipe in draft form but come back later to finish and publish it. Once they publish the recipe, it will appear with the date that it was originally drafted on and not the date it was published. Is there anyway that when they publish a recipe the date automatically changes to the current date?
Thank you in advance for your help.
I have a site running CMSMS 1.11.8 and the latest modules. The site is a community-based recipe sharing site that runs off of CGBlog.
I would like to know how to do the following:
(1) Disable the expiration - when FEUs submit their recipes, it shows an expiration. I have the "By default frontend submitted articles use the expiry date" option in CGBlog's options set to No, but from the admin the articles still show an expiration.
(2) How do I organize the custom fields on the Frontend Article Submission Form Templates? The custom field code is
Code: Select all
{if isset($customfields)}
{foreach from=$customfields item='onefield'}
<div class="pageoverflow">
<p class="pagetext">{$onefield->name}:</p>
<p class="pageinput">{$onefield->field}</p>
</div>
{/foreach}
{/if}
(3) I cannot seem to pull in my custom fields that contain 2 words. For example, I have "Cook Time" - so I use
Code: Select all
{$entry->fieldsbyname.Cook_Time->value}(4) I have enabled FEUs to change the status so that they can leave a recipe in draft form but come back later to finish and publish it. Once they publish the recipe, it will appear with the date that it was originally drafted on and not the date it was published. Is there anyway that when they publish a recipe the date automatically changes to the current date?
Thank you in advance for your help.