I have a printer friendly list at http://mysite.com/print/clubs/list. At the bottom of the list is a list of about 400 URLs.

I have disabled "Show Printer-friendly URLs list" on the content type and the Printer friendly, email, and PDF module. Still get the url list. Next, I disabled all of the modules, and uninstalled them. Once I reinstalled them and deselected "Show Printer-friendly URLs list" again, they showed up.

Has anyone seen this, or have any idea where to start? The one thing I haven't done is go into each piece of that content type and disable the feature (400 +). If that is what it's going to take, does anyone know where that can be done directly in the database (table and field)?

Thanks in advance mates.

Comments

bhosmer’s picture

This might be simple, and you probably have already tried it, but have you flushed your cache and run update?

mpruitt’s picture

....but not run update. Let give that a go.

mpruitt’s picture

Still get the links at the bottom of the page.

halstead’s picture

The printer friendly URL list setting is saved in each node. When you change the default settings for print.module in the content type this will apply to all new nodes. To disable the list of URLs on existing nodes you need to edit each node and change the setting for that node.

mpruitt’s picture

Oh well, I guess I better get started.

mpruitt’s picture

http://drupal.org/node/929476

Got an email from the author. He will address this issue when he has time.

supakitk’s picture

Optionally you can run SQL (in D7) to disable printer friendly option to existing 'page' content

UPDATE print_node_conf AS p LEFT JOIN node AS n ON n.nid=p.nid SET p.link = 0, p.url_list = 0 WHERE n.type = 'page';