Active
Project:
Content Glider
Version:
7.x-1.1
Component:
Documentation
Priority:
Normal
Category:
Support request
Assigned:
Reporter:
Created:
19 Jul 2011 at 09:50 UTC
Updated:
10 Nov 2011 at 12:44 UTC
Is there an easy way to hide the title Link (and titel text) to the node?
Nice Module
Comments
Comment #1
filoquin commentedYou can add a function in your theme/template.php.
In $values['node'] you have the node info.
By default the module use this function drupal_render($values['node'],'content-glider');
Comment #2
jhorvat commentedI'm new to Drupal.
Can you explain: $return .= $values['node'][field_you_want]?
I created Content type: rotate
Image type in rotate has machine name: field_image2
I wrote this in the and of template.php of my theme: pixture_reloaded. Also note I'm using Drupal 7.
What do i do wrong? Thanks.
Comment #3
tashaharrison commentedYou can use design suite to delete the title. Simply create a full product view mode and select your layout. When you save a drop down should appear which allows you to hide title. Also create a view mode for content glider.
Comment #4
webproject_ru commentednode.tpl.php
Take out the following:
echo art_node_title_output($title, $node_url, $page);In my case it was 6th line.
This will take out title for all of the nodes, but you can still add title in the node itself if you really need to by using tag :)
Comment #5
webproject_ru commentedComment #6
webproject_ru commentedIts meant to say :
but you can still add title in the node itself if you really need to by using heading (hX) tag :)