skip to Main Content

I trying to install the one step checkout in my magento store, i have the license, but i dont have more support from them

I got this message
One Step Checkout Pro: Missing layout file or template folder of this module. Please follow the install instruction at here or you can submit a ticket at here

i follow the steps, tried to add the files in different folders and i still having the same message

Any Suggestion please?

Step 1: Go to folder by path: app/design/frontend/default/default (or by path: app/design/frontend/enterprise/default if you are using magento EE), you will see the folders (/layout, /template) then upload these folders directly into your theme by path: app/design/frontend/your _package/your_theme
Step 2: Go to folder by path: skin/frontend/default/default (or by path: skin/frontend/enterprise/default if you are using magento EE), after that upload the folder ‘mw_onestepcheckout’ into your theme by path: skin/frontend/your_package/your_theme

/public_html/app/design/frontend/emphasis/mw_onestepcheckout


/public_html/skin/frontend/emphasis/default/mw_onestepcheckout

`/public_html/skin/frontend/emphasis/emphasis/mw_onestepcheckout

`/public_html/skin/frontend/default/emphasis/mw_onestepcheckout

2

Answers


  1. // First confirm that layout file and template file present in following path.

    1. /public_html/app/design/frontend/emphasis/default/layout/mw_onestepcheckout.xml (your module layout file)
    
    2. /public_html/app/design/frontend/emphasis/default/template/mw_onestepcheckout/       (your module folder path)
    
    3.Clear cache. (Admin panel login : system->cache management)
    
    Login or Signup to reply.
  2. Inside app/design/frontend/{{PACKAGE}}/{{THEME}}/ there are two main folders we need to look at for this, a layout folder and a template folder.

    Taking into account your current package and theme, you need to follow these steps

    Step 1: upload the folder ‘template’ into
    /public_html/app/design/frontend/emphasis/default/template/

    Step 2: upload the folder ‘layout’ into /public_html/app/design/frontend/emphasis/default/layout/

    Step 3: Lastly, upload the mw_onestepcheckout folder into /public_html/skin/frontend/emphasis/default/
    which I think you have already done correctly looking at your question

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search