SMFHacks.com
** Home Forum Index Hacks Products Login Register Search
Welcome, Guest. Please login or register.
May 23, 2012, 01:38:31 pm

Login with username, password and session length
Members
Total Members: 10069
Latest: tetsujrock
Stats
Total Posts: 28682
Total Topics: 4975
Online Today: 94
Online Ever: 2482
(April 09, 2011, 07:02:45 pm)
Users Online
Users: 0
Guests: 80
Total: 80
+ 
|-+ 
| |-+ 
| | |-+ 
| | | |-+ 
| | | | |-+ 
0 Members and 2 Guests are viewing this topic. « previous next »
Pages: [1] Go Down Print
Author Topic: Changes in the template  (Read 7065 times)
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« on: September 16, 2008, 03:54:00 am »

1) Can we have the member's avatar and No. of posts under the member's name on the listing page? Like it is shown for the member that makes a comment.

2) The link "View More Pictures" should be shown only when there are more pictures than the ones shown in the listing page, and not always.

3) It would be better to change the table layout in the listing page: Now the member's name etc. reserve a whole column until the end of the listing, space that could be used for the Description (to make it have the whole table width).
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9676


View Profile
« Reply #1 on: September 16, 2008, 09:51:29 pm »

1. Can do that. Did that recently for Gallery Pro
2. Good idea.
3. A description column? Could be added but some descriptions could be very large.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #2 on: September 17, 2008, 03:26:18 am »

To show you what I mean in 3), look at the attachment.
The members name, "member since:", and "send message" reserve the column (shown in red) until the end of the listing, which is a waste of space. That column should expand only up to the green line where the "Buy now" button ends, so that the Description text can expand to the right and use the whole width of the table.
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9676


View Profile
« Reply #3 on: September 17, 2008, 07:58:18 am »

There is actually more in that space. If you install the SMF Trader System allows you see the user's feedback score and leave feedback.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #4 on: September 19, 2008, 12:41:13 am »

Similar to 2) is this:

There is no need to show "0 bids" (which links to an empty page), when the listing has only "buy now" price and is not an auction.
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9676


View Profile
« Reply #5 on: September 26, 2008, 09:21:26 pm »

1. Done for 1.2.10
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #6 on: October 02, 2008, 03:45:57 am »

Nice, I saw that you put all the profile details for the members that comment listings. But what I was primarly thinking in my suggestion 1), was the avatar & profile details of the seller, when viewing his listing.

Also, another suggestion on things that don't need to be shown, is a zero price in the list of recent listings (index.php?action=classifieds;sa=listall;type=recent), for listings that belong to a category that has no prices. Now, what I see is: $0.00 (which also is not my default currency)
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9676


View Profile
« Reply #7 on: November 15, 2008, 02:25:21 pm »

Quote
is a zero price in the list of recent listings (index.php?action=classifieds;sa=listall;type=recent), for listings that belong to a category that has no prices. Now, what I see is: $0.00
Fixed this issue for 1.2.13
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #8 on: February 06, 2009, 01:08:41 am »

Τhe avatar & profile details of the seller, when viewing his listing, is important!
And it's not difficult to do it, just use the code you used for the commenter.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #9 on: May 04, 2009, 05:27:14 am »

Some simple changes to make smf classifieds a little more practical:

- When clicking the link/button to delete a listing, put a javascript confirm box and not load a new confirmation page (which can be slow and heavy (it loads the forum header))
- When the deletion gets confirmed, return to the previous page, where we were (and not to the first page of the index of the deleted listing's category)
- Number 1) of the first post of this thread.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #10 on: June 12, 2009, 05:47:22 am »

Continuing my requests, I'm asking for a link "More listings from this member" or "Show all of this member's listings" under the member's name in every listing of this member, and also in his profile page in SMF.
This link should be shown in a listing page only if the member has more listings, and in the profile page only if the member has at least 1 listing.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #11 on: July 24, 2009, 01:54:52 am »

The "Show all of this member's listings" link can be a simple sql search like
Code:
SELECT ID_LISTING, title FROM class_listing WHERE ID_MEMBER = xxxxx
added after this code:
Code:
// Basic Seller information
echo $txt['class_form_nembername']  . ' <a href="',$scripturl,'?action=profile;u=',$context['class_listing']['ID_MEMBER'],'">', $context['class_listing']['realName'] . '</a><br />';
echo $txt['class_form_nembersince'] .' ' . timeformat($context['class_listing']['dateRegistered']) . '<br /><br />';
echo '<a href="',$scripturl,'?action=pm;sa=send;u=',$context['class_listing']['ID_MEMBER'],'">',$txt['class_form_sendmessage'] . '</a><br />';

If I had the time maybe I could make a hack for this in my own way, but I really think that this function should be there for all the people that are using SMF Classifieds, so SMFHacks should code it.
(Maybe it would be a good idea to have the list of the member's listings shown after every member's listing, and not in a link.)

Also, with this function, we can see if someone puts the same listing more than once (some users use this "tecnique" to have their listing appearing in the "new listings" more times)
Logged
SMFHacks
Administrator
Hero Member
*****
Offline Offline

Posts: 9676


View Profile
« Reply #12 on: February 15, 2010, 10:48:37 pm »

Continuing my requests, I'm asking for a link "More listings from this member" or "Show all of this member's listings" under the member's name in every listing of this member, and also in his profile page in SMF.
This link should be shown in a listing page only if the member has more listings, and in the profile page only if the member has at least 1 listing.
Added show member's listings link
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #13 on: April 26, 2010, 12:50:30 pm »

Quote
+Added integration on the main board index with the classifieds system

The classifieds' categories are showing OK on my board index, but they cannot be collapsed like the forum's categories. Can you add a collapse button? (I'm using SMF 2.0 RC3)

Also, let me remind you the request No.1 in the first post of this thread.
Logged
vkot
SMF Classifieds Customer
Full Member
*****
Offline Offline

Posts: 123


View Profile
« Reply #14 on: October 26, 2011, 06:32:10 am »

What about my request No.1 of the first post of this thread?
It's not critical, but it is helpful so that the viewer can realize instantly who put up the ad. You know, viewers easily associate avatars with persons (especially if the avatar is unique and the person is a frequent user)
Logged
Pages: [1] Go Up Print 
« previous next »
Jump to:  

Recent
[May 21, 2012, 08:54:11 am]

[May 20, 2012, 11:06:52 am]

[May 20, 2012, 05:58:11 am]

[May 19, 2012, 06:16:58 pm]

[May 19, 2012, 05:42:37 pm]

[May 18, 2012, 03:08:38 pm]

[May 17, 2012, 06:07:46 pm]

[May 17, 2012, 02:22:07 pm]

[May 17, 2012, 12:38:16 pm]

[May 15, 2012, 09:32:27 pm]
Random Picture
Donate to SMFHacks.com
Help Support the SMFHacks.com mod making.
Powered by SMF 1.1.16 | SMF © 2006-2011, Simple Machines LLC
TinyPortal v0.9.7 © Bloc
SMF and SimpleMachines are registered trademarks of Simple Machines. SMFHacks.com is not affiliated with nor endorsed by Simple Machines.
Page created in 4.767 seconds with 19 queries.