Page 1 of 1

A couple of questions

Posted: Sun Feb 21, 2010 4:36 am
by slinkie172
Hi Folks,

I have a few questions I need to be answered before I can be 100% happy with my store.

1.) How do I make the price on the product page a larger font. Also, how would I go about showing the price as "Price: £10.00 inc P&P"

2.)How do I edit/ remove the sort by drop down list?

3.)Currently my website is stored online in www.mydomain.com/test I now want to move this so the link is just www.mydomain.com. Is it as simple as just copy and pasting my website or will I need to install opencart again and then copy and paste over the top of it with my website?

Thanks

Matt

Re: A couple of questions

Posted: Sun Feb 21, 2010 7:04 pm
by i2Paq
Al your question have been asked before and can be answered if you look on these forums.

I knw that the search is not that good bu if you are creative you will manage.

Re: A couple of questions

Posted: Tue Feb 23, 2010 5:27 am
by slinkie172
Thanks,

I managed to sort out question 3 but am struggling with 1 and 2. I can't find them in the search so any help will be greatly appreciated.

I have one more question, I have got my terms and conditions of sale in my information module so that I can have the customer agree to them when they buy. However, I don't want them on my homepage/ column. Is there anyway to have the terms and conditions of sale so that the customer agrees to them during a sale but they aren't included in my information module?

Re: A couple of questions

Posted: Tue Feb 23, 2010 11:44 am
by rph
http://forum.opencart.com/viewtopic.php?f=22&t=6670

I don't know why you'd want to hide your terms and conditions though.

Re: A couple of questions

Posted: Wed Feb 24, 2010 4:22 am
by slinkie172
Thanks for that, I have decided not to remove the terms and conditions. However, with regards to my question 2.) How do I remove the sort by drop down list. I don't really have that many items for sale on my website so feel it is a bit unneccesary. Still looking for info on question 1 too!

Thanks

Matt

Re: A couple of questions

Posted: Wed Feb 24, 2010 5:31 am
by rph
In

/catalog/view/theme/[theme name]/template/product/category.tpl
/catalog/view/theme/[theme name]/template/product/manufacturer.tpl
/catalog/view/theme/[theme name]/template/product/search.tpl
/catalog/view/theme/[theme name]/template/product/special.tpl

Delete

Code: Select all

    <div class="sort">
      <div class="div1">
        <select name="sort" onchange="location=this.value">
          <?php foreach ($sorts as $sorts) { ?>
          <?php if (($sort . '-' . $order) == $sorts['value']) { ?>
          <option value="<?php echo $sorts['href']; ?>" selected="selected"><?php echo $sorts['text']; ?></option>
          <?php } else { ?>
          <option value="<?php echo $sorts['href']; ?>"><?php echo $sorts['text']; ?></option>
          <?php } ?>
          <?php } ?>
        </select>
      </div>
      <div class="div2"><?php echo $text_sort; ?></div>
    </div>

Re: A couple of questions

Posted: Wed Feb 24, 2010 5:38 am
by Qphoria
Perhaps the easiest way is just to add this to the bottom of your stylesheet.css in your theme:

Code: Select all

.sort {
    display:none;
}

Re: A couple of questions

Posted: Wed Feb 24, 2010 11:35 am
by rph
That's probably a better solution since it's easier to reverse.