Is there a way to exclude titles in bulk? I want to exclude title of several nodes all at once.

Thanks!

Comments

japhfortin created an issue. See original summary.

fizk’s picture

Category: Support request » Feature request

Not that I know of. Integration with Views Bulk Operations would be a great feature.

japhfortin’s picture

I'm wondering if I can do this by manually inputting the ids of the nodes just what you've said in the description?

"you can use the admin page to manually enter a list of node id's to exclude title"

I didn't find this admin page. Can you give me link for this?

Thanks! I appreciate it!

fizk’s picture

I don't think that feature has existed for the Drupal 7 release. It might have for Drupal 6 or earlier. I've updated the project page to remove that line.

japhfortin’s picture

Thanks. One last question. Do you think we can view the list of ids of nodes (excluded node titles) in the database? Do you think we can edit it from there?

fizk’s picture

If you run the following query on the variable table, you'll find the list of nodes:

select value from variable where name='exclude_node_title_nid_list';
+-----------------------------------------------+
| value                                         |
+-----------------------------------------------+
| a:3:{i:0;s:2:"49";i:1;s:2:"50";i:2;s:2:"51";} |
+-----------------------------------------------+

This shows that the node IDs 49, 50, and 51 have their titles excluded.

It would be better if there was Views integration so you could create a view listing all the enabled nodes instead of manually looking in the database.

Neslee Canil Pinto’s picture

Status: Active » Closed (outdated)