We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i Hide Default Store Code then is the url www.domain.tld/index.php/api/xmlrpc not available.
The text was updated successfully, but these errors were encountered:
Can you try the following changes in app/code/community/Bubble/HideDefaultStoreCode/Model/Observer.php
public function onFrontInitBefore(Varien_Event_Observer $observer) { if ($this->_canRewriteUri()) { /** @var $front Mage_Core_Controller_Varien_Front */ $front = $observer->getEvent()->getFront(); $request = $front->getRequest(); $requestUri = $request->getRequestUri();
//This code is checking if it is API request if (strpos( $requestUri, '/api/') !== false) { return; } // end of the change
Sorry, something went wrong.
No branches or pull requests
when i Hide Default Store Code then is the url www.domain.tld/index.php/api/xmlrpc not available.
The text was updated successfully, but these errors were encountered: