I’m sorry, I wasn’t very clear.
I am currently using the “extract_url” plugin in conjunction with phpThumb (a thumbnail generator), but the basic “extract_url” (not extract_url_plus) seems very limited in what it can do.
Here is exactly what my code currently looks like:
<a href="{url_title_path="{my_template_group}/submission}" title="{title}"><img src="/phpThumb/phpThumb.php?src={exp:extract_url}{art_upload}{/exp:extract_url}&w=108&h=94"/></a>
{art_upload} is simply a custom field in which a user can submit his/her artwork - so it’s an image file.
With this current set up, when I view the source of the image that is created, the path looks like this:
http://www.mydomain.com/phpThumb/phpThumb.php?src=http://www.mysite.com/images/uploads/filename.jpg&w=108&h=94
Instead what I want it to display is:
http://www.mydomain.com/phpThumb/phpThumb.php?src=/images/uploads/filename.jpg&w=108&h=94
So that the src is local instead of the full path. Is this possible with extract_url_plus and if so, what would that look like?
Thanks so much for helping with this.