Jump to content

Featured Replies

Posted

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.

Could contain: Electronics, Mobile Phone, Phone, Text, Page

Could contain: Page, Text, File, Electronics, Mobile Phone, Phone

 

Solved by Nathan Explosion

Go to solution
  • 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

  • Author

You mean this? Ylläpitäjä = Admin.

Could contain: Electronics, Hardware, Indoors

  • 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

  • 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:

Could contain: Page, Text

 

Can be located via the ACP search - search for 'Support' and you'll get the Commerce entries.

  • 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 by teraßyte

 

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.

  • 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.

 

Recently Browsing 0

  • No registered users viewing this page.