Support Forums

Old 07-07-2006, 10:31 PM   #1
Member
 
Join Date: Jun 2006
Posts: 71
Rep Power: 13
wel-usa is on a distinguished road
Default couple more questions

is there a way to change the ad highlight color? the color it is now is very hard to see.

can the price field be removed from certain categories? we have a non-profit section we want to remove the price field from.

and we found a bug (misspelling) when you delete an ad the there is a popup window that says=

"are you sure you want to delete this?nIT cannot be undonen"

where can this be fixed?

and when a new user registers, without an email authorization, how can they be automatically transfered to the place with the 4 icons on top? (sorry i dont know what its called)

Last edited by wel-usa; 07-07-2006 at 10:34 PM.
wel-usa is offline   Reply With Quote
Old 07-08-2006, 06:42 AM   #2
Moderator
 
 
Join Date: Mar 2006
Location: NJ/NYC Area
Posts: 2,174
Rep Power: 59
juven14 is a jewel in the rough
Default

Quote:
Originally Posted by wel-usa
is there a way to change the ad highlight color? the color it is now is very hard to see.
templates/default/style.css:
HTML Code:
/* Featured Listings
 * td.featured handles the display of featured listings
 *
*/
td.featured{
    background-color:#F1F1F1;
}
/* Highlighted Listings
 * td.highlighted handles the display of highlighted listings
 *
*/
td.highlighted{
    /*background-color:#CAE6CE;*/
    background-color:#FFF7D2;
Quote:
Originally Posted by wel-usa
can the price field be removed from certain categories? we have a non-profit section we want to remove the price field from.
http://www.68classifieds.com/forums/...06&postcount=4

Quote:
Originally Posted by wel-usa
and we found a bug (misspelling) when you delete an ad the there is a popup window that says= "are you sure you want to delete this?nIT cannot be undonen"

where can this be fixed?
This occurs because the new line character (\n) doesn't appear to work. You'll have to remove them from templates/default/user/userbrowselistings.tpl.php:
{/literal}{$smarty.const.LANG_JS_DELETE_CONFIRM}\n{$ smarty.const.LANG_JS_DELETE_CANNOT}{literal}\n

The actual values are correct - they can be found in english.php


Quote:
Originally Posted by wel-usa
and when a new user registers, without an email authorization, how can they be automatically transfered to the place with the 4 icons on top? (sorry i dont know what its called)
As long as you don't require email registration you'll need to edit userjoin.php as described here:

http://www.68classifieds.com/forums/...rect+userindex

Also - just call that page userindex.tpl.php (as that is its template) or just userindex is good for me.
__________________
TemplateCodes.com
juven14 is offline   Reply With Quote
Old 07-08-2006, 06:46 AM   #3
Moderator
 
 
Join Date: Mar 2006
Location: NJ/NYC Area
Posts: 2,174
Rep Power: 59
juven14 is a jewel in the rough
Default

Sorry it took so long, I didn't have time to answer all your questions yesterday so I left it for later.

You might find that breaking up your questions into different posts will get faster answers. Some might know only 1 answer and can provide a solution right away. It also helps other users when they have the same question, they can search for something specific and not have to wade through abunch of other stuff.
__________________
TemplateCodes.com
juven14 is offline   Reply With Quote
Old 07-08-2006, 11:39 AM   #4
Member
 
Join Date: Jun 2006
Posts: 71
Rep Power: 13
wel-usa is on a distinguished road
Default

ok, no problem, i just group them together so i dont forget to post them, when i click on the thread link it say i dont have priveledges to view?
wel-usa is offline   Reply With Quote
Old 07-08-2006, 12:28 PM   #5
Moderator
 
 
Join Date: Mar 2006
Location: NJ/NYC Area
Posts: 2,174
Rep Power: 59
juven14 is a jewel in the rough
Default

Try this one:

http://www.68classifieds.com/forums/...ead.php?t=1017

Or this one:

http://www.68classifieds.com/forums/...read.php?p=806

not sure which didn't work.
__________________
TemplateCodes.com

Last edited by juven14; 07-08-2006 at 12:30 PM.
juven14 is offline   Reply With Quote
Old 07-08-2006, 12:43 PM   #6
Member
 
Join Date: Jun 2006
Posts: 71
Rep Power: 13
wel-usa is on a distinguished road
Default

I was lookin through this thread on the auto return to userindex.php User Confirmations and i have looked through the userjoin multiple times, and i cant find the lines they describe? i have 3.1.4 and i use dreamweaver.
wel-usa is offline   Reply With Quote
Old 07-08-2006, 01:20 PM   #7
Moderator
 
 
Join Date: Mar 2006
Location: NJ/NYC Area
Posts: 2,174
Rep Power: 59
juven14 is a jewel in the rough
Default

Open userjoin.php (In dreamweaver you can use ctrl+G to get close to the lines - just input 138)

find (around line 138):
PHP Code:
else
{
      
$Login = new Login$db );
      
$Login->_checkLogin($username$passwordY); 
      
$location="userindex.php";
      
header("Location: $location");    
}
break;
case 
2
replace with:

PHP Code:
else
{
     
$Login = new Login$db );
     
$Login->_checkLogin(trim(@$_POST['username']),trim(@$_POST['password']), Y);
                        
     
$location="userindex.php";
     
header("Location: $location");
     exit;
}
break;
case 
2
__________________
TemplateCodes.com

Last edited by juven14; 07-08-2006 at 01:22 PM.
juven14 is offline   Reply With Quote
Old 07-08-2006, 02:47 PM   #8
Member
 
Join Date: Jun 2006
Posts: 71
Rep Power: 13
wel-usa is on a distinguished road
Default

I found it, i was looking in the wrong userjoin.

I want to thank you again for all the help, you all are amazing.

Last edited by wel-usa; 07-08-2006 at 02:54 PM.
wel-usa is offline   Reply With Quote
Old 07-08-2006, 08:09 PM   #9
Senior Member
 
 
Join Date: Mar 2006
Posts: 110
Rep Power: 15
sleepy will become famous soon enough
Default


"I want to thank you again for all the help, you all are amazing."


Ill second that .... John and the other moderators do a great job helping out on here

sleepy
sleepy is offline   Reply With Quote
Old 07-09-2006, 12:16 AM   #10
Member
 
Join Date: Jun 2006
Posts: 71
Rep Power: 13
wel-usa is on a distinguished road
Default

ok, i'm looking in the showlistings.tol.php for the price field modification, i have found whee to change it, but how do i know which categories i'm changing?
wel-usa 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
Questions angler Pre Sales Questions 12 03-22-2007 12:52 PM
A couple of questions Unregistered Pre Sales Questions 7 10-11-2006 09:08 PM
Couple questions before purchase... doc1975 Pre Sales Questions 0 09-15-2006 11:56 AM
Some Questions wel-usa v3.1 Questions & Support 15 06-25-2006 01:42 AM


All times are GMT -4. The time now is 05:47 AM.


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