Corey Salzano
Forum Replies Created
-
Hi, thanks for trying my plugin!
The string “inputType” does not appear in this plugin, so it’s not something I’m trying to do.
I can reproduce your test. I see the
inputType
attributes on fields appearing. The method that’s doing it isGFAPI::update_form()
. That’s in Gravity Forms. I’m calling during the .json Load button click. TheinputType
attribute is showing up in your .json file after a form change is detected during the load.The Forms > Import Export > Export Forms feature creates .json without these attributes, but once they are added, they persist. More research is necessary on this one. Thanks for the tip.
Forum: Plugins
In reply to: [Meow Lightbox] MeowCommon_Admin is called too earlyPlease fix this. The constructor of your
MeowCommon_Admin
class is calling$this->is_user_admin()
on line 53 and causing this log message during every admin page load.There are 5
error_log()
calls in your plugin. Delete them all please. We can’t act on any of this information. One of them is inside a function calledtimer_log_elapsed()
that your plugin never seems to use. There’s lots of code in comments. Please make all our sites faster by deleting every extra line in every file.Forum: Plugins
In reply to: [Power Boost for Gravity Forms] Json import issuesHi Pawel,
We communicated outside this forum, and I appreciate your help in preparing version 3.2.0 to accommodate plugins like GravityFlow that insert their feed settings into form export files. Version 3.2.0 is available on Github today and will reach all users via .org soon.
Thanks
Well, I need it to help one of our mutual customers make money & continue paying for their Dokan Pro license. I’m a contractor trying to customize Dokan’s interfaces.
Also, the plugin review team now requires it. Here’s an excerpt I got from [email protected] earlier this year:
## No publicly documented resource for your compressed content
In reviewing your plugin, we cannot find a non-compiled version of your javascript and/or css related source code.
In order to comply with our guidelines of human-readable code, we require you to include a link to the non-compressed, developer libraries you’ve included in your plugin. This may be in your source code, however we require you to also have it in your readme.
We strongly feel that one of the strengths of open source is the ability to review, observe, and adapt code. By maintaining a public directory of freely available code, we encourage and welcome future developers to engage with WordPress and push it forward.
That said, with the advent of larger and larger plugins using more complex libraries, people are making good use of build tools (such as composer or npm) to generate their distributed production code. In order to balance the need to keep plugin sizes smaller while still encouraging open source development, we require plugins to make the source code to any compressed files available to the public in an easy to find location, by documenting it in the readme.
For example, if you’ve made a Gutenberg plugin and used npm and webpack to compress and minify it, you must either include the source code within the published plugin or provide access to a public maintained source that can be reviewed, studied, and yes, forked.
We strongly recommend you include directions on the use of any build tools to encourage future developers.
I think Github or Bitbucket would be a great place to provide unminimized files for developers like me. You can continue shipping the plugin with the smaller file size.
- This reply was modified 5 months, 2 weeks ago by Corey Salzano.
Forum: Plugins
In reply to: [Mailgun for WordPress] Undefined array key “SERVER_NAME”The site is hosted at Kinsta.com
Forum: Plugins
In reply to: [Mailgun for WordPress] Undefined array key “SERVER_NAME”Not local. The paths wouldn’t have www/ in my local environment. I don’t remember which site’s log contained this error, but I’ll try to figure that out. Thanks.
Forum: Plugins
In reply to: [hCaptcha for WP] PHP Fatal error on version 4.4.0Gravity Forms 2.8.16
Forum: Plugins
In reply to: [Add Featured Image to RSS Feed] Update needed.Sorry it’s not working for you. What feed reader are you using? In Feedly, no images added by this plugin are shown. The only way I can get images to show for my site in Feedly is by adding open graph meta tags to the site’s pages. Modern feed readers visit the article URLs and use meta data from the page. Try adding this plugin to your site: Open Graph
Version 3.1.6 has a fix for this behavior. It requires a page refresh when changing the Compact view setting, but IDs are no longer added in Compact view.
Thanks for the bug report!
Hi, thanks for trying my plugin. You just taught me about Compact View! I do consider this to be a bug, and I’ll send a fix as soon as I can.
Forum: Plugins
In reply to: [Send Everything for Contact Form 7] don’t add the submit buttonThanks for trying my plugin!
Forum: Plugins
In reply to: [WP Mobile Bottom Menu] Undefined variable $icon_position_classThis creates 15 megabytes of log entries a day on the site where I installed it. I edited the plugin to stop the warning until you can send a fix.
- This reply was modified 11 months, 1 week ago by Corey Salzano.
Forum: Plugins
In reply to: [Power Boost for Gravity Forms] JSON Location HookHi, thanks for trying my plugin. Here’s an example that changes the path to save .json files to one level above the directory containing WordPress.
<?php add_filter( 'gravityforms_local_json_save_path', 'power_boost_change_json_path' ); /** * Changes the path to save .json files to one level above the directory containing WordPress. * * @return string */ function power_boost_change_json_path() { return dirname( ABSPATH ); }
Forum: Themes and Templates
In reply to: [FotaWP] Templates break with child themeI am not having issues because I decided to build a child theme on Twenty Twenty Four instead of FotaWP. Reproducing my problem should be easy, but I’m not a user at this time.
Forum: Plugins
In reply to: [WP-Syntax] Does not work with WordPress theme Twenty Twenty Four.Looks like you got something working. What was the solution?