<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>WordPress Tips and Tricks</title>
	<atom:link href="http://wordpresstips.googlethem.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpresstips.googlethem.com</link>
	<description>Hop up Your WordPress Engine!</description>
	<lastBuildDate>Thu, 04 Apr 2013 06:42:54 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Gravity forms notification email sending field label instead of value</title>
		<link>http://wordpresstips.googlethem.com/gravity-forms-notification-email-sending-field-label-instead-of-value/</link>
		<comments>http://wordpresstips.googlethem.com/gravity-forms-notification-email-sending-field-label-instead-of-value/#comments</comments>
		<pubDate>Thu, 04 Apr 2013 06:34:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gravity Forms]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=614</guid>
		<description><![CDATA[If you would like to see the value that you bothered to set in Gravity Forms next to the field label, do this in your Forms &#62; Notifications &#62; message body (merge tag) {all_fields:value} This helps with checkboxes, dropdowns and radio selects where you want to see what you have programmed for the various values. [...]]]></description>
				<content:encoded><![CDATA[<p>If you would like to see the value that you bothered to set in Gravity Forms next to the field label, do this in your Forms &gt; Notifications &gt; message body (merge tag)</p>
<p>{all_fields:value}</p>
<p>This helps with checkboxes, dropdowns and radio selects where you want to see what you have programmed for the various values.</p>
<p>from: http://www.gravityhelp.com/documentation/page/Merge_Codes</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/gravity-forms-notification-email-sending-field-label-instead-of-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gravity Forms admin email to text instead of html</title>
		<link>http://wordpresstips.googlethem.com/gravity-forms-admin-email-to-text-instead-of-html/</link>
		<comments>http://wordpresstips.googlethem.com/gravity-forms-admin-email-to-text-instead-of-html/#comments</comments>
		<pubDate>Tue, 02 Apr 2013 06:42:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Gravity Forms]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=617</guid>
		<description><![CDATA[As of Gravity forms 1.6 and even 1.7 there&#8217;s no way to change the email format without editing PHP. The exact PHP edit has changed from 1.6 to 1.7 (beta) from: http://www.gravityhelp.com/documentation/page/Gform_notification_format Examples This example sets admin notifications to be sent in Text format and user notifications to be sent in HTML format. 01 &#60;?php [...]]]></description>
				<content:encoded><![CDATA[<p>As of Gravity forms 1.6 and even 1.7 there&#8217;s no way to change the email format without editing PHP. The exact PHP edit has changed from 1.6 to 1.7 (beta)</p>
<p>from: http://www.gravityhelp.com/documentation/page/Gform_notification_format</p>
<h2>Examples</h2>
<p>This example sets admin notifications to be sent in Text format and user notifications to be sent in HTML format.</p>
<div id="highlighter_837077">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>01</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>02</code></td>
<td><code>add_action(</code><code>"gform_notification_format"</code><code>, </code><code>"set_notification_format"</code><code>, 10, 4);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>03</code></td>
<td><code>function</code> <code>set_notification_format(</code><code>$format</code><code>, </code><code>$notification_type</code><code>, </code><code>$form</code><code>, </code><code>$lead</code><code>){</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>04</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>05</code></td>
<td><code>    </code><code>if</code><code>(</code><code>$notification_type</code> <code>== </code><code>"admin"</code><code>)</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>06</code></td>
<td><code>        </code><code>return</code> <code>"text"</code><code>; </code><code>//setting admin notifications as text</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>07</code></td>
<td><code>    </code><code>else</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>08</code></td>
<td><code>        </code><code>return</code> <code>"html"</code><code>; </code><code>//setting user notifications as text</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>09</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<h2>Source Code</h2>
<p>This filter is located in <i>common.php</i></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/gravity-forms-admin-email-to-text-instead-of-html/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>R1Soft Restoring a mySql file from server from .frm- no .sql file available</title>
		<link>http://wordpresstips.googlethem.com/r1soft-restoring-a-mysql-file-from-server-from-frm-no-sql-file-available/</link>
		<comments>http://wordpresstips.googlethem.com/r1soft-restoring-a-mysql-file-from-server-from-frm-no-sql-file-available/#comments</comments>
		<pubDate>Wed, 20 Mar 2013 05:58:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress fix]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=607</guid>
		<description><![CDATA[Every MySQL table you create is represented, on disk, by a .frm file, which describes the table&#8217;s format (i.e. the table definition). Those files are essentially the core files for MySQL MySQL reads the files to create your databases. If you need to restore a database, your best bet would be to restore /var/lib/mysql/(database) This [...]]]></description>
				<content:encoded><![CDATA[<p>Every MySQL table you create is represented, on disk, by a .frm file, which describes the table&#8217;s format (i.e. the table definition).</p>
<p>Those files are essentially the core files for MySQL</p>
<p>MySQL reads the files to create your databases.</p>
<p>If you need to restore a database, your best bet would be to restore /var/lib/mysql/(database)</p>
<p>This works in R1Soft</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/r1soft-restoring-a-mysql-file-from-server-from-frm-no-sql-file-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off Uploads to Year Month folders on WordPress and WP Multisite</title>
		<link>http://wordpresstips.googlethem.com/turn-off-uploads-to-year-month-folders-on-wordpress-and-wp-multisite/</link>
		<comments>http://wordpresstips.googlethem.com/turn-off-uploads-to-year-month-folders-on-wordpress-and-wp-multisite/#comments</comments>
		<pubDate>Fri, 22 Feb 2013 02:16:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress fix]]></category>
		<category><![CDATA[wordpress multisite]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=603</guid>
		<description><![CDATA[0 = No (uploads will go to /wp-content/siteid/files/) 1 = Yes (uploads will go into the growing and bewildering folder structure of year/month) Click here to read exactly how to change year/month in WordPress and WP MU]]></description>
				<content:encoded><![CDATA[<p>0 = No (uploads will go to /wp-content/siteid/files/)<br />
1 = Yes (uploads will go into the growing and bewildering folder structure of year/month)<br />
<a href="http://wordpresstips.googlethem.com/uploading-or-posting-pictures-in-wordpress#uploadsyearmonth">Click here to read exactly how to change year/month in WordPress and WP MU</a></p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/turn-off-uploads-to-year-month-folders-on-wordpress-and-wp-multisite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tracking goals in google analytics</title>
		<link>http://wordpresstips.googlethem.com/tracking-goals-in-google-analytics/</link>
		<comments>http://wordpresstips.googlethem.com/tracking-goals-in-google-analytics/#comments</comments>
		<pubDate>Tue, 19 Feb 2013 09:31:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress seo]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=597</guid>
		<description><![CDATA[To track phone calls or other conversions like shopping checkout pages in google analytics: from: https://www.google.com/analytics/web/?hl=en&#38;pli=1#management/Profile/a4492736w43068943p43054715/%3Fprofile.tabId%3DgoalsTab/ Conversions Set up Goals  Use Goals to know when visitors complete individual actions. Goals are a versatile way to measure how well your site or app fulfills your objectives. You can set up individual Goals to track discrete actions, [...]]]></description>
				<content:encoded><![CDATA[<p>To track phone calls or other conversions like shopping checkout pages in google analytics:</p>
<p>from: https://www.google.com/analytics/web/?hl=en&amp;pli=1#management/Profile/a4492736w43068943p43054715/%3Fprofile.tabId%3DgoalsTab/</p>
<div>
<h3>Conversions</h3>
<h2>Set up Goals</h2>
<div> Use Goals to know when visitors complete individual actions.</div>
</div>
<div id="article-content-div">
<p><em>Goals</em> are a versatile way to measure how well your site or app fulfills your objectives. You can set up individual Goals to track discrete actions, like transactions with a minimum purchase amount or the amount of time spent on a screen.</p>
<p>You must define and set up Goals in your Google Analytics account before data appears in your Goal reports and other reports that provide data on Goals and Goal Conversions. Read <a href="http://support.google.com/analytics/bin/answer.py?answer=1012040">About Goals</a> to learn about individual features of Goals.</p>
<p>Goals are set at the profile level, and are limited to 20 Goals per profile. Each profile can have four sets of Goals, and each set can have a maximum of five Goals. To track more than 20 goals, create an additional profile for that property. You must be an <a href="http://support.google.com/analytics/bin/answer.py?answer=1009633">Analytics account administrator</a> to set up Goals.</p>
<p>For more information on the account settings names in these instructions, like <em>Goal Funnel</em> and <em>Goal Value</em>, read <a href="http://support.google.com/analytics/bin/answer.py?answer=1012040">About Goals</a>.</p>
<h4>To set up a Goal:</h4>
<ol>
<ol>
<li>Click the <strong>Admin</strong> tab at the top right of any screen in Analytics. If you are not already on the Account Administration screen, click the All Accounts link at top left, just below the orange bar.</li>
</ol>
</ol>
<ol>
<ol>
<li>Click the name of the account and then the name of the property you want to add a Goal to. If you have a lot of accounts or properties, use the drop down search box in the top left of the menu bar and type to search.</li>
</ol>
</ol>
<ol>
<ol>
<li>Use the <strong>Profile</strong> menu to select the profile you want.</li>
</ol>
</ol>
<ol>
<ol>
<li>Click the <strong>Goals</strong> tab beneath the Profile menu.</li>
</ol>
</ol>
<ol>
<ol>
<li>Click <strong>+Goal</strong> to add a goal to one of the Goal sets.<br />
<em>The Analytics blog post from June 14, 2012 has a great <a href="http://analytics.blogspot.com/2012/06/ga-advocate-justin-cutroni-answers-your.html">example of how to organize Goal sets</a>.</em></li>
</ol>
</ol>
<ol>
<ol>
<li>Enter a <strong>Goal Name</strong> you can easily recognize in reports.</li>
</ol>
</ol>
<ol>
<ol>
<li>Select <strong>Active</strong> if you want the Goal to apply as soon as you create and save it. Select <strong>Inactive</strong> if you want to create the Goal without applying it to your account.<br />
<em>You can change this selection at any time to pause and reactivate a Goal.</em></li>
</ol>
</ol>
<ol>
<ol>
<li>Select the <strong>Goal Type</strong>:
<ul>
<li><strong>Destination</strong>: A URL (for web) or Screen (apps) destination. This Goal works well combined with a Goal Funnel.</li>
<li><strong>Visit Duration</strong>: Specify the amount of time a visitor spends on your site or app. Under Goal Details, specify the Condition, Hours, Minutes, and Seconds. Optionally, enter a Goal Value. If you’re tracking a transaction, leave this blank. The Value will be pulled in from your Ecommerce Tracking code.</li>
<li><strong>Pages/Visit (web) Screens/Visit (app)</strong>: Specify a number of pages or screens. Under Goal Details, specify the Condition and the Number of Screens/Pages Visited. Optionally, enter a Goal Value. If you’re tracking a transaction, leave this blank. The Value will be pulled in from your Ecommerce Tracking code.</li>
<li><strong>Event</strong>: Specify an Event as a Goal. In order to set this kind of goal, you must first set up Event Tracking. Under Goal Details, configure a combination of Event conditions (e.g., the Event Category, Action, Label, or Value). You must select at least one condition. Choose a Goal Value for the Event. The actual Event Value is the value you assigned to the Event when you set it up. The Constant Value can be entered manually in this field.</li>
</ul>
</li>
</ol>
</ol>
<ol>
<li>Click <strong>Save</strong>.</li>
</ol>
<h4>More Info</h4>
<ul>
<li><a href="http://support.google.com/analytics/bin/answer.py?answer=1116091">Goals for URLs and Ecommerce</a> (for web properties)</li>
<li><a href="http://support.google.com/analytics/bin/answer.py?answer=1032720">Special-case Goals and Funnels</a> (for web properties)</li>
<li><a href="http://support.google.com/analytics/bin/answer.py?answer=">Mobile App Outcomes: Goals and Ecommerce Reports</a> (for app properties)</li>
</ul>
</div>
<p><a href="http://support.google.com/analytics/bin/answer.py?hl=en&amp;answer=1032415#" name="helpful"></a></p>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/tracking-goals-in-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White screen in WordPress &#8211; turn on your debug to find out what&#8217;s broken</title>
		<link>http://wordpresstips.googlethem.com/white-screen-in-wordpress-turn-on-your-debug-to-find-out-whats-broken/</link>
		<comments>http://wordpresstips.googlethem.com/white-screen-in-wordpress-turn-on-your-debug-to-find-out-whats-broken/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 01:08:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress fix]]></category>
		<category><![CDATA[wordpress multisite]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=594</guid>
		<description><![CDATA[http://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG]]></description>
				<content:encoded><![CDATA[<p>http://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/white-screen-in-wordpress-turn-on-your-debug-to-find-out-whats-broken/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Genesis Studiopress and woocommerce integration</title>
		<link>http://wordpresstips.googlethem.com/genesis-studiopress-and-woocommerce-integration/</link>
		<comments>http://wordpresstips.googlethem.com/genesis-studiopress-and-woocommerce-integration/#comments</comments>
		<pubDate>Sat, 09 Feb 2013 23:12:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Genesis Frameworks]]></category>
		<category><![CDATA[woothemes]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=587</guid>
		<description><![CDATA[This StudioPress official plugin allows Genesis to work with WooCommerce: http://wordpress.org/extend/plugins/genesis-connect-woocommerce/]]></description>
				<content:encoded><![CDATA[<p>This StudioPress official plugin allows Genesis to work with WooCommerce:</p>
<p>http://wordpress.org/extend/plugins/genesis-connect-woocommerce/</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/genesis-studiopress-and-woocommerce-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress User levels</title>
		<link>http://wordpresstips.googlethem.com/wordpress-user-levels/</link>
		<comments>http://wordpresstips.googlethem.com/wordpress-user-levels/#comments</comments>
		<pubDate>Thu, 24 Jan 2013 15:08:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress multisite]]></category>
		<category><![CDATA[wordpress security]]></category>
		<category><![CDATA[Wordpress Tips]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=585</guid>
		<description><![CDATA[from: WPMUDev.org The Change Role to drop down menu lets you change the roles of a user. The five roles a user can be assigned in decreasing level of responsibility are: Administrator – can do everything including complete power over posts, pages, plugins, comments, choice of themes, imports, settings, assign user roles and are even [...]]]></description>
				<content:encoded><![CDATA[<p>from: WPMUDev.org</p>
<p>The Change Role to drop down menu lets you change the roles of a user.</p>
<p><strong>The five roles a user can be assigned in decreasing level of responsibility are:</strong></p>
<ol>
<li><strong>Administrator</strong> – can do everything including complete power over posts, pages, plugins, comments, choice of themes, imports, settings, assign user roles and are even able to delete the blog.</li>
<li><strong>Editor</strong> – is able to publish posts/pages, manage posts/pages, upload files, moderate comments as well as manage other people’s posts/pages.</li>
<li><strong>Author</strong> – can upload files plus write and publish own posts.</li>
<li><strong>Contributor</strong> – can write own posts but can’t publish them; instead they are submitted for review.  An administrator or editor then reviews and publishes their posts.</li>
<li><strong>Subscriber</strong> – can read comments and write comments.</li>
</ol>
<p>The Administrator has the highest access of the site users and is able to use all enabled site features, while a subscriber has the lowest, only able to read and write comments.</p>
<p>You need to consider carefully what role you assign all users because on group sites Administrators are able to remove other users, including other administrators, and editors can delete content.</p>
<h3><strong>Summary of user roles based on their Capability:</strong></h3>
<p><img alt="" src="http://premium.wpmudev.org/wp-content/uploads/2011/01/roles61.jpg" width="650" height="685" /></p>
<h3><strong><strong>Summary of differences between users based on access to dashboard menus: </strong></strong></h3>
<p><img alt="User roles" src="http://premium.wpmudev.org/wp-content/uploads/2010/07/users61.png" width="614" height="402" /></p>
<div>
<aside id="manual-breadcrumbs">
<h2>The <strong>WPMU DEV</strong> Manuals</h2>
<ul>
<li><a href="http://premium.wpmudev.org/manuals/wordpress/" data-id="678836">WordPress for Beginners</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wordpress-plugins-themes/" data-id="678838">Plugins and Themes</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wordpress-multisite/" data-id="678840">WordPress Multisite</a>
<ul>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/setting-up-your-support-email-account/" data-id="678301">Setting up your Support Email Account in cPanel</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/introduction-to-super-admin-user/" data-id="318301">Overview of The WordPress Super Admin and Other User Roles</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/network-options/" data-id="28101">Optimizing your WordPress Network Options</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-sites-using-your-sign-up-page/" data-id="331401">Creating WordPress sites using your sign up page</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-sites-using-super-admin-sites/" data-id="332701">Creating New Sites in The WordPress Network Admin</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/working-with-sites/" data-id="29601">Working with WordPress Sites in the Network Admin Dashboard</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-usernames-using-your-signup-page/" data-id="29901">Creating WordPress usernames using your sign up page</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-and-adding-users-to-a-site-using-add-new/" data-id="354401">Adding users to a WordPress site using Add New</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/creating-usernames-using-super-admin-users/" data-id="355201">Creating usernames using the WordPress Network Admin Dashboard</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/working-with-super-admin-users/" data-id="356601">Managing WordPress users in the network admin dashboard</a></li>
<li><a href="http://premium.wpmudev.org/manuals/wpmu-manual-2/working-with-users-user-subpanel/" data-id="357701">Managing WordPress users in the site admin dashboard</a></li>
</ul>
</li>
<li><a href="http://premium.wpmudev.org/manuals/buddypress-2/" data-id="678842">BuddyPress</a></li>
</ul>
</aside>
</div>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/wordpress-user-levels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elegant Themes to change image size in filterable portfolio</title>
		<link>http://wordpresstips.googlethem.com/elegant-themes-to-change-image-size-in-filterable-portfolio/</link>
		<comments>http://wordpresstips.googlethem.com/elegant-themes-to-change-image-size-in-filterable-portfolio/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 06:21:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Elegant Themes]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=580</guid>
		<description><![CDATA[\wp-content\themes\Flexible\funtions.php around line 310: change:     $portfolio_query = new WP_Query( apply_filters( 'et_ajax_portfolio_args', $portfolio_args ) );     while ( $portfolio_query-&#62;have_posts() ) : $portfolio_query-&#62;the_post();         global $post;         $width = apply_filters( 'et_ajax_media_width', 600 );         $height = apply_filters( 'et_ajax_media_height', 480 );         $media = get_post_meta( $post-&#62;ID, '_et_used_images', true );         echo '&#60;div&#62;'; [...]]]></description>
				<content:encoded><![CDATA[<p>\wp-content\themes\Flexible\funtions.php</p>
<p>around line 310:</p>
<p>change:</p>
<pre>    $portfolio_query = new WP_Query( apply_filters( 'et_ajax_portfolio_args', $portfolio_args ) );
    while ( $portfolio_query-&gt;have_posts() ) : $portfolio_query-&gt;the_post();
        global $post;
        $width = apply_filters( 'et_ajax_media_width', <span style="color: #ff0000;"><strong>600</strong></span> );
        $height = apply_filters( 'et_ajax_media_height', 480 );

        $media = get_post_meta( $post-&gt;ID, '_et_used_images', true );
        echo '&lt;div&gt;';
to:
    $portfolio_query = new WP_Query( apply_filters( 'et_ajax_portfolio_args', $portfolio_args ) );
    while ( $portfolio_query-&gt;have_posts() ) : $portfolio_query-&gt;the_post();
        global $post;
        $width = apply_filters( 'et_ajax_media_width', <span style="color: #ff0000;"><strong>640</strong></span> );
        $height = apply_filters( 'et_ajax_media_height', 480 );

        $media = get_post_meta( $post-&gt;ID, '_et_used_images', true );
        echo '&lt;div&gt;';

Then (it won't make a difference until you) change or add to the bottom of stylesheet.css 
.et_media {
    width: 640px;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/elegant-themes-to-change-image-size-in-filterable-portfolio/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Elegant themes sort project listings</title>
		<link>http://wordpresstips.googlethem.com/elegant-themes-sort-project-listings/</link>
		<comments>http://wordpresstips.googlethem.com/elegant-themes-sort-project-listings/#comments</comments>
		<pubDate>Wed, 16 Jan 2013 06:06:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Elegant Themes]]></category>

		<guid isPermaLink="false">http://wordpresstips.googlethem.com/?p=576</guid>
		<description><![CDATA[from: https://www.elegantthemes.com/forum/viewtopic.php?f=169&#38;t=127008&#38;p=580906&#38;hilit=filterable+sort#p580906 open template-page-projects.php and try to replace this code: $portfolio_args = array( 'post_type' =&#62; 'project', 'showposts' =&#62; -1, 'tax_query' =&#62; array( array( 'taxonomy' =&#62; 'project_category', 'field' =&#62; 'id', 'terms' =&#62; $et_ptemplate_projectcats, 'operator' =&#62; 'IN' ) ) ); with $portfolio_args = array( 'post_type' =&#62; 'project', 'showposts' =&#62; -1, 'orderby'=&#62;'id', 'tax_query' =&#62; array( array( 'taxonomy' =&#62; [...]]]></description>
				<content:encoded><![CDATA[<p>from: https://www.elegantthemes.com/forum/viewtopic.php?f=169&amp;t=127008&amp;p=580906&amp;hilit=filterable+sort#p580906</p>
<p>open template-page-projects.php and try to replace this code:</p>
<pre>$portfolio_args = array(
 'post_type' =&gt; 'project',
 'showposts' =&gt; -1,
 'tax_query' =&gt; array(
 array(
 'taxonomy' =&gt; 'project_category',
 'field' =&gt; 'id',
 'terms' =&gt; $et_ptemplate_projectcats,
 'operator' =&gt; 'IN'
 )
 )
 );</pre>
<p>with</p>
<pre>$portfolio_args = array(
 'post_type' =&gt; 'project',
 'showposts' =&gt; -1,
'orderby'=&gt;'id',
 'tax_query' =&gt; array(
 array(
 'taxonomy' =&gt; 'project_category',
 'field' =&gt; 'id',
 'terms' =&gt; $et_ptemplate_projectcats,
 'operator' =&gt; 'IN'
 )
 )
 );</pre>
]]></content:encoded>
			<wfw:commentRss>http://wordpresstips.googlethem.com/elegant-themes-sort-project-listings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
