Hello I have a few users that have over 3000 listings. When they login, and attempt to 'modify' their listing, they have to thumb through a lot of pages to find their listing to modify. I tried to install a search box (copied the 'Quick Search' box code from the admin side) but it doesn't work (it still shows all their listings and not the one queireid) Is this possible to have a search box for only the logged in user to search only their listings when in 'Modify Listings'? Thanks Guys Todd
I haven't ever tried this and it sounds like an interesting concept... One option might simply be to provide a link in the view listing page itself simply using smarty logic if the viewer is the seller. Something along these lines... Code: {If $smarty.session.username == $owner} <a href="usermodifylisting.php?view={$id}&action=modify>Modify your listing</a> {/if} The variables that I used may not be the correct variables in the view listing template. You may need to use the smarty debug to check for the correct variables for the seller in the listing and the listing id as well. (e.g. $owner and $id)
For MikeNTosh Hey Mike Didn't work. However, willing to pay you to make it work....interested? Either..... 1. Need a link on listing, that allows users (if logged in) to jump right into the modify aspect of it 2. Or (big one) Need a search function inside the page userbrowselistings to search only what they need to modify (basically, they could have up to 4000 listings, and this would save them the agony of thumbing through each page. Interested in making a few bucks? Todd
I replied to you that this should be possible to do with the global search module as the basis of the modification. You can also have the search query changed to search specifically on the owner that is logged in. That is the easy bit. However, you need to also have a new type of show listings where the links are modify links instead of viewlisting ones. When you click on these links sent back, it will take you to modification of that listing. Adding in upgrade of listings etc makes it even more complicated. Unfortunately I am no longer able to do the customization of the module but Mike should be able to do so if he wishes.