Page 1 of 1

Can I / How to remove "Webhelp output generated by"

Posted: Tue Jan 04, 2011 8:11 am
by marika
Is there a way to remove the "Webhelp output generated by Oxygen XML Author" text from the bottom of every page of my Web Help output?
If so, could someone point me to the instructions please?

Re: Can I / How to remove "Webhelp output generated by"

Posted: Tue Jan 04, 2011 9:49 am
by Radu
Hi Marika,

Sure, the Oxygen WebHelp transformation is based on the DITA Open Toolkit XHTML transformation.
The XSLT stylesheets for the WebHelp plugin can be found here:

OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT/plugins/webhelp

You just have to open in Oxygen the following XSLT stylesheet:
OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT/plugins/webhelp/xsl/dita2webhelpImpl.xsl

search in it for the <div class="footer"> element and comment it for example.

Regards,
Radu

Re: Can I / How to remove "Webhelp output generated by"

Posted: Wed Jan 05, 2011 1:42 am
by marika
fantastic, thank you very much! that explanation was spot on, i have changed the footer now :D

Re: Can I / How to remove "Webhelp output generated by"

Posted: Thu Aug 25, 2011 6:01 am
by TomV
This is excellent, just the info I needed. But before I get too far along customizing the output from the Oxygen variation of the standard web help, can you clarify any license restrictions on the transform?

I just want to make sure that the final webHelp that I generate will be something that my company can freely distribute without any concerns about Oxygen copywrights.

Looks like a good starting point for what I need!

Thanks!

TomV

Re: Can I / How to remove "Webhelp output generated by"

Posted: Thu Aug 25, 2011 8:55 am
by Radu
Hi Tom,

There are no copyright restrictions that we impose on the final WebHelp output.

But if you would like to automate the process (to generate the content automatically on a server) you would need some special licensing as an Oxygen license key is user-based. So only in this case you should contact us using our technical support email address for more details.

Regards,
Radu

Re: Can I / How to remove "Webhelp output generated by"

Posted: Thu Jul 19, 2012 9:16 pm
by karen.lowe
The directories are different in version 14. Can you update this for version 14?

Thanks,
Karen

Re: Can I / How to remove "Webhelp output generated by"

Posted: Fri Jul 20, 2012 9:27 am
by sorin_ristache
Hello,

The only change related with this discussion is the name of the DITA-OT plugin directory which is now com.oxygenxml.webhelp instead of webhelp, so in version 14 you should apply the modifications in directory OXYGEN_INSTALL_DIR/frameworks/dita/DITA-OT/plugins/com.oxygenxml.webhelp.


Regards,
Sorin

Re: Can I / How to remove "Webhelp output generated by"

Posted: Fri Jul 20, 2012 4:45 pm
by karen.lowe
Thanks - couldn't see it yesterday!
Karen

Re: Can I / How to remove "Webhelp output generated by"

Posted: Mon Sep 25, 2017 5:06 pm
by Yu1iya
Hi,

I am using <oXygen/> XML Editor 18, and I cannot find how to remove this element in the webhelp classic output. The <div class="footer"> element does not seem to exist in dita2webhelpImpl.xsl. Could you provide me with more information about that?

Thanks in advance.

Re: Can I / How to remove "Webhelp output generated by"

Posted: Tue Sep 26, 2017 10:44 am
by Costin
Hi Yu1iya,

You do not need to modify any stylesheet, as there is a predefined parameter that controls this behavior and which you can use in your transformation scenario.

You should duplicate and edit the scenario you are currently using (I guess this is "DITA Map WebHelp Classic") and, in the "Parameters" tab, look for the "webhelp.footer.include". Edit the parameter and set its value to "no", then apply the changes. Going further, use the modified scenario you have just created to publish your WebHelp.
More details about this and other transformation scenario parameters are available in our User-Guide.

Regards,
Costin

Re: Can I / How to remove "Webhelp output generated by"

Posted: Thu Apr 23, 2020 2:18 pm
by syed
Hi,
In v21, if i don't set any value to webhelp.fragment.footer, the default value 'Generate by oXygen Webhelp...' is added to the footer. What to do to not get any footer?

Thanks...
Syed

Re: Can I / How to remove "Webhelp output generated by"

Posted: Mon Apr 27, 2020 11:30 am
by alin
Hello,

There is no available setting that disables the footer of a page.
However, if you want to remove the default content of the footer section, you can set the webehelp.fragment.footer parameter to " " or to "<span/>".
In order to hide the footer entirely you should add a custom CSS rule to your output like the one below:

Code: Select all

.wh_footer {
  display:none;
}
The procedure to achieve this is describe in our User Manual: https://www.oxygenxml.com/doc/versions/ ... h-css.html

Regards,
Alin

Re: Can I / How to remove "Webhelp output generated by"

Posted: Tue Apr 28, 2020 8:19 am
by syed
Thanks Alin.