Loading

Author Topic: Perfect theme for sale,new features !  (Read 1141 times)

backdoor

  • Newbie
  • *
  • Posts: 24
    • Email
Perfect theme for sale,new features !
« on: January 30, 2012, 04:02:03 pm »
Hi;
A new template based on default theme (so plugins easyly work with it),with new features like fixed header,gallery item listing (with premium items support),ads support in main page and ad listing page,you can change logo in admin section like default theme,css and js optimized,fade effect while loading site contents,works with every plugn without problem,support for watchlist,rating plugins,social sharing and so...

You can view pages by clicking
http://imageshack.us/g/401/osclass1.png/
as slideshow
http://img401.imageshack.us/slideshow/webplayer.php?id=osclass1.png

full screen
http://urlcini.com/sTeG8C
http://urlcini.com/ES6RVT
http://urlcini.com/QUYKmv
http://urlcini.com/7Noy51
http://urlcini.com/djy7QF
http://urlcini.com/1d8Ih9
In the screenshots items and some other places language is in Turkish,but theme is multilanguage and well documented.

Theme price is
for 1st buyer : 30usd
for 2st and 3st: 40usd
for others:50usd


and will be sold to max 10 user,so hurry up to grap one.
If you interested pm me so you can buy via paypal.
Have a nice day!
« Last Edit: January 30, 2012, 04:37:43 pm by backdoor »

backdoor

  • Newbie
  • *
  • Posts: 24
    • Email
Re: Perfect theme for sale,new features !
« Reply #1 on: February 03, 2012, 04:26:54 pm »
You can view demo by clicking here: http://urlcini.com/8Q4iVq

backdoor

  • Newbie
  • *
  • Posts: 24
    • Email
Re: Perfect theme for sale,new features !
« Reply #2 on: February 10, 2012, 04:49:48 pm »
now i include rollover map as plugin (for all countries and images you specified),please pm for details.

valzero

  • Premium
  • Newbie
  • *****
  • Posts: 23
    • Email
Re: Perfect theme for sale,new features !
« Reply #3 on: April 27, 2012, 08:08:33 pm »
I am interested on purchasing your grid view plug in. 4 columns 3 rows and pagination. If you have a price please discuss it with me. I pay using paypal. Thank you!

stampcrew

  • Newbie
  • *
  • Posts: 23
  • wong jowo
    • Email
Re: Perfect theme for sale,new features !
« Reply #4 on: May 01, 2012, 09:04:55 pm »
10$ pm me ;)

asimshaz

  • Full Member
  • ***
  • Posts: 145
  • OLXADs Free Classifieds ads in Pakistan
    • Free Classifieds, Online Classifieds, Classifieds in Pakistan
    • Email
Re: Perfect theme for sale,new features !
« Reply #5 on: May 08, 2012, 07:48:32 am »
you can create gird view by your self very easy task

Locate these line in main.php

<table border="0" cellspacing="0">
                                 <tbody>
                                    <?php $class = "even"; ?>
                                    <?php while ( osc_has_latest_items() ) { ?>
                                     <tr class="<?php echo $class. (osc_item_is_premium()?" premium":"") ; ?>">
                                            <?php if( osc_images_enabled_at_items() ) { ?>
                                             <td class="photo">
                                                <?php if( osc_count_item_resources() ) { ?>
                                                    <a href="<?php echo osc_item_url() ; ?>">
                                                        <img src="<?php echo osc_resource_thumbnail_url() ; ?>" width="75px" height="56px" title="" alt="" />
                                                    </a>
                                                <?php } else { ?>
                                                    <img src="<?php echo osc_current_web_theme_url('images/no_photo.gif') ; ?>" alt="" title=""/>
                                                <?php } ?>
                                             </td>
                                            <?php } ?>
                                             <td class="text">
                                                 <h3><a href="<?php echo osc_item_url() ; ?>"><?php echo osc_item_title() ; ?></a></h3>
                                                 <p><strong><?php if( osc_price_enabled_at_items() ) { echo osc_item_formated_price() ; ?> - <?php } echo osc_item_city(); ?> (<?php echo osc_item_region();?>) - <?php echo osc_format_date(osc_item_pub_date()); ?></strong></p>
                                                 <p><?php echo osc_highlight( strip_tags( osc_item_description() ) ) ; ?></p>
                                             </td>
                                         </tr>
                                        <?php $class = ($class == 'even') ? 'odd' : 'even' ; ?>
                                    <?php } ?>
                                </tbody>
                            </table>

Replace the above line with this

<style type="text/css">
ul.grid_view{margin: 8px 0px 22px 0px;}
.grid_view li {display: inline; list-style: none; width: 160px; height: 210px; float: left; margin: 0px 4px 8px 4px; text-align: center; border: 1px solid #CCC; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2); -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2); box-shadow: 0 1px 2px rgba(0,0,0,.2); }
.grid_view li h3{ margin: 5px; max-height: 20px; overflow: hidden; text-overflow: ellipsis; background: #EEE; }
.grid_view li h3 a{  text-decoration: none; text-transform: uppercase;}
.grid_view li p{ max-height: 60px; overflow: hidden; text-overflow: ellipsis;}
.grid_view img{ border: 1px solid #EEE;}
</style>
<ul class="grid_view">
<?php while ( osc_has_latest_items() ) { ?>
<?php if( osc_images_enabled_at_items() ) { ?>
<li><h3><a href="<?php echo osc_item_url();?>"><?php echo osc_item_title();?></a></h3><?php if( osc_count_item_resources() ) { ?>
<img src="<?php echo osc_resource_thumbnail_url() ; ?>" width="140px" height="110px" title="" alt="" />
<?php } else { ?>
<img src="<?php echo osc_current_web_theme_url('images/no_photo.gif') ; ?>" width="140px" height="110px" alt="" title=""/>
<?php } } ?>
<br/><p><?php if (osc_price_enabled_at_items()) { echo osc_item_formated_price(); }?><br /><strong><?php if (osc_item_city() != '') {echo osc_item_city();}if (osc_item_region() != '') {echo '(' . osc_item_region() . ')';}echo ' - ' . osc_format_date(osc_item_pub_date());?> </strong></p></li>
<?php } ?>
</ul>

how your page will look like you may see the example at http://www.olxads.com if you also want to remove the categories from the main page you may ask me for that also
Visit my site and see the wonders of OSClass
http://www.olxads.com OLX ADs