aryanduntley
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Coupon mass importI am unfamiliar with the coupon addon, but I doubt that if you import into a form, that it will be compatible with the addon. So, the answer is probably not.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Mass import and user registrationNo, this plugin will not create users for you. There are numerous plugins that convert CSV data into WP users. Look for “wordpress csv user import” and you will get a long list of available plugins. So, export your users gravity form data (that has not been converted into actual users), then use one of the csv user import plugins to import that data directly into wordpress’ user database table.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Formatting Issue with Address Field?Put all address fields within the one set of quotes. The checkbox will only have one value, but if it’s a mutli-check, then put all of the selections also inside one set of quotes.
“AwesomeCorp”, “123 main st.,Suite#2,Coolville,NY,12345,United States”,”apples”
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLLooking further at your site, it seems as though the error is only occurring on the page where you are trying to use my plugin (which is the only page that my plugin calls the mootools library). So, it’s not necessarily an issue with the mootools library version the featured content gallery is using, but rather, a conflict with the two different version on the same page. I am also now getting a corresponding error with the library version I’m using in my plugin. This simply indicates a conflict with the two versions. So, again, you have two solutions. 1. Remove one of the plugins. 2. Make sure that the mootools library from the featured content gallery is NOT being called on the page you are using my plugin. That can be accomplished with a call to wp_dequeue_script, but you would have to know the id of the script being used by the other plugin (which will take a quick look at their code). Then you can put a hook in your functions.php file that looks something like this:
if(is_page('discipleship-tree')){wp_dequeue_script("SCRIPTID");}Take note that you have to replace “SCRIPTID” with the id of the script that is being called by the featured content gallery plugin.
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLYou have an error in the “featured content gallery” plugin that also uses moo-tools (an older version – 1.11). It says “String contains an invalid character”. Disable that plugin and try again. It should work. If it does, then you can either find another solution to your featured content gallery plugin, or either remove the enqueue script for that plugin’s call to mootools (because you are already using it in my plugin this may cause conflict if certain calls to the older mootools library are depricated) or call a wp_dequeue_script in your functions file to remove it.
Looking at the code you have, you are actually calling the mootools library three times. Once for the featured content gallery (v1.11), once for my plugin (I’m not sure what version is being used, I should have probably included a version number, but it’s available in the file), and once generically by way of google api’s (meaning it’s being called externally also, likely to the latest version). So, you really should be calling the mootools library only once. If there is code there that calls the latest version from google api’s then you should try dequeueing both mine and the one for the other plugin (I will not be updating this so no need to worry about updates, I don’t know about the other plugin you are using though), and see if the latest library is compatible with all of the plugins.
In reality, I should have made this plugin with jQuery or vanilla javascript instead, to better prevent against compatibility issues. My plugin is NOT the problem you are having now, I’m just stating this because it’s better to stick with what’s already included with wordpress instead of including all sorts of other external libraries if it can be helped (in my opinion). Anyway, disable the plugin aforementioned and see if that helps. I believe it will. The bug in that plugin’s code is an issue that can could likely cause problems with any other javascript on the site where the problematic mootools library is being called (which will be anywhere that plugin is in use if it was made well, otherwise, it will be a site-wide problem). So, you really should dump that one, submit a bug report to the author and find another solution for it in the mean time.
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLPS. I’m in SE Asia right now, so internet is on and off, depending on where I’m at, also I’m sort of on vacation so I’m not always on the computer. Responses may be delayed.
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLYou are right. It is the slug and not the id. I have not touched this plugin since I uploaded it on the repository. It does work, and it does work with the latest wordpress update. Change it back to the slug. Also, email me at [email protected] and send the url. I will quickly check to see if there is some sort of javascript issue or conflict on your site that is causing the malfunction (it is almost definitely a js issue).
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLYou cannot put the category slug (although maybe I should have made it to accept that as well). You must use the id of the category, so either hover over the category or click it and the category id will be in the url. Replace the slug with the category id and your tree should appear.
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLNo, it’s compatible with v3.9, just checked. I do not actively maintain this plugin and will provide an update to the information indicating this at some point, but I did just check and it works fine with v3.9. Have you create your first mootree category? Have you created any “branches” yet? You have to use the category id withing the shortcode, have you done that? Please go through the documentation first and make sure you have covered all your bases.
Forum: Plugins
In reply to: [WP REST API (WP API)] Posting, returned errors errorI did the upgrade when it came out. Internet is intermittent for me over here, and I have set aside work on the api (I’m interfacing a site with a mobile app)for later. I have no doubt that you fixed this, but just for confirmation, when I get back to it, I will test and report on this thread. Thanks for the work and this plugin.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Single quotes still getting ' before themAnd for those of you reading this who may have the same issue, please refer to the other answers in regards to this topic as well as my initial answer to this person. The escaping of the ‘ is not done within the plugin. Despite this individuals lack of knowledge and insistence that it is, the issue is either coming from the csv import or the parsing of data to/from the database or to/from WordPress. Also, when using this plugin read the documentation, and be careful about the naming conventions you are using in the titles of the fields. This plugin was not created to be a steady, flawless piece of work to complement gravity forms. The Gravity Forms team is getting paid plenty of money to keep their code and work up to par, this plugin is not. It is a free piece of software that comes as is. I am willing to offer support until it becomes obsolete (hopefully the Gravity Forms teams will develop something similar, they will be better at keeping it up to date), however for those of you who get frustrated for lack of knowledge, do not badmouth my work, you won’t get a happy response.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Single quotes still getting ' before themPlease quit posting on this thread. You want to talk with me personally, email me [email protected]. If moderators are viewing this, please close this thread. I’ll tell you how I feel when you email me, and then some, this is not the place for it.
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Single quotes still getting ' before them“How can I fix this? With this issue, this plugin is not usable.”
Forum: Plugins
In reply to: [Gravity Forms Mass Import] Single quotes still getting ' before themThe plugin does not escape anything when importing the files. single quotes (or apostrophes) do not need to be escaped. Double quotes inside of an entry could be an issue (“this is an “entry” with a quote”,”this is another without one”), but the code should work anyway although I have not tested. You are likely having the same issue as the majority of the users who have posted in the support area, you are not correctly creating your csv file before importing.
I advised the other user you are referring to, to replace the apostrophes with the ACII { & #39; (without the space) }, not the other way around.
So, check your method of creating the csv, replace the apostrophes with the ACII representation, and make sure your file is utf8 encoded. The plugin works fine, it is not an issue with the plugin, but an issue with either the way you are setting up or encoding your csv file, and/or an issue with data results to/from php and MySQL where the quotes are getting escaped.
Still, if you feel the plugin is not useable, don’t use it. Do not get upset with plugin developers for putting out free code, and offering support on top of that. Get upset with yourself for not knowing enough to work with and resolve issues on your own, or at least look and ask for help or answers without getting frustrated and blaming everyone else.
Forum: Plugins
In reply to: [Wordpress MooTools Tree Creator] Link to page URLIt’s in the documentation. When you set up a tree category, at the bottom of the edit screen is an input box where you can customize the javascript that is acting on the tree clicks. Try changing :
milkbox.openWithFile({ href:node.data.url, title:node.linkcaption + " : " + node.linkdesc, size:"width:600,height:350"}, {overlayOpacity:1, resizeTransition:"bounce:out", centered:true});to
window.location.href = '...';