PDA


View Full Version : Edit Module: Custom Page Content - working?


antivirus
08-07-2005, 01:18 PM
CMPS is great so far, nice work! I do have a question though...

I'm trying to add content to the custom page module, however when i go to AdminCP>vBa CMPS>EditModule:CustomPageContent i see the attached (see "untitled-1.gif") which looks different than all the other Edit Module pages... is this how this "edit module page" is supposed to act?

Whenever i edit any of the other modules, the EditModule form looks like it should (see "untitled-2.gif") which is why i am assuming there's a problem with my Edit Module: Custom Page Content Module code...

I'm using vb version 3.0.8
How could i fix this?

:confused:

Brian
08-07-2005, 02:21 PM
If you'll look in your admincp/vba_cmps_admin.php file for this code:
print_description_row($vbphrase['custom_page_content_description']);
print_table_footer();


And replace it with this:
print_description_row($vbphrase['custom_page_content_description']);
print_table_break();


Then that should take care of the problem.

antivirus
08-08-2005, 06:33 PM
Hi Brian,
Thanks for quick response, it did fix the page, however there don't seem to be any options for the Custom Page Content mopdule, as there does for all other modules. Am I still missing something?

Brian
08-08-2005, 07:35 PM
There are no options for that module. It's simply used when you create new pages to display the content for that page. For example, when you create a new template page, the content of that template will be displayed in place of the Custom Page Content module.

antivirus
08-09-2005, 11:51 AM
oh- i see. Thanks