I've been struggling with this for days trying to modify every part of the string possible to include a different folder. I'm using the Supersized jQuery slider in the PhotoArtist theme. If you want to see it live here's the link: http://www.arjanbaagh.com/testsite/sliders-list/bridal-2013-collection/.
What I am trying to achieve is modify the $output string to include a different folder before the filename. I'm attempting to use a different thumbnail for the preview. Currently the slider pulls the image from the main preview and scales it down dynamically. Here is the line of PHP code that shows a thumbnail on the page:
$output .=" thumb : ". "'" . get_template_directory_uri() . "/framework/timthumb/timthumb.php?src=".thumb_link($element['img']) . "&w=300&h=150'}";
This outputs the following URL:
All I want to do is change the $output string so that it includes another folder before image02.jpg. So for example, I want to change the URL to:
http://www.arjanbaagh.com/testsite/wp-content/themes/photoartist-parent/framework/timthumb/timthumb.php?src=http://www.arjanbaagh.com/testsite/wp-content/uploads/2012/02/newfolder/image02.jpg&w=300&h=150
I've tried modifying the directory in the $output string but I can only change the beginning or the end of the string.
Any help would be greatly appreciated!
uploadsfolder? – Adam D Mar 20 at 18:19