aryanduntley
Forum Replies Created
-
Forum: Plugins
In reply to: [Ultimate Under Construction] Javascript Error, background_color not declaredSure thing.
Forum: Plugins
In reply to: [Ultimate Under Construction] Javascript Error, background_color not declaredFurthermore, I do not believe this script should be getting called in the edit post page, it may be (I haven’t checked your plugin’s use enough, I just activated it and am using all default stuff), but it doesn’t seem likely. You may want to think about adding the script only when in its settings page or !is_admin().
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Invalid HeadersForum: Plugins
In reply to: [Gravity Forms Mass Import] Invalid HeadersIf you are using GF > 1.8, I cannot help you. I am no longer maintaining this plugin, sorry. If you are, somehow, still using 1.8 or <, then send me your csv file.
Forum: Plugins
In reply to: [WP REST API (WP API)] Categorising a new PostYou can use this in your functions.php file, or in your plugin file. It is simply a hook. In wordpress hooks can called from pretty much anywhere. Typically, someone would use it in their funcions.php file, or in their plugins main functions file (or called into their main functions file).
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Limited to 10 fields?It should be giving you the correct amount of fields, there is no limit to number of fields. Also, the hack you are using may still produce undesired results. Make sure you check your imports (if it is actually importing) and verify all fields are correct. Still, this plugin is incompatible with GF 1.9+ and I will not be updating it (GF is unnecessarily complex in code and structure). I will be making my own forms interface so I’m doing away with GF altogether.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Nothing showsYeah, I can do that. I will not be updating for any further GF releases. I am in the process of creating my own forms plugin.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Nothing showsWhat version of GF are you using. This plugin has not been (and will not be) updated to support 1.9+
Forum: Plugins
In reply to: [Gravity Forms Mass Import] 8461 row limit?Well the server is going to have time limits, memory limits, etc… There are no restrictions as far as the plugin goes. What I would suggest is to cut off the CSV at around line 800 and do that three times so that you have three csv files. Import them separately.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Survey ImportI have absolutely no idea. I have never heard of this add-on or any other gravity forms add-on. If you want to shoot me the code then I can take a look at how it’s managing the data and let you whether the plugin can deal with this natively. If my plugin cannot naturally import because of the way the survey add-on deals with data, then I will NOT adjust the code to work with the add-on. If the data is sent and stored in the same manner, just a discrepancy with the way the titles are dealt with (more likely it is storing by way of id (gravity forms could not care less about the title) and not title, I only used the title as a way of forcing proper entries without the need for a whole lot more code for field matching and the like). So, if you provide me with a copy [email protected] then I will take a look and let you know. If not, then I will simply say no, my plugin will not work with the addon.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Not workingHaven’t fully tested. You let me know. I’ll test if I get time.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Not workingMade your update, gave you cred.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Not workingI don’t speak French…
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Not workingI’ll look into get_form_meta_by_id and push an update if correct.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Invalid HeaderSorry, even that last csv I sent you was incorrect. You MUST match the headers as they are shown on that screenshot you gave me. Those headers are this:
“Name”,”Phone”,”Address”,”Email”,”Company + City”,”How was Product Received:”,”Tracking Number”,”Download Link”,”Date”,”Notes”Above should be your headers. For “How was Product Received:” and for Company + City (if Company + City is a mutliselect)then the values or entry fields for these would be a comma separated list just like the name and address fields. So, if “How was Product Received:” was a field that could take more than one value, your csv would look like this
“Name”,”Phone”,”Address”,”Email”,”Company + City”,”How was Product Received:”,”Tracking Number”,”Download Link”,”Date”,”Notes”
“John,Doe”,”123-456-789″,”123 Fake st.,,San Diego,CA,92109,”,”[email protected]”,”Rolo Co MI”,”selected 1,selected 2,selected 3″,”234554-abc”,”http://trackthis.com”,”12-12-12″,”This is how it’s done”