Page 1 of 3 123 LastLast
Results 1 to 10 of 21

Thread: Camera Market

  1. #1
    Thread Starter
    Senior Member kmaisch's Avatar
    Join Date
    May 2010
    Posts
    135
    Thanks
    3
    Thanked 16 Times in 8 Posts

    Camera Market

    Hey all,

    I'll be launching this site soon - would be keen to know what people think

    http://ww2.cameramarket.com.au

    I've made the following mods:

    • Replaced wp-login.php with login.php to mask Wordpress
      Renamed "Dashboard" to "My Account"
      Removed references to Facebook/Twitter/Paypal on Profile Pages
      Using Register-Plus to collect location info at Registration (and using this data on post ad pages)
      Added dropdown for location selection in search form
      Disabled listing ads in parent categories
      Hidden reference to Payment Method for free ads.
      Sticky posts highlighted and show up first on category/search
      A few wording changes here and there
      A few cosmetic enhancements


    The only changes I want to make (and I'm hoping for these to be released in the next version of CP) are images showing up on the post preview page (before the ad is submitted), free ads to be relisted, users can self delete their accounts, and users can delete ads as well as pause.

    Cheers,
    Kim

  2. The Following User Says Thank You to kmaisch For This Useful Post:

    aguresh (July 24th, 2010)

  3. #2
    pepsi's Avatar
    Join Date
    Mar 2009
    Location
    New Zealand
    Posts
    14,887
    Thanks
    91
    Thanked 807 Times in 721 Posts

    Re: Camera Market

    Looks really great! I'll be sure to let my photographer friends in Oz know about it when you launch too

  4. #3
    Junior Member firestormcs's Avatar
    Join Date
    Apr 2010
    Location
    Florida
    Posts
    23
    Thanks
    0
    Thanked 11 Times in 7 Posts

    Re: Camera Market

    great job with your site, your color scheme is very pleasing to the eye and fits the tech nature of your niche really well.
    http://www.postpanda.com - Inkless ads. Better Classifieds.

  5. #4
    bidatio1's Avatar
    Join Date
    Apr 2010
    Posts
    67
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Re: Camera Market

    Nice Scheme! I'm using register plus too and i added first and last name fields, but the boxes are smaller than the username and email boxes provided by classipress, how did you change the size of the box and how did you get the letters on the left instead of the top?

  6. #5
    jomarkosabel's Avatar
    Join Date
    Mar 2009
    Location
    Philippines
    Posts
    40,692
    Thanks
    166
    Thanked 3,386 Times in 3,257 Posts

    Re: Camera Market

    It looks nice and I like the rounded corners.
    Please help our moderating team work more efficiently by not sending us support questions via PM. You can read more about how AppThemes support works here. However, you can send a PM to follow up and remind me if I missed your support request/thread.

    Thank you and have a nice day.

  7. #6
    Veteran vienna's Avatar
    Join Date
    May 2010
    Location
    Vienna, Austria
    Posts
    718
    Thanks
    19
    Thanked 177 Times in 118 Posts

    Re: Camera Market

    Hi Kmaisch,

    Your website looks nice and clean!

    It also gave me a chance to check out the Search form since I am paying attention to that with the site I am developing.

    After some experimentation with the search form on your site and on my test site I decided to get rid of the "What are you searching for? " default input value. If the input form does not have this in there then your search gets much better and can do more things.

    For instance Kmaisch-- if a user thought they could use the search function to simply sort out "SLR Cameras" in "Victoria" they cannot do this by default because the search will inject the "What are you looking for?" default string into the search parameters. And any text you do put into that input field to remove the "What are you looking for?" gets added into the search string which can immediately invalidate the search if not careful.

    I imagine when you DO have SLR cameras in Victoria that you would want the Search to be able to show the option of any category that is listed in a certain state or territory.

    I removed every input reference even though only the first one is needed to get rid of the "What are you looking for?" This is what I have now done with my search form. The line I changed is the <input...........


    Code:
            <form action="<?php bloginfo('url'); ?>/" method="get" id="searchform" class="form_search">
    
                <input name="s" type="text" id="s" value="<?php _e('','cp'); ?>" onfocus="if (this.value == '<?php _e('','cp'); ?>') {this.value = '';}" onblur="if (this.value == '') {this.value = '<?php _e('','cp'); ?>';}" class="editbox_search" />

  8. #7
    Amateur
    Not a Verified Customer
    irishrage's Avatar
    Join Date
    May 2010
    Posts
    13
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Camera Market

    Hi

    Looking really nice especially the rounded corners.

    Would you like to share?

  9. #8
    Thread Starter
    Senior Member kmaisch's Avatar
    Join Date
    May 2010
    Posts
    135
    Thanks
    3
    Thanked 16 Times in 8 Posts

    Re: Camera Market

    Thanks Vienna - I'll look at doing that search mod, good idea!

    The rounded corners only work in Mozilla and Webkit (Safari/Chrome) and use a mixture of the following CSS attributes:

    -moz-border-radius-topleft;
    -webkit-border-top-left-radius;
    -moz-border-radius-topright;
    -webkit-border-top-right-radius;
    -moz-border-radius-bottomleft;
    -webkit-border-bottom-left-radius;
    -moz-border-radius-bottomright;
    -webkit-border-bottom-right-radius;

    Kim

  10. The Following User Says Thank You to kmaisch For This Useful Post:

    barry (July 31st, 2010)

  11. #9
    Veteran sarge's Avatar
    Join Date
    Jun 2009
    Location
    USA
    Posts
    628
    Thanks
    2
    Thanked 9 Times in 9 Posts

    Re: Camera Market

    That is an extremely nice website, one of the Top 5 CP Sites I have seen to date.

    Very well done!

    I would suggest incorporating some Terms of Use and a Privacy Policy.
    Always treat everyone with respect and courtesy, but trust no one.

  12. #10
    Amateur
    Not a Verified Customer
    irishrage's Avatar
    Join Date
    May 2010
    Posts
    13
    Thanks
    0
    Thanked 1 Time in 1 Post

    Re: Camera Market

    Rounded corner

    I put these in css and got everything rounded:

    div { -moz-border-radius-topleft: 20px;
    -webkit-border-top-left-radius: 20px;
    -moz-border-radius-topright: 20px;
    -webkit-border-top-right-radius: 20px;
    -moz-border-radius-bottomleft: 20px;
    -webkit-border-bottom-left-radius: 20px;
    -moz-border-radius-bottomright: 20px;
    -webkit-border-bottom-right-radius: 20px;
    }

    I would everything rounded except top and bottom...With this the whole template include

  13. The Following User Says Thank You to irishrage For This Useful Post:

    barry (July 31st, 2010)

Page 1 of 3 123 LastLast

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How do you Market your Classified site?
    By vcplc4 in forum ClassiPress General Discussion
    Replies: 8
    Last Post: August 5th, 2010, 04:44 PM