Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted January 15, 20241 yr I uploaded yesterday Commerce module/folder (/public/applications/nexus/*) but I can't find Support features. Did I miss something? Also Stripe webhook is not working if it has anything to do with this.
January 15, 20241 yr Community Expert My suspicion would be that you do not have the admin permissions to see it there. What user are you logged in as
January 15, 20241 yr Community Expert No. I mean in Members->Staff->Administrators. If you do not have full permission in there, this is likely to be your issue
January 15, 20241 yr Solution No. I mean in Members->Staff->Administrators. If you do not have full permission in there, this is likely to be your issue Might have something to do with the lack of ACP menu entries for it - I've always assumed that you guys had hidden it in the ACP because it was due for deprecation in v5: Can be located via the ACP search - search for 'Support' and you'll get the Commerce entries.
January 15, 20241 yr Author Oh, deprecation, sorry I didn't know that. https://invisioncommunity.com/deprecation-tracker/commerce-ticket-system-r6/ I found it but no reason to start using 🙂 Thanks!
January 15, 20241 yr Community Expert The Nexus support module is installed hidden by default, and there's a code check to add it to the ACP menu on the fly only if it's set as visible. Basically, fresh installations won't even show it since it's been deprecated. I don't remember in which version the change was made, though. Here's the code I'm talking about in \nexus\Application.php: public function acpMenu() { $menu = parent::acpMenu(); if( $m = \IPS\Application\Module::get( 'nexus', 'support', 'admin' ) AND $m->visible ) { $menu['support'] = array( ... ); } return $menu; } Edited January 15, 20241 yr by teraßyte
January 16, 20241 yr Also Stripe webhook is not working if it has anything to do with this. If you mean Stripe isn't appearing as a payment method at checkout, remember to set it as an available method on each package in the store you wish to use it for.
January 16, 20241 yr Author If you mean Stripe isn't appearing as a payment method at checkout, remember to set it as an available method on each package in the store you wish to use it for. Stipe works now in production environment. Probably server host blocks in the test environment, incident opened. Cloudflare pause didn't help.