Hi,
I want to be able to create / submit article from front end for J! blog Joomla 3.0.
Here is a tutorial I found:
Add new articles from the category blog view frontend in Joomla 3
But I am not sure where to insert the code or even if it will work with the custom stuff done to fixel’s j! blog.
My best guess was adding it to fixel_item_default.php in templatesja_fixelhtmlcom_contentcategory but that didn’t work.
<?php if ($params->get('show_print_icon')) : ?>
<li class="print-icon"> <?php echo JHtml::_('icon.print_popup', $this->item, $params); ?> </li>
<?php endif; ?>
<?php if ($params->get('show_email_icon')) : ?>
<li class="email-icon"> <?php echo JHtml::_('icon.email', $this->item, $params); ?> </li>
<?php endif; ?>
<?php if ($canEdit) : ?>
<li class="edit-icon"> <?php echo JHtml::_('icon.edit', $this->item, $params); ?> </li>
<?php endif; ?>
<?php // Code to add a link to submit an article. ?>
<?php if ($this->category->getParams()->get('access-create')) : ?>
<?php echo JHtml::_('icon.create', $this->category, $this->category->params); ?>
<?php endif; ?>
Any ideas?