acodesmith
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Tiles] BROKEN! WooCommerce 3.0Thanks @tabboy for the advice. I went ahead and forked the github repo, then created a pull requeset with the latest select2 library. It’s working for me with WooCommerce.
Forum: Plugins
In reply to: [CloudSearch] Add Facet SupportThat looks great. Very helpful!
Forum: Plugins
In reply to: [CloudSearch] Add Facet Support@lando1982 Thanks for the update! I’ve since reverted all of my Facet changes. It was getting deep in the code. One thing I did alter was the ability for the admin-ajax api calls to return full counts for the search.
For example: Show 1-25 of 1,000,000. The AWSCloudSearch API returns that information naturally.
Upon digging into the code I suggest decoupling the API calls and your front end search jQuery magic. That way people who want custom front end stuff can still get access to raw/core AWSCloudSearch result data. Your front-end stuff could still work but it would be using a wider more adaptable search result object.
For example
cloud-search-api.php
functionacs_format_response
could use a action or filter to return all results from the AWSCloudSearch API, not just the items.One last thing I would also suggest is an opt-in option for private fields. I noticed you were ignoring fields which started with
_
. Normally a great idea BUT WooCommerce set’s all their prices to_price
. I altered that statement to include_
options so I could run advanced queries for a WooCommerce store.Main take away, is all your hard work building the sync is super awesome, just de-couple the front end stuff so more advanced developers can hook and filter their way to happiness.
Thanks again for all the hard work!
Forum: Plugins
In reply to: [CloudSearch] Add Facet SupportOk, dug into the codebase some more. Whoa! A lot going on with the $response and how it’s handled. Had to modify a few different functions to return the new facet property the API returns normally. Got it working pretty well.
Sorry for never getting back to you. I resolved this issue in the code.
Here is the github repo for the table importer using your plugin:
https://github.com/acodesmith/advanced-custom-fields-table-importerThanks for the plugin, great work!
Johann,
I need to clarify! I wrote a plugin for importing CSVs into your Table Layout. During the import process, PHP must be inserting the record into the DB as a number. It only happens with a direct DB import, not the GUI.Most current version of Chrome on Mac.
Forum: Plugins
In reply to: [Table Field Add-on for SCF and ACF] Feature RequestsHello Johann,
I wrote a CSV importer for Flexible Content type Table. Happy to open source the code. Has a admin GUI page and simple instructions.