Hello, thanks for your interest in Pageworks.
Sorry to hear you're having trouble.
To make a page appear in Pageworks, you actually don't use the main menu at all. Normally, you would remove Pageworks from the main menu, by setting its weight or order to zero, on the System Admin->Modules area of the admin side of XOOPS.
Pageworks pages all have a specific URL such as:
http://www.yoursite.com/modules/pageworks/index.php?page=1That's the URL for page number 1. Change the number for other pages. You would use these URLs in a custom menu module like iMenu, or Multimenu. Or you can put them anywhere in your site that has an href obviously.
For a page to show up, users must have permission to access the page. There is a permissions area in the admin side of Pageworks and you have to check off the pages you want each group to see.
When editing or creating a particular pageworks page, the "template" part of a pageworks page is the actual part that contains the contents that show up on the screen. The template is interpreted as PHP code. You can think of pageworks pages as the same as PHP blocks. But they appear in the body portion of the page instead of a block position.
You can also embed pageworks pages in blocks in XOOPS if you want to, by making a PHP block and then using this code as the code for the block:
$page = 1;
include XOOPS_ROOT_PATH . "/modules/pageworks/index.php";
The block will now display page 1 as its contents.
Pageworks is specifically designed to integrate with Formulize so that you can easily use the functions outlined in the "
Using Formulize and Pageworks" PDF (click the link for the document).
Pageworks can also integrate with frameworks of forms that you have made in Formulize (frameworks are sets of multiple forms that have some defined relationship). But that functionality is not heavily used, it's generally simpler to skip using that integration and instead use the getData function directly in the code for your page (that's mostly all the integration does is run a getData function for you).
I hope this helps, good luck,
--Julian