Support Forums

Module - Seller Store

This is a discussion on Module - Seller Store within the Modules / Plugins / Modifications forums, part of the Developer Forums category; v4 Seller Store Module The seller store is a section that allows sellers to have their own store page that ...


Go Back   68 Classifieds Forums > Developer Forums > Modules / Plugins / Modifications

Reply
 
Thread Tools Display Modes
Old 08-14-2007, 01:47 PM   #1
68 Classifieds Staff
 
Eric Barnes's Avatar
 
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,489
Rep Power: 135
Eric Barnes is just really nice Eric Barnes is just really nice
Default Module - Seller Store

v4 Seller Store Module

The seller store is a section that allows sellers to have their own store page that only shows their ads. They can insert a store logo, store name, and a description.

Requirements

Minimum version 4.0.0
If you are running v3.1.x visit this thread.

Instructions

Download the zip file and upload it to your modules directory. Next visit administration -> manage modules -> regenerate.

Manual Template Changes

To install this mod add the following link some where in a template file:
Code:
<a href="modules.php?mod=seller_store">My Store</a>
If you wish to only allow certain groups to have access you can do this:
Code:
{if $smarty.session.userlevel==6 || $smarty.session.userlevel==1}
<a href="modules.php?mod=seller_store">My Store</a>
{/if}
The levels work as follows:
  1. Administrators
  2. Registered Users
  3. Users Awaiting Email Confirmation
  4. Banned Users
  5. Guests
anything over 5 is ones you have added.

Next open your showlisting or showlisting2 template file and add this at the top if it is not already there:

Code:
{* user store display *}
    {if $storeImage<>""}
        <div align="center">
            <img src="photos/{$storeImage|escape:"url"}" alt="{$storeTitle}" />
        </div>
        <br />
    {else}
        <h3>{$storeTitle}</h3>
    {/if}
    <table width="80%" align="center">
        <tr>
            <td>{$storeDescription}</td>
        </tr>
    </table>
{* end user store display *}


Help & Support

If you need any help just reply below and we will try and help.

Change Log

10-5-2007
  • Fixed bug with the call to the layout template file.
  • Fixed bug with the call to the forward template file.
Downloads
Attached Files
File Type: zip seller_store.zip (16.1 KB, 274 views)
__________________
Eric Barnes
68 Classifieds Developer
Customer Area | Issue Tracker | Documentation | 68C Mods | 68 @ Twitter | My Modules

Last edited by Eric Barnes; 09-13-2008 at 01:21 PM.
Eric Barnes is offline   Reply With Quote
Old 08-18-2007, 08:36 AM   #2
Member
 
Join Date: Aug 2007
Posts: 49
Rep Power: 17
Nickb is on a distinguished road
Default Extra feature

Would it be possible to add an extra bit to the seller store.

It nice that sellers can have a small writeup, but it would be great if this could be extended to allow the seller store to include, say a couple of extra pages so they can have an about me page and maybe a terms and conditions. The pages should allow the seller to change font size and colour etc.

When someone goes to the seller store then they are presented with the logo etc and then links to their pages, these pages should also hold the links.

Just an idea. I think it will add alot to the store.
__________________
http://www.sell-your-art.co.uk
Nickb is offline   Reply With Quote
Old 08-27-2007, 02:56 PM   #3
Member
 
Join Date: Aug 2007
Posts: 49
Rep Power: 17
Nickb is on a distinguished road
Default Store Logo

Is there a way to limited the size of the seller store logo.
__________________
http://www.sell-your-art.co.uk
Nickb is offline   Reply With Quote
Old 08-27-2007, 02:59 PM   #4
68 Classifieds Staff
 
Eric Barnes's Avatar
 
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,489
Rep Power: 135
Eric Barnes is just really nice Eric Barnes is just really nice
Default

Yes you can open the index.php file and find this section:
PHP Code:
$maxWidth=$rs['maxWidth'];
        
$maxHeight=$rs['maxHeight'];
        
$maxWidthThumb=$rs['maxWidthThumb'];
        
$maxHeightThumb=$rs['maxHeightThumb']; 
Then change it to what you desire. For example:
PHP Code:
$maxWidth=400;
        
$maxHeight='';
        
$maxWidthThumb=150;
        
$maxHeightThumb=''
By leaving the height or width blank it will resize proportionally.
__________________
Eric Barnes
68 Classifieds Developer
Customer Area | Issue Tracker | Documentation | 68C Mods | 68 @ Twitter | My Modules
Eric Barnes is offline   Reply With Quote
Old 08-27-2007, 03:12 PM   #5
Member
 
Join Date: Aug 2007
Posts: 49
Rep Power: 17
Nickb is on a distinguished road
Thumbs up

Thanks for the help
__________________
http://www.sell-your-art.co.uk
Nickb is offline   Reply With Quote
Old 10-05-2007, 12:30 PM   #6
68 Classifieds Staff
 
Eric Barnes's Avatar
 
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,489
Rep Power: 135
Eric Barnes is just really nice Eric Barnes is just really nice
Default

This module has now been updated to work v4 RC9.
__________________
Eric Barnes
68 Classifieds Developer
Customer Area | Issue Tracker | Documentation | 68C Mods | 68 @ Twitter | My Modules
Eric Barnes is offline   Reply With Quote
Old 02-23-2008, 08:49 PM   #7
Member
 
Join Date: Oct 2007
Posts: 43
Rep Power: 16
outthere is on a distinguished road
Default where to put code?

Where exactly would i put

<a href="modules.php?mod=seller_store">My Store</a>

and where will that show up so someone could setup their own store?

P.S. Does anyone use this so I might see what it should look like on the site?

Thanks

Last edited by outthere; 02-23-2008 at 09:33 PM.
outthere is offline   Reply With Quote
Old 02-26-2008, 10:25 AM   #8
Junior Member
 
Join Date: Dec 2007
Posts: 12
Rep Power: 15
Damon is on a distinguished road
Default Seller Store- Not Sure I Understand

I installed the Store Mod yesterday and I have the "My Store" link and I am able to name the store and upload an image, but how does one actually implement a store?

How is it suppose to work? How do you add items to the store? How do people find your store?

I must be doing something wrong.

Does someone have a link to a store that's working so I can see how it should operate?

Here's the site I am working on-
http://www.postitfurniture.com

Regards,

db
__________________
Damon
Damon is offline   Reply With Quote
Old 02-26-2008, 10:46 AM   #9
curmudgeon
 
Join Date: Mar 2006
Posts: 5,411
Rep Power: 138
Lhotch is a glorious beacon of light Lhotch is a glorious beacon of light Lhotch is a glorious beacon of light
Default

Quote:
Originally Posted by Damon
I installed the Store Mod yesterday and I have the "My Store" link and I am able to name the store and upload an image, but how does one actually implement a store?

How is it suppose to work? How do you add items to the store? How do people find your store?

I must be doing something wrong.

Does someone have a link to a store that's working so I can see how it should operate?

Here's the site I am working on-
http://www.postitfurniture.com

Regards,

db
For visitors of your site, when they select "vire all ads by seller" the seller store will appear above the ads for that seller. The seller store is not really a store, its just a header, image and description about a seller. A way for a seller to pass along more detailed information about them that can be gained from just looking at the sellers profile.

So, you dont add anything to the "store" its just info about the seller. The store mod in and of itself doesnt sell anything either.
__________________
Larry

Knowledge learned is more valuable than knowledge given.
Lhotch is offline   Reply With Quote
Old 02-26-2008, 10:53 AM   #10
Junior Member
 
Join Date: Dec 2007
Posts: 12
Rep Power: 15
Damon is on a distinguished road
Default

Oh ok, I get it. It is working then. Thanks for the quick reply.

db
__________________
Damon
Damon is offline   Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Seller Store goose Technical Support 3 08-15-2007 11:08 PM
Is there any fix to this Seller Store for V4 RC3 ? Syafi Technical Support 0 06-14-2007 12:03 PM
Seller Store ? Unregistered Pre Sales Questions 2 02-06-2007 08:47 AM


All times are GMT -4. The time now is 08:48 AM.


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