<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Can I edit image dimensions after users has submitted image and form?</title>
		<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form</link>
		<description>Gravity Support Forums Topic: Can I edit image dimensions after users has submitted image and form?</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 05:22:12 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-20058</link>
			<pubDate>Mon, 07 Mar 2011 13:22:45 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">20058@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, customizations using hooks would go in your functions.php file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>beyoyo2 on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-19978</link>
			<pubDate>Sat, 05 Mar 2011 11:03:10 +0000</pubDate>
			<dc:creator>beyoyo2</dc:creator>
			<guid isPermaLink="false">19978@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;zodzilla and David Smith.&#60;br /&#62;
I have a similar situation where we need have users upload images of items they want to sell. I only want to control the image size of the uploaded images.&#60;/p&#62;
&#60;p&#62;Where do you put in the gform_post_submission code?&#60;br /&#62;
Does this go in my themes functions.php?&#60;/p&#62;
&#60;p&#62;Sorry, ya lost me.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>DreDoGG on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-17518</link>
			<pubDate>Thu, 03 Feb 2011 02:56:16 +0000</pubDate>
			<dc:creator>DreDoGG</dc:creator>
			<guid isPermaLink="false">17518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I would like to ad another scenario. I have a section on my site that allows user's to post events. The problem is if the width of the flyers they upload are too wide it breaks the formatting on my site. Now while the resize at upload plugin is an option I usually upload full size images to the site so that when user's click on it or download it they can have a full high res image. If i use that plugin this option would be lost to the user as the width of my site is max 580 before it breaks the formatting. &#60;/p&#62;
&#60;p&#62;That said is there a way to have the width of the image constrained thus also automatically re adjusting the height so that the &#34;Post Image&#34; is the set to the right size and does not break my formatting.&#60;/p&#62;
&#60;p&#62;I have already figured out how to put in the images as well as how to make it so that when they click on it they get the full image however for the image embeded in the body of the article i need the width to be no bigger than 580px wide but i would also like it to adjust the height automatically. Cause if i specify the width manually the height isn't changed. &#60;/p&#62;
&#60;p&#62;Might there be a way to do this. Hope your following what i am saying sorry if i come across confusing.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tzaddi on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-17456</link>
			<pubDate>Wed, 02 Feb 2011 02:59:35 +0000</pubDate>
			<dc:creator>Tzaddi</dc:creator>
			<guid isPermaLink="false">17456@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Perfect, thanks David.&#60;/p&#62;
&#60;p&#62;For anyone else interested, I found that with larger images the Resize on Upload plugin worked better than the Resize at Upload one (and let you set a maximum width &#38;amp; height, not just width).&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/resize-on-upload/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/resize-on-upload/&#60;/a&#62;&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_post_submission&#38;quot;, &#38;quot;post_submission_handler&#38;quot;);
function post_submission_handler($entry){
	$post_id = $entry[&#38;#39;post_id&#38;#39;];
	$meta_key = &#38;#39;picture&#38;#39;; // the name of your custom field
	$photo = explode(&#38;#39;&#124;&#38;#39;,$entry[6]); // 6 is the ID of Gravity Form field
	$meta_value = $photo[0]; // the first element in the array is the URL
	update_post_meta($post_id, $meta_key, $meta_value, $prev_value);
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>David Smith on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-17303</link>
			<pubDate>Mon, 31 Jan 2011 11:42:38 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">17303@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Zodzilla,&#60;/p&#62;
&#60;p&#62;This is not possible by default; however, a bit of custom code using the &#60;a href=&#34;http://www.gravityhelp.com/documentation/hooks-and-filters/&#34; rel=&#34;nofollow&#34;&#62;gform_post_submission&#60;/a&#62; hook could see this done.&#60;/p&#62;
&#60;p&#62;You'd need to retrieve the the image url from the $entry object which is passed to the gform_post_submission hook as well as the post ID of the created post (also in the $entry object). You could then use the &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/update_post_meta&#34; rel=&#34;nofollow&#34;&#62;update_post_meta&#60;/a&#62; WP function to add the uploaded post image as a custom field as well.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Tzaddi on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-17246</link>
			<pubDate>Sat, 29 Jan 2011 20:33:52 +0000</pubDate>
			<dc:creator>Tzaddi</dc:creator>
			<guid isPermaLink="false">17246@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is it possible to work with the image upload field on a custom field?  I need an image in a custom post type and I've got it working through the WP admin panel, but when I setup my gravity form I can only choose the file upload field type (which works and uploads the image, but the &#34;resize at upload&#34; plugin doesn't see it and the image is not resized).&#60;/p&#62;
&#60;p&#62;Any suggestions?&#60;br /&#62;
Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-13920</link>
			<pubDate>Mon, 06 Dec 2010 00:31:34 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">13920@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Great to hear. Thanks for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>jorgeferragut on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-13919</link>
			<pubDate>Mon, 06 Dec 2010 00:25:51 +0000</pubDate>
			<dc:creator>jorgeferragut</dc:creator>
			<guid isPermaLink="false">13919@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin and Alex - The &#34;resize at upload&#34; plugin worked brilliantly!  Thanks so much for the advice and direction.&#60;/p&#62;
&#60;p&#62;Best wishes from Miami,&#60;br /&#62;
Jorge
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex Cancado on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-13898</link>
			<pubDate>Sat, 04 Dec 2010 19:11:11 +0000</pubDate>
			<dc:creator>Alex Cancado</dc:creator>
			<guid isPermaLink="false">13898@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Kevin's second plugin suggestion looks to be the perfect choice for you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Kevin Flahaut on "Can I edit image dimensions after users has submitted image and form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/can-i-edit-image-dimensions-after-users-has-submitted-image-and-form#post-13896</link>
			<pubDate>Sat, 04 Dec 2010 14:47:33 +0000</pubDate>
			<dc:creator>Kevin Flahaut</dc:creator>
			<guid isPermaLink="false">13896@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you're using the image upload field, you may also be able to use one of the max-size image plugins.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/max-image-size-control/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/max-image-size-control/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/extend/plugins/resize-at-upload/&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/extend/plugins/resize-at-upload/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I've actually used the second one for some time on a few sites and it works really well.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
