-
Content Count
405 -
Joined
-
Last visited
About IPCommerceFan

-
Rank
Member
Recent Profile Visitors
7,807 profile views
-
IPCommerceFan reacted to an entry: Health Dashboard
-
IPCommerceFan reacted to an entry: Highlight Topics With Replies From Groups
-
IPCommerceFan reacted to an entry: Solved Content Improvements
-
IPCommerceFan reacted to a post in a topic: Need more granularity for notification settings
-
Maxxius reacted to a comment: 4.5: Zapier Brings Integration with Over 2,000 Web Apps
-
IPCommerceFan started following (SD) E-CommercePlus
-
IPCommerceFan started following Adrian A.
-
I would use a "pay what you want" feature for support requests. We often have customers so appreciative of our service that they ask us how they can send us a little extra something just for the after-sales support we deliver. Support Request departments have a "Submission Charge" option, so we would have the value be "pay what you want", in that use case.
- 27 replies
-
- Internal Review
- Commerce
-
(and 1 more)
Tagged with:
-
I want to use commerce for apparel, but feel stuck
IPCommerceFan replied to breatheheavy's topic in Feedback and Ideas
Just want to say a Printful integration would be amazing. Not saying it needs to be core functionality, however if an application/plugin were available in the market for such integration, it would be a godsend. -
We use Callum's application as well. It does the trick for us.
-
Love it!!
-
nexus Commerce > Custom Fields > Custom Input Validation?
IPCommerceFan replied to IPCommerceFan's topic in Feedback and Ideas
I needed this to be more robust, so I started poking around and discovered I could hook into \IPS\Helpers\Form\Text --> validate() and use custom php to do any kind of validation I want on a given custom commerce field! (custom Text field anyway, I haven't explored other types) In case anyone is need of this and finds this thread during their search, this is where you can run custom validation: //<?php /* To prevent PHP errors (extending class does not exist) revealing path */ if ( !\defined( '\IPS\SUITE_UNIQUE_KEY' ) ) { exit; } class hook491 extends _HOOK_CLASS_ { /** * -
GTAPoliceMods started following IPCommerceFan
-
4.5: Zapier Brings Integration with Over 2,000 Web Apps
IPCommerceFan commented on Mark's entry in Product Updates
I'm interested in the concept of Invision integrating with Zapier in terms of events, triggers, and actions! We use and rely on the 3rd party "Rules" app, and the uncertainty as to whether it'll work with each new version of Invision Community has had me a little on edge. lol It'd be wonderful if these same "ETA"'s could be used internally, as in Invision --> Invision. e.g. If member registers --> create a post in the forum e.g. If customer makes a purchase --> Queue up a follow-up email for 30 days from the purchase date. Regardless of any of that, this is great! -
Love it!
-
If we really want to modernize things, we should have a "Night Mode" switch in the corner. (I think there's a theme in the marketplace like this, actually) Looks good! Appreciate the attention to detail with things like this. 👍
-
Any and all Commerce improvements are welcome, IPS. :) Just to show a little appreciation though, we've come a LONG way since the early days of Nexus.
-
IPCommerceFan changed their profile photo
-
COMMERCE: Suggest only displaying 15 Purchases
IPCommerceFan replied to IPCommerceFan's topic in Feedback and Ideas
I ended up writing a plugin to solve this. Hooked into: \IPS\nexus\extensions\core\MemberACPProfileBlocks\Purchases //<?php /* To prevent PHP errors (extending class does not exist) revealing path */ if ( !\defined( '\IPS\SUITE_UNIQUE_KEY' ) ) { exit; } class hook406 extends _HOOK_CLASS_ { /** * Get output * * @return string */ public function tabOutput( $activeTabKey ) { if ( $this->_purchases === NULL ) { $where = array(); $where[] = array( 'ps_member=?', $this->member->member_id ); switch ( $activeTabKey ) { case 'active': -
nexus Commerce > Custom Fields > Custom Input Validation?
IPCommerceFan replied to IPCommerceFan's topic in Feedback and Ideas
I really DO appreciate it. 👍 -
nexus Commerce > Custom Fields > Custom Input Validation?
IPCommerceFan replied to IPCommerceFan's topic in Feedback and Ideas
With InvisionCommunity 4.x.x maturing and talks of 5.x.x starting to come up, I'm starting to wonder whether Commerce will survive considering a "simple" feature like this hasn't been given any attention since 2015. It would go a long way for me, and my business, if topics like this could at least be given some token acknowledgement. I understand having limited engineering resources since I deal with this every day as well. Having to triage what gets attention and what doesn't, inadvertently sending the wrong message, etc. It would just be nice to get a "Thanks for the suggestion", -
This would be a great way to keep products updated as well, for instance when suppliers change their MAP pricing. Just update spreadsheet, import, and any existing listings could be updated. Granted this is possible via API in some cases, but some suppliers still send pricing updates via spreadsheet.
-
Hi, We have some customers who have hundreds of purchases on their account, and it can take a really long time just to load their customer page due to, in our case, loading over 700 purchases into view. It'd be great if we could limit the number that are loaded to 15 just like invoices and support requests, and just have an option to "display all Purchases".
-
nexus Commerce > Custom Fields > Custom Input Validation?
IPCommerceFan replied to IPCommerceFan's topic in Feedback and Ideas
I got this working by modifying \IPS\nexus\Package\CustomField (the actual php file that relates to that class)! All I had to do was: - borrow the $form->add statements for pf_max_input and pf_input_format from \IPS\CustomField\CustomField - comment out the "unset" statements for those fields - Add the fields to the nexus_package_fields table in the database It works like a charm! Now to figure out how to do what I did in the form of a plugin or application since I don't really feel comfortable with the fact I edited the source files directly... Still hoping IPS w