dionte247
Forum Replies Created
-
works like a charm! awesome work!
Thanks! i will test this out today
Forum: Plugins
In reply to: [Tumblrize] [Plugin: Tumblrize] Photo Excerpt?around line 547 in tumblrize.php change
<optgroup label="Select"> <option value="regular"<?php if ('regular' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Text</option> <option value="photo"<?php if ('photo' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Photo</option> <option value="link"<?php if ('link' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Link</option> <option value="quote"<?php if ('quote' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Quote</option> <option value="audio"<?php if ('audio' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Audio</option> <option value="video"<?php if ('video' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Video (YouTube)</option> </optgroup>
to:
<optgroup label="Select"> <option value="photo"<?php if ('photo' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Photo</option> <option value="regular"<?php if ('regular' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Text</option> <option value="link"<?php if ('link' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Link</option> <option value="quote"<?php if ('quote' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Quote</option> <option value="audio"<?php if ('audio' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Audio</option> <option value="video"<?php if ('video' === $tumblr_post_type) : print ' selected="selected"';endif;?>>Video (YouTube)</option> </optgroup>
and photo should be selected automatically now
Forum: Plugins
In reply to: [Tumblrize] [Plugin: Tumblrize] Photo Excerpt?just edit the plugin so that the photo dropdown is selected first by default
Forum: Plugins
In reply to: [Tumblrize] [Plugin: Tumblrize] add source from original post to tumblr photocan this not be fixed?
when i make a post, i automatically want it to feed the post url to the “Set a click-through link” in tumblr.
so if i go into tumblr to edit the tumblr post it would have the link to the wp post in the
“Clicking this photo links to the URL:”That didnt work either. Im using WP 3.1 btw,
The fields in the drop down are blank when i goto the admin section to select the themes i want for hand held and tablet
yes im having the same problem… i changed the wp_get_themes() portion through out your code to get_themes() but the themes are blank where i have to select them in the admin side. i dont want to update to 3.4 because it will break my site. Is there a quick fix?
Forum: Plugins
In reply to: Tumblrize Edit… its simple phpanyone?