Willing to pay $50 - $75 US (will pay via paypal?) to a trusted person (meaning you have a history here, I mean, I have to give you access to all of it I think)...

My blog is a political blog like site (Left) I am running a civicspace build (I think, I do not remember) and a phptemplate based theme (Lincons Revenge)...

http://www.speciousreasoning.com/

I have read all I can, and I have made changes to phptemplate.engine and node.tpl.php and page.tpl.php and I give up!

I want to image to be just up before the title. I only have one image in right now, but it is not working...

Please let me know if you want the task...

Comments

GSMKer_Kevin’s picture

I'm a little new around here, but I do have some history.
I'm very honest and trust worthy!

email me if your interested?

Nice site by the way!

The only barriers that exist are the ones we create!

jbrauer’s picture

Certainly willing to give it a look.....

Can you post the first line of your system.module (install_directory/modules/system.module). It will be something like:

// $Id: system.module,v 1.204.2.6 2005-11-29 20:14:29 dries Exp $

This will help determine the version you're currently on.

Have you tried to install the module? Have you gotten errors?

-------------------------
Adding Understanding

--

ioo’s picture

<?php
// $Id: system.module,v 1.204.2.6 2005/11/29 20:14:29 dries Exp $

I get nothing... I view the source and see no sign of it...

jbrauer’s picture

Are you looking at the source on the server (with a text editor) or loading the page and doing a "view source"? The ID line won't show up if it's the latter.

------------------
Adding Understanding

--

nevets’s picture

The first part of the question is are the images being correctly saved. If not (often due to permissions) nothing will work. Otherwise it's a matter of correctly calling the image_display() function.

ioo’s picture

I see nothing.. :(

jbrauer’s picture

Most of the time this indicates a problem somewhere in the PHP... do you have access to the PHP error logs? They would point to the location of the error. Often if it displays nothing (including no html) there is an error parsing the PHP or calling a function and PHP aborts before returning any portion of the page.

-------------------------
Adding Understanding

--

syawillim’s picture

I can give you a hand with this if you are still looking.
I have taxonomy image running at www.corpevolution.com.

www.slickfish.com.au
professional, affordable web site design, production and maintenance for small business

abhayuser’s picture

I am ready to do it.
My email id abh26@rediffmail.com

heytrish’s picture

For specific content types, create a page-newcontenttype.tpl.php and remove the <h1 class="title"><?php print $title ?></h1>. Also, edit the node-newcontenttype.tpl.php and remove the title as well.

Go into "admin/content/types", edit the content type by adding a new field type: image. Give it a Label, Resolution, path to store the images and definitely enable custom alternate text/title text (otherwise it will display the filename on the page).

Next, edit the content template by going to "/admin/content/templates" and edit the content type associated with this node. Adjust the teaser and body:

<?php print $node->field_NAME_YOU_GAVE_THE_IMAGE[0]['view'] ?>
<a href="<?php print $node->links['node_read_more']['href'] ?>"><?php print check_plain($node->title) ?></a> 
/* make the title a link to the page, only use it for the teaser view */
<?php print $node->content['body']['#value'] ?>

Don't forget to style the layout !
The title will display below the image for this content type. You can take this concept and apply it to taxonomy terms too. I hope this helps, if you have any questions just use my contact form.

:D