<?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 Tag: Import - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/import</link>
		<description>Gravity Support Forums Tag: Import - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 19:55:59 +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/tags/import/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>thinkluke on "Custom Form Field With Multiple Inputs"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/custom-form-field-with-multiple-inputs#post-45266</link>
			<pubDate>Mon, 02 Jan 2012 02:37:44 +0000</pubDate>
			<dc:creator>thinkluke</dc:creator>
			<guid isPermaLink="false">45266@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I am trying to create a form that gets the latitude and longitude from Google maps and saves it to a custom table in WordPress. &#60;/p&#62;
&#60;p&#62;Currently i have created a the required fields and everything populates as expected.&#60;/p&#62;
&#60;p&#62;I have then added a custom field type to gravity forms. This renders fine on the client side however doesn't appear to be working on the server side as it is not sending the values through to gravity forms... i would like the function to display as the name field displays in entries.&#60;/p&#62;
&#60;p&#62;I am hoping you maybe able to let me know where i am going wrong &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add a custom field button to the advanced to the field editor
add_filter( &#38;#39;gform_add_field_buttons&#38;#39;, &#38;#39;add_loc_field&#38;#39; );
function add_loc_field( $field_groups ) {
    foreach( $field_groups as &#38;amp;$group ){
        //if( $group[&#38;quot;name&#38;quot;] == &#38;quot;advanced_fields&#38;quot; ){ // to add to the Advanced Fields
        //if( $group[&#38;quot;name&#38;quot;] == &#38;quot;standard_fields&#38;quot; ){ // to add to the Standard Fields
        if( $group[&#38;quot;name&#38;quot;] == &#38;quot;post_fields&#38;quot; ){ // to add to the Standard Fields
            $group[&#38;quot;fields&#38;quot;][] = array(
                &#38;quot;class&#38;quot;=&#38;gt;&#38;quot;button&#38;quot;,
                &#38;quot;value&#38;quot; =&#38;gt; __(&#38;quot;Add Location&#38;quot;, &#38;quot;gravityforms&#38;quot;),
                &#38;quot;onclick&#38;quot; =&#38;gt; &#38;quot;StartAddField(&#38;#39;add_loc&#38;#39;);&#38;quot;
            );
            break;
        }
    }
    return $field_groups;
}

// Adds title to GF custom field
add_filter( &#38;#39;gform_field_type_title&#38;#39; , &#38;#39;add_loc_title&#38;#39; );
function add_loc_title( $type ) {
    if ( $type == &#38;#39;add_loc&#38;#39; )
	echo $field[&#38;quot;type&#38;quot;];
        return __( &#38;#39;Add Location&#38;#39; , &#38;#39;gravityforms&#38;#39; );
}

// Adds the input area to the external side
add_action( &#38;quot;gform_field_input&#38;quot; , &#38;quot;add_loc_field_input&#38;quot;, 10, 5 );
function add_loc_field_input ( $input, $field, $value, $lead_id, $form_id ){

    if ( $field[&#38;quot;type&#38;quot;] == &#38;quot;add_loc&#38;quot; ) {

		$value = array (

		);
        $max_chars = &#38;quot;&#38;quot;;
        if(!IS_ADMIN &#38;amp;&#38;amp; !empty($field[&#38;quot;maxLength&#38;quot;]) &#38;amp;&#38;amp; is_numeric($field[&#38;quot;maxLength&#38;quot;]))
            $max_chars = self::get_counter_script($form_id, $field_id, $field[&#38;quot;maxLength&#38;quot;]);

        $input_name = $form_id .&#38;#39;_&#38;#39; . $field[&#38;quot;id&#38;quot;];
        $tabindex = GFCommon::get_tabindex();

		//div start
		$wrap_start = sprintf(&#38;quot;&#38;lt;div id=&#38;#39;gmaps_location_%s&#38;#39; class=&#38;#39;ginput_complex ginput_container&#38;#39;&#38;gt;&#38;quot;,$field[&#38;quot;id&#38;quot;]);

		//Location - Address
		$location_address = sprintf(&#38;quot;&#38;lt;input type=&#38;#39;text&#38;#39; name=&#38;#39;input_%d_address&#38;#39; id=&#38;#39;%s_address&#38;#39;/&#38;gt;&#38;lt;label for=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_address&#38;#39; id=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_address_label&#38;#39;&#38;gt;Enter Location&#38;lt;/label&#38;gt;&#38;quot;	, $field[&#38;quot;id&#38;quot;], &#38;#39;add_loc_&#38;#39;.$field[&#38;#39;id&#38;#39;], $location_value, $disabled_text, $field_id);

		//Submit Location
		$sub_id = &#38;quot;add_loc_&#38;quot;.$field[&#38;#39;id&#38;#39;].&#38;quot;_address&#38;quot;;
		$sub_location = &#38;quot;&#38;lt;input type=\&#38;quot;button\&#38;quot; onclick=\&#38;quot;findAddress(document.getElementById(&#38;#39;{$sub_id}&#38;#39;).value);\&#38;quot;  value=\&#38;quot;Set Address on Map\&#38;quot; class=\&#38;quot;b_submit\&#38;quot;&#38;gt;&#38;quot;;

		$location_submit = $sub_location;

		//Map Canvas
		$map_canvas = &#38;quot;&#38;lt;div id=&#38;#39;map_canvas&#38;#39; style=&#38;#39;width:500px; height:500px&#38;#39;&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;;	

		//Lat Position
		$lat_position = sprintf(&#38;quot;&#38;lt;input type=&#38;#39;text&#38;#39; name=&#38;#39;input_%d_lat&#38;#39; id=&#38;#39;%s_lat&#38;#39; value=&#38;#39;%F&#38;#39; $tabindex %s/&#38;gt;&#38;lt;label for=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_lat&#38;#39; id=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_lat_label&#38;#39;&#38;gt;Latitude&#38;lt;/label&#38;gt;&#38;quot;, $field[&#38;quot;id&#38;quot;], &#38;#39;add_loc_&#38;#39;.$field[&#38;#39;id&#38;#39;], esc_attr(stripslashes($geo_latitude)), $disabled_text, $field_id);

		//Lon Position
		$lon_position = sprintf(&#38;quot;&#38;lt;input type=&#38;#39;text&#38;#39; name=&#38;#39;input_%d_lon&#38;#39; id=&#38;#39;%s_lon&#38;#39; value=&#38;#39;%F&#38;#39; $tabindex %s/&#38;gt;&#38;lt;label for=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_lon&#38;#39; id=&#38;#39;add_loc_&#38;quot; . $field[&#38;quot;id&#38;quot;] . &#38;quot;_lon_label&#38;#39;&#38;gt;Longitude&#38;lt;/label&#38;gt;&#38;quot;, $field[&#38;quot;id&#38;quot;], &#38;#39;add_loc_&#38;#39;.$field[&#38;#39;id&#38;#39;], esc_attr(stripslashes($geo_longitude)), $disabled_text, $field_id);

		//end div
		$wrap_end = &#38;quot;&#38;lt;/div&#38;gt;&#38;quot;;

		$multifield = $wrap_start;
		$multifield .= $location_address;
		$multifield .= $location_submit;
		$multifield .= $map_canvas;
		$multifield .= $lat_position;
		$multifield .= $lon_position;
		$multifield .= print_r($value);
		$multifield .= $wrap_end;

		//$multifield = sprintf(&#38;quot;&#38;lt;div class=&#38;#39;ginput_container&#38;#39;&#38;gt;&#38;lt;input type= &#38;#39;text&#38;#39; name=&#38;#39;input_%s_address&#38;#39; id=&#38;#39;%s_address&#38;#39; class=&#38;#39;textfield gform_add_loc %s&#38;#39; value=&#38;#39;%s&#38;#39; /&#38;gt;&#38;lt;/div&#38;gt;&#38;quot;, $field[&#38;quot;id&#38;quot;], &#38;#39;add_loc-&#38;#39;.$field[&#38;#39;id&#38;#39;] , $field[&#38;quot;type&#38;quot;] . &#38;#39; &#38;#39; . esc_attr($field[&#38;#39;cssClass&#38;#39;]) . &#38;#39; &#38;#39; . $field[&#38;#39;size&#38;#39;] , esc_attr(stripslashes($value)));

		 return $multifield;

    }

    return $input;
}

// Now we execute some javascript technicalitites for the field to load correctly
add_action( &#38;quot;gform_editor_js&#38;quot;, &#38;quot;wps_gform_editor_js&#38;quot; );
function wps_gform_editor_js(){
?&#38;gt;

&#38;lt;script type=&#38;#39;text/javascript&#38;#39;&#38;gt;

    jQuery(document).ready(function($) {
        //Add all textarea settings to the &#38;quot;add_loc&#38;quot; field plus custom &#38;quot;add_loc_setting&#38;quot;
        // fieldSettings[&#38;quot;add_loc&#38;quot;] = fieldSettings[&#38;quot;textarea&#38;quot;] + &#38;quot;, .add_loc_setting&#38;quot;; // this will show all fields that Paragraph Text field shows plus my custom setting

        // from forms.js; can add custom &#38;quot;add_loc_setting&#38;quot; as well
        fieldSettings[&#38;quot;add_loc&#38;quot;] = &#38;quot;.label_setting, .description_setting, .admin_label_setting, .size_setting, .default_value_textarea_setting, .error_message_setting, .css_class_setting, .visibility_setting, .add_loc_setting&#38;quot;; //this will show all the fields of the Paragraph Text field minus a couple that I didn&#38;#39;t want to appear.

        //binding to the load field settings event to initialize the checkbox
        $(document).bind(&#38;quot;gform_load_field_settings&#38;quot;, function(event, field, form){
            jQuery(&#38;quot;#field_add_loc&#38;quot;).attr(&#38;quot;checked&#38;quot;, field[&#38;quot;field_add_loc&#38;quot;] == true);
            $(&#38;quot;#field_add_loc_value&#38;quot;).val(field[&#38;quot;add_loc&#38;quot;]);
        });
    });

&#38;lt;/script&#38;gt;
&#38;lt;?php
}

// Add a custom setting to the add_loc advanced field
add_action( &#38;quot;gform_field_advanced_settings&#38;quot; , &#38;quot;add_loc_settings&#38;quot; , 10, 2 );
function add_loc_settings( $position, $form_id ){

    // Create settings on position 50 (right after Field Label)
    if( $position == 50 ){
    ?&#38;gt;

    &#38;lt;li class=&#38;quot;add_loc_setting field_setting&#38;quot;&#38;gt;

        &#38;lt;input type=&#38;quot;checkbox&#38;quot; id=&#38;quot;field_add_loc&#38;quot; onclick=&#38;quot;SetFieldProperty(&#38;#39;field_add_loc&#38;#39;, this.checked);&#38;quot; /&#38;gt;
        &#38;lt;label for=&#38;quot;field_add_loc&#38;quot; class=&#38;quot;inline&#38;quot;&#38;gt;
            &#38;lt;?php _e(&#38;quot;Disable Submit Button&#38;quot;, &#38;quot;gravityforms&#38;quot;); ?&#38;gt;
            &#38;lt;?php gform_tooltip(&#38;quot;form_field_add_loc&#38;quot;); ?&#38;gt;
        &#38;lt;/label&#38;gt;

    &#38;lt;/li&#38;gt;
    &#38;lt;?php
    }
}

//Filter to add a new tooltip
add_filter(&#38;#39;gform_tooltips&#38;#39;, &#38;#39;wps_add_add_loc_tooltips&#38;#39;);
function wps_add_add_loc_tooltips($tooltips){
   $tooltips[&#38;quot;form_field_add_loc&#38;quot;] = &#38;quot;&#38;lt;h6&#38;gt;Disable Submit Button&#38;lt;/h6&#38;gt;Check the box if you would like to disable the submit button.&#38;quot;;
   $tooltips[&#38;quot;form_field_default_value&#38;quot;] = &#38;quot;&#38;lt;h6&#38;gt;Default Value&#38;lt;/h6&#38;gt;Enter the Add Location here.&#38;quot;;
   return $tooltips;
}

// Add a script to the display of the particular form only if add_loc field is being used
add_action( &#38;#39;gform_enqueue_scripts&#38;#39; , &#38;#39;wps_gform_enqueue_scripts&#38;#39; , 10 , 2 );
function wps_gform_enqueue_scripts( $form, $ajax ) {
    // cycle through fields to see if add_loc is being used
    foreach ( $form[&#38;#39;fields&#38;#39;] as $field ) {
        if ( $field[&#38;#39;type&#38;#39;] == &#38;#39;add_loc&#38;#39; ) {
			wp_register_script( &#38;#39;gmaps_api&#38;#39;, &#38;#39;http://maps.googleapis.com/maps/api/js?sensor=true&#38;#39;);
    		wp_enqueue_script( &#38;#39;gmaps_api&#38;#39; );
            break;
        }
    }
}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>ScottSendraDesign on "Returns in Textarea causing problems in csv export"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/returns-in-textarea-causing-problems-in-csv-export#post-254514</link>
			<pubDate>Wed, 15 May 2013 20:16:00 +0000</pubDate>
			<dc:creator>ScottSendraDesign</dc:creator>
			<guid isPermaLink="false">254514@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am having an issue when I import Gravity Forms csv forms into Excel. The form I created uses multiple textarea fields. If a return  is entered into a textarea, i.e more than one paragraph is added, when I import the csv data into Excel, the return is interpreted as a line break. This messes up my columns quite a bit!&#60;/p&#62;
&#60;p&#62;Is there a way of filtering for returns and replacing or deleting them? Or a way of preventing certain characters from being allowed in a textarea field?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>damdo74 on "Problem with the export messages in CSV format (french languages messages)"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/problem-with-the-export-messages-in-cvs-format-french-languages-messages#post-77597</link>
			<pubDate>Thu, 27 Sep 2012 04:31:49 +0000</pubDate>
			<dc:creator>damdo74</dc:creator>
			<guid isPermaLink="false">77597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I am having trouble with the csv export message functions. When importing in Excel, the ''Commentaires&#34; field content is displayed on several different lines, even with some line spaces in between.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;https://www.dropbox.com/s/3dpbivswao9e79b/gform-gravity-export-problem.png&#34; rel=&#34;nofollow&#34;&#62;https://www.dropbox.com/s/3dpbivswao9e79b/gform-gravity-export-problem.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I tried to change the separator via the functions.php but then I get a fatal error which makes my website unaccessible.&#60;br /&#62;
The messages are in French.&#60;/p&#62;
&#60;p&#62;Thanks a lot for your help.&#60;br /&#62;
Best regards&#60;br /&#62;
Damdo
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Vayu on "Setup a testsite on local machine, but form will not save and fields are lost"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/setup-a-testsite-on-local-machine-but-form-will-not-save-and-fields-are-lost#post-242515</link>
			<pubDate>Wed, 08 May 2013 06:24:49 +0000</pubDate>
			<dc:creator>Vayu</dc:creator>
			<guid isPermaLink="false">242515@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi.&#60;br /&#62;
I have a huge form setup on this site. &#60;a href=&#34;http://forsikringsdeal.dk/&#34; rel=&#34;nofollow&#34;&#62;http://forsikringsdeal.dk/&#60;/a&#62;.  Unfortunately, you have to be logged ind to see the form.&#60;br /&#62;
We run the latest version of WP 3.5.1, but have not updated to the latest version of GravityForms.  We need to do some testing first and also we plan to make some big changes to the site, hence I have setup a copy of the site on a local machine.  The Gravityforms version we use now is 1.6.12.&#60;br /&#62;
However, I am having problems getting the form to work on the local machine.  I have exported the data with phpMyAdmin.  I have read that it can cause issues and have also installed and run the meta recovery plugin.  But still, when I try to make changes to the form, it returns with a page where I have to create a new form. I have testet it in GravityForms 1.6.12 and 1.7.2. See screenshot: &#60;a href=&#34;https://www.evernote.com/shard/s3/sh/6be961c6-40b4-416a-8dbc-1ea749a886d3/bb126703cdbbf90e2ed0ef81667a911a&#34; rel=&#34;nofollow&#34;&#62;https://www.evernote.com/shard/s3/sh/6be961c6-40b4-416a-8dbc-1ea749a886d3/bb126703cdbbf90e2ed0ef81667a911a&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The fields are not lost, so when I exit the page and go back into the form editor, the fields are back.  But it will not let me save any modifications.&#60;/p&#62;
&#60;p&#62;I need all the entries for this form, hence I cannot just export and import xml data, as this creates a new form without all the entries.&#60;/p&#62;
&#60;p&#62;Is there anything I can do to fix this?&#60;br /&#62;
It worries me a bit actually, as of right now, we don't have a functioning backup process if our site is hacked and data is lost.  I mean, we have a backup, but the backup will not get us a functioning form again.&#60;br /&#62;
Hope there is a solution.&#60;br /&#62;
Thanks&#60;br /&#62;
Vayu
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Bruce_Alfred on "Notification Routing List Export then Import?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/notification-routing-list-export-then-import#post-232233</link>
			<pubDate>Wed, 01 May 2013 12:26:43 +0000</pubDate>
			<dc:creator>Bruce_Alfred</dc:creator>
			<guid isPermaLink="false">232233@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;br /&#62;
Is there a way to export a notifications routing list from one form to then import into another. I've got a lengthy notifications routing list, and I'd rather not have to redo it by hand.&#60;br /&#62;
Thanks,&#60;br /&#62;
Bruce
&#60;/p&#62;</description>
		</item>
		<item>
			<title>freeHat on "import/export form error"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/importexport-form-error#post-194232</link>
			<pubDate>Tue, 02 Apr 2013 08:27:32 +0000</pubDate>
			<dc:creator>freeHat</dc:creator>
			<guid isPermaLink="false">194232@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am trying to import/export from one WP installation to another. When I try to import the exported file I get the following error message - 'Forms could not be imported. Please make sure your XML export file is in the correct format.'
&#60;/p&#62;</description>
		</item>
		<item>
			<title>obabilon on "Import data from Store Locator Plus into Gravity Forms"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/import-data-from-store-locator-plus-into-gravity-forms#post-178370</link>
			<pubDate>Wed, 20 Mar 2013 17:02:39 +0000</pubDate>
			<dc:creator>obabilon</dc:creator>
			<guid isPermaLink="false">178370@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to import data from Store Locator Plus into Gravity Forms? I have a bunch of users already in my WordPress database and I would like to merge their data that is separate for the Store Locator Plus into Gravity Forms. Do you know if this is possible? Or is anyone out there able to help me with this?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alan Laidlaw on "Upload CSV of previous GF entries to a fresh Gravity Form install?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/upload-csv-of-previous-gf-entries-to-a-fresh-gravity-form-install#post-121740</link>
			<pubDate>Mon, 14 Jan 2013 15:39:11 +0000</pubDate>
			<dc:creator>Alan Laidlaw</dc:creator>
			<guid isPermaLink="false">121740@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Occasionally I have to make a fresh Wordpress install of an existing site. I export the form entries to a CSV. Then I make the new site, import the forms from the previous site, but I don't see a SAFE way to import the entries.&#60;br /&#62;
Is this possible? If not, is there a way I can decouple the gravity forms tables from Wordpress so this problem in the future?&#60;br /&#62;
Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>BoragThungg on "Conditional logic for repeating sections - there&#039;s got to be a better way..."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/conditional-logic-for-repeating-sections-theres-got-to-be-a-better-way#post-150407</link>
			<pubDate>Tue, 19 Feb 2013 18:32:30 +0000</pubDate>
			<dc:creator>BoragThungg</dc:creator>
			<guid isPermaLink="false">150407@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;My client has designed a form that requires a couple of drop downs and a couple of text fields per product - all on one line. They want the user to be able to add a new line for each new product up to a maximum of 60 (originally 120). I've wrapped each block inside a conditional section so a new section only shows if they tick a box at the end of the product row. Using list fields for products would be amazing here - but alas it is not possible.&#60;/p&#62;
&#60;p&#62;My problem is that one of the drop downs has over 150 options. Once this gets repeated 60 times with conditional logic then the page has become really slow. I tried exporting it from my local machine to a couple of live servers to see how slow it is but they won't even import the xml file. One stated an Out of Memory error and the other did nothing. I changed php memory and post max size but to no avail. The xml file is over 75000 lines long and weighs in at 3.5MB.&#60;/p&#62;
&#60;p&#62;Can anybody tell me a more efficient way of doing this please?&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;Mark
&#60;/p&#62;</description>
		</item>
		<item>
			<title>zenyth on "Limit in fields number?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/limit-in-fields-number#post-128582</link>
			<pubDate>Tue, 22 Jan 2013 11:42:34 +0000</pubDate>
			<dc:creator>zenyth</dc:creator>
			<guid isPermaLink="false">128582@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi, I'm trying to import a xml form with 2220 fields. Import says &#34;everything ok&#34; but when I try to preview the module, it get corrupted since first field and then stops.&#60;br /&#62;
Regards
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
