Support Forums

Old 04-23-2008, 05:07 PM   #1
Senior Member
 
 
Join Date: Mar 2006
Location: Calif/San Franisico Bay Area
Posts: 110
Rep Power: 16
newone is on a distinguished road
Question Table question?

I am not quite sure how to explain this but here goes, I would like to remove the (Photo l Title l Price l Date added l etc l etc l ) in the table heading from displayig? But not to remove the function? And in it's place maybe the fade.gif.
newone is offline   Reply With Quote
Old 04-23-2008, 05:28 PM   #2
Coder
 
Join Date: Mar 2006
Posts: 4,555
Rep Power: 111
Lhotch is just really niceLhotch is just really nice
Default

What template are you using and what version of 68C?
__________________
Larry.
Lhotch is offline   Reply With Quote
Old 04-23-2008, 06:04 PM   #3
Senior Member
 
 
Join Date: Mar 2006
Location: Calif/San Franisico Bay Area
Posts: 110
Rep Power: 16
newone is on a distinguished road
Default

version 3.1.10 DEV
template default
newone is offline   Reply With Quote
Old 04-23-2008, 06:26 PM   #4
Coder
 
Join Date: Mar 2006
Posts: 4,555
Rep Power: 111
Lhotch is just really niceLhotch is just really nice
Default

Ok, now, which table heading are you referring to exactly? Are you using showlistings or the showlistings2 template?

I assume your talking about the table heading where you can click the heading word and it will reorganize the table display?
__________________
Larry.
Lhotch is offline   Reply With Quote
Old 04-23-2008, 06:34 PM   #5
Senior Member
 
 
Join Date: Mar 2006
Location: Calif/San Franisico Bay Area
Posts: 110
Rep Power: 16
newone is on a distinguished road
Default

showlistings template
newone is offline   Reply With Quote
Old 04-23-2008, 06:39 PM   #6
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,614
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

Are you just wanting the headings themselves removed, but not in the individual listings? Or both? If you don't want that information displayed, much of it can be turned off in the user groups. You determine what information each individual user group can or can not see.

Also, you must be using the showlisting.tpl.php file, because the showlisting2.tpl.php doesn't have headings.

-Mike

-- oops! you must have posted while I was making my reply. --
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out

Last edited by Mike-N-Tosh; 04-23-2008 at 06:44 PM.
Mike-N-Tosh is offline   Reply With Quote
Old 04-23-2008, 07:50 PM   #7
Senior Member
 
 
Join Date: Mar 2006
Location: Calif/San Franisico Bay Area
Posts: 110
Rep Power: 16
newone is on a distinguished road
Default

I still want to display (Photo l Title l Price l Date added l etc l etc l ) in the listing if call in the user groups. I just want them removed from the heading. And can I display this there {$entry}

newone is offline   Reply With Quote
Old 04-23-2008, 09:16 PM   #8
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,614
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

Make a backup of the showlisting.tpl.php file (for if you ever want to go back to the original or you mess up some how).

Look for this around line 52
PHP Code:
         {if $sDisPhoto == "Y"}
         <
th>{$smarty.const.LANG_PHOTO}</th>
          {/if}
          {if 
$sDisTitle == "Y"}
          <
th>{$smarty.const.LANG_TITLE}</th>
          {/if}
          {if 
$sDisPrice == "Y"}
          <
th>{$smarty.const.LANG_PRICE}</th>
          {/if}
        {if 
$sDisDateAdded == "Y"}
          <
th>{$smarty.const.LANG_DATE_ADDED}</th>
          {/if}
          {if 
$sDisExpiration == "Y"}
          <
th>{$smarty.const.LANG_EXPIRATION}</th>
          {/if}
          {if 
$sDisCity == "Y"}
          <
th>{$smarty.const.LANG_CITY}</th>
          {/if}
          {if 
$sDisState == "Y"}
          <
th>{$smarty.const.LANG_STATE}</th>
          {/if}
          {if 
$sDisCountry == "Y"}
          <
th>{$smarty.const.LANG_COUNTRY}</th>
          {/if}
          <
th>{$smarty.const.LANG_VIEW_LISTING}</th
Then just either delete each of the $smarty calls, comment them out or whatever you want to do with that table header.

-Mike
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote
Old 04-23-2008, 09:34 PM   #9
Senior Member
 
 
Join Date: Mar 2006
Location: Calif/San Franisico Bay Area
Posts: 110
Rep Power: 16
newone is on a distinguished road
Default

That removed them, but now there is no blue row .is there a way to keep the row open and blue?
__________________
v3.1.10 Developer
newone is offline   Reply With Quote
Old 04-23-2008, 11:01 PM   #10
68 Evangelist & Developer
 
 
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,614
Rep Power: 47
Mike-N-Tosh is just really niceMike-N-Tosh is just really nice
Default

Quote:
That removed them, but now there is no blue row .is there a way to keep the row open and blue?
You really need to give more information in your posts. I gave you three options on what you could do. The third was completely open to do whatever you wanted to do with the table header. You did not say what exactly you did.

Please help us to help you by giving complete information. Without knowing what you did, I can't advise you on what route to take. I don't want to add to the issue by giving you incorrect information assuming what you did.

Thanks,
-Mike
__________________
Mike-N-Tosh
IndianaPC.org - A community website (v3.1.10 Developer - heavily modified)
Sandbox (v3.1.10, v4.0.9, 4.1.3)
Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs
Web Hosting | Web Design & Development | 68 Classifieds Customizations
I am not a 68C employee, just a user and try to help out
Mike-N-Tosh is offline   Reply With Quote

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Developer vs. Designer Question...ready to buy! alisa Pre Sales Questions 3 04-03-2007 02:11 PM
RSS Feeds - display question? dawyatt v3.1 Modules & Modifications 1 09-17-2006 08:46 AM
Rounded table corners spaceboy v3.0 Questions & Support 1 08-28-2006 02:42 PM
3.0.xx upgrading to 3.1... is this normal? Mikael v3.1 Questions & Support 4 05-23-2006 04:36 PM
Removing short description table gabs v3.0 Questions & Support 1 04-24-2006 01:14 PM


All times are GMT -4. The time now is 09:19 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0