Documentation For Content Setting

Dear Sir/Madam,

When I edit the layout, I click the gear of a block, I find

  • About Us
  • Gift
  • What is this? Is there any other code I can apply? Where can I find the reference document for the code such as pages.view, gift_certificates.add, fn_url ?
    Best regards,
    Kelvin.

    I want to add a hyperlink to allow visitor to download a file if I put the file under the Public or Private folder using the Administration > Files, how do I set the link?

    Dear Sir/Madam,

    When I edit the layout, I click the gear of a block, I find

    What is this? Is there any other code I can apply? Where can I find the reference document for the code such as pages.view, gift_certificates.add, fn_url ?

    If you disable the SEO module, you will see that all urls has similar structure. E.g.

    CONTROLLER.MODE

    or

    CONTROLLER.MODE&OBJECT_ID=123

    I want to add a hyperlink to allow visitor to download a file if I put the file under the Public or Private folder using the Administration > Files, how do I set the link?

    In this case just add absolute path to the menu item instead of relative one

    When I edit the layout, I click the gear of a block, I find

  • About Us

  • Gift


  • What is this? Is there any other code I can apply? Where can I find the reference document for the code such as pages.view, gift_certificates.add, fn_url ?


    Just to provide an additional example: gift_certificates.add is a dispatch that refers to the page where customers can create gift certificates.

    You can reach that page by entering the following line in the address bar of your browser:

    http://demo.cs-cart.com/index.php?dispatch=gift_certificates.add

    The SEO add-on can make this URL more readable for humans, turning it into this:

    http://demo.cs-cart.com/gift-certificates/

    Here's the page with SEO rules in the demo store: http://demo.cs-cart.com/admin.php?dispatch=seo_rules.manage&sl=en

    Unfortunately, we don't have a document that lists all the dispatches. I made a local installation of CS-Cart for testing purposes and disabled the SEO add-on to see the dispatches. I wouldn't do it on a live store.

    P.S.: We've recently published a document about the gift certificate creation page: http://docs.cs-cart.com/4.3.x/user_guide/addons/gift_certificates/purchase_gc.html