I was wondering if it is possible to remove the submitted by for posts? I will be the only one posting so it isnt really necessary

Comments

killes@www.drop.org’s picture

Modify your theme.

smooth-effects’s picture

How would i modify the theme and where? I found a spot in the xtemplate.theme but i am not sure how to modify it correctly...i got it to remove the submitted by but in doing that it also removes the title/link for the event

killes@www.drop.org’s picture

xtemplate is a little bit difficult to start with.

Change in xtemplate.xtpl

<!-- BEGIN: node -->
  <div class="node {static}">
    <!-- BEGIN: avatar -->
    <div class="avatar">{avatar}</div>
    <!-- END: avatar -->
    <!-- BEGIN: title -->
    <h2 class="title"><a href="/{link}">{title}</a></h2>
    <!-- END: title -->
    <span class="submitted">{submitted}</span>
    <!-- BEGIN: taxonomy -->
    <span class="taxonomy">{taxonomy}</span>
    <!-- END: taxonomy -->
    <div class="content">{content}</div>
    <!-- BEGIN: links -->
    <div class="links">&raquo; {links}</div>
    <!-- END: links -->
  </div>
<!-- END: node -->

to:



<!-- BEGIN: node -->
  <div class="node {static}">
    <!-- BEGIN: avatar -->
    <div class="avatar">{avatar}</div>
    <!-- END: avatar -->
    <!-- BEGIN: title -->
    <h2 class="title"><a href="/{link}">{title}</a></h2>
    <!-- END: title -->
    <!-- BEGIN: taxonomy -->
    <span class="taxonomy">{taxonomy}</span>
    <!-- END: taxonomy -->
    <div class="content">{content}</div>
    <!-- BEGIN: links -->
    <div class="links">&raquo; {links}</div>
    <!-- END: links -->
  </div>
<!-- END: node -->
smooth-effects’s picture

two final questions...i am assuming in the same file is where i would remove where it says Home » Events » Upcoming...if so where? #2 in regards to my other question about the calendar do you know of any ideas on how to change that? Or who is a developer for the events module?

killes@www.drop.org’s picture

1) theses are the breadcrumbs. Many people put great effort into creating them for Drupal. If you insist in removing them, search for breadcrumb and remove that line.
2) As I explained in my mail, this feature is available in event.module for Drupal 4.4. I am the maintainer of event.module. No, I will not backport that feature.

smooth-effects’s picture

can you explain the reasoning to me of why the cells should get all distorted? wouldnt it be cleaner looking for it to be the other way?

killes@www.drop.org’s picture

If you don't like it the way it is, send a patch that changes the current behaviour.