1) In my F2C templates I am using the field {$IMAGE}, which output I have selected in the content type as "raw image url". My intro template looks like that:
<div class="f2c_intro">
{if $IMAGE}
<a href="/{$JOOMLA_ARTICLE_LINK}" ><img src="/{$IMAGE}" align="left" border="none" style="padding-right:10px; padding-bottom:10px;" alt="{$JOOMLA_TITLE}" /></a>
{/if}
{$INTRO}
</div>
When I save my articles, I receive in Joomla articles the complete image URL like this:
...
<a href="index.php?option=com_content&view=article&id=1194:new-article&catid=2:articles" ><img src="<img src="http://myurl.com/images/stories/com_form2content/p2/f165/12.jpg" alt="" title="" width="200" height="133"/>" align="left" border="none" style="padding-right:10px; padding-bottom:10px;" alt="New Article" /></a>
...
With such a complete image URL there could be problems in future when I would like to move my articles to another website. This is why I would like to receive the image URL as relative URL, without the domain. It should look like this:
"/images/stories/com_form2content/p2/f165/12.jpg"
May be there is a way to achieve this using the {$F2C_IMAGES_PATH_RELATIVE} parameter. Could you please give an example how to implement this parameter?
2) After I migrated my website from Joomla 2.x to Joomla 3.x, some images in older articles have been overwritten by images of new articles, created by F2C. I suppose that F2C uses some the same image directories in J3x as it did in J2x. So I see a need to change the F2C path for new images. Is this also possible through the {$F2C_IMAGES_PATH_RELATIVE} parameter?
Thank you in advance and best regards.