Advertisement:

Author Topic: Bender Theme Change Categories to Location in Main  (Read 1229 times)

izzuan

  • Newbie
  • *
  • Posts: 3
Bender Theme Change Categories to Location in Main
« on: September 29, 2013, 10:09:58 pm »
Hiexpert. I use a standard Bender theme and want to replace a categories list at the main page instead of location. I dont want to remove that because the main categories view look nice when see on phone(responsive). Can anyone help me?

Sunkal

  • Sr. Member
  • ****
  • Posts: 445
  • everybody can help?
Re: Bender Theme Change Categories to Location in Main
« Reply #1 on: October 30, 2013, 06:17:29 pm »

put the code on main.php behind this:
</div><!-- main -->
<div id="sidebar">


---code-----

<div class="widget-box" id="Category">
Category<br><br>
       <?php while ( osc_has_categories() ) { ?>
                        <div class="category">
                            <small><a class="category cat_<?php echo osc_category_id() ; ?>" href="<?php echo osc_search_category_url() ; ?>"><?php echo osc_category_name() ; ?></a> <span>(<?php echo osc_category_total_items() ; ?>)</span></small>
                            <?php if ( osc_count_subcategories() > 0 ) { ?>
                                <ul>
                                    <?php while ( osc_has_subcategories() ) { ?>
                                        <li><a class="category cat_<?php echo osc_category_id() ; ?>" href="<?php echo osc_search_category_url() ; ?>"><?php echo osc_category_name() ; ?></a> <span>(<?php echo osc_category_total_items() ; ?>)</span></li>
                                    <?php } ?>
                                </ul>
                            <?php } ?>
                        </div>
                        <?php
                            if (($col==1 && $i==$col1_max_cat) || ($col==2 && $i==$col2_max_cat) || ($col==3 && $i==$col3_max_cat)) {
                                $i = 1;
                                $col++;
                                echo '</div>';
                                if($x < $total_categories) {
                                    echo '<div class="col c'.$col.'">';
                                }
                            } else {
                                $i++ ;
                            }
                            $x++ ;
                        ?>
                    <?php } ?>
               </div>