Discussion on Elite Shop

Discussion on Elite Shop

Cart 105 sales
Well Documented

Diabolique supports this item

Supported

This author's response time can be up to 2 business days.

63 comments found.

hi, i like to know how i take off the menu left the up in the category. I leave the menu left the down.

PS: Sorry, i don’t speak english

I don’t understand. Which menu?

Is there a way to make all the Hyper Links stand out?

Currently they blend into the grey text and I would love them to stand out slightly? Maybe a different color?

Thanks

Add following code to the stylesheet.css:

#content a { font-weight:bold; }
or
#content a { font-weight:700; }

Hi

I have tried to add the code you suggest into stylesheet.css in the container area.

Is this is the right place? as its not working?

Yes, you can add it at the bottom of file too.

Run just windows?? how i create new products? in PHP?

PS: sorry, I dont speak english

It’s a CMS, you have to install Opencart first.

Documentation: http://www.opencart.com/index.php?route=documentation/documentation&path=78_25_26

Open product/product.tpl

And remove

<?php if ($price) { ?>
     <div class="price-container">
     <div class="price">
        <?php if (!$special) { ?>
        <div class="price-amount"><?php echo $price; ?></div>
        <?php if ($tax) { ?>
        <span class="price-tax"><?php echo $text_tax; ?> <?php echo $tax; ?></span>
        <?php } ?>

        <?php } else { ?>
        <div class="price-amount"><?php echo $special; ?></div>
        <span class="price-old"><?php echo $price; ?></span> 
        <?php } ?>
     </div><!--price ends-->

        <?php if ($points) { ?>
        <span class="reward"><small><?php echo $text_points; ?> <?php echo $points; ?></small></span> <br />
        <?php } ?>
        <?php if ($discounts) { ?>
        <br />
        <div class="discount">
          <?php foreach ($discounts as $discount) { ?>
          <?php echo sprintf($text_discount, $discount['quantity'], $discount['price']); ?><br />
          <?php } ?>
        </div>
        <?php } ?>

     </div><!--price-container ends--> 
<?php } ?>
Open:
catalog/view/theme/eliteshop/template/module/featured.tpl
catalog/view/theme/eliteshop/template/product/category.tpl
catalog/view/theme/eliteshop/template/product/manufacturer_info.tpl
catalog/view/theme/eliteshop/template/product/search.tpl
catalog/view/theme/eliteshop/template/product/special.tpl

and remove

          <span class="box-price<?php if ($product['special']) { ?>-sale<?php } ?>">
          <?php if (!$product['special']) { ?>
          <span class="box-price-amount"><?php echo $product['price']; ?></span>
          <?php } else { ?>
          <span class="box-price-amount"><?php echo $product['special']; ?></span>
          <?php } ?>
         </span><!-- box-price ends-->

Thanks, all right, just one more question, how i change or remove letters the menu in top in Home and increases image of products in Home? Thanks!

Top menu is in the common/header.tpl

You can increase thumbnails size under Featured module setting.

How do we extend the length of the search box?

It will be hard because this is an image (image/search.png) Styling is in the stylesheet.css – SEARCH AREA

Have you disabled the social sharing buttons on this theme?

Can we re-insert them?

Thanks

Yes, I removed social sharing buttons from product/product.tpl

You can copy buttons from this page https://www.addthis.com/get/sharing

and paste before [/div]<!-productcol ends->

Hi Diabolique

Is there any way of changing the text within the search box? currently it says ‘Search’ can I customise this?

Many Thanks Uzitt

Hi,

You can change it in the language file catalog/language/english/common/header.php

Thank you – PERFECT!

Hi,

Thank you for the response. I might post again for help if I decide to buy it.

Thanks.

Hi,

I have a few questions about this theme:

How can i duplicate the ‘Manufacturer’ or the ‘Brands’ module to “ARTISTS” and hook it on the left sidebar? I need to put information about all Artists featured on the site. I need the artists names to be displayed on the sidebar just like the categories menu. Is it possible?

Please help. Thanks.

Open catalog\view\theme\eliteshop\template\common\column_right.tpl

and paste following code before [/div]<!-right-column ends->:

<div class="box">
  <span class="box-heading">Artists</span>
  <div class="box-content">
    <div class="box-product">
     <ul>
          <li><a href="http://www....">Artist 1</a></li>
          <li><a href="http://www....">Artist 2</a></li>
          <li><a href="http://www....">Artist 3</a></li>
          </ul>
    </div>
  </div>
</div>

Now you have to replace links http://www.... to categories with artists.

Hi Diabolique,

Thank you for the response. But, my goal is to duplicate the ‘Manufacturers’ module and name it ‘Artists’ so that when I add a product I can assign an ‘Artist’ instead of creating a Category with ‘Artists’.

I will also need to create a Profile page for each Artist. This may be a static page with links to products by the Artist.

Then I need to create a module named Events/Exhibitions where I can display works from a particular event. It would be nice if I could link these images to the actual products pages.

Please try to help me a bit on these issues.

Thank You!

But, my goal is to duplicate the ‘Manufacturers’ module and name it ‘Artists’ so that when I add a product I can assign an ‘Artist’ instead of creating a Category with ‘Artists’.

You cannot just duplikate it. Like I said in previus post “Paste static list with links to specific pages, categories, manufacturers”

I will also need to create a Profile page for each Artist. This may be a static page with links to products by the Artist.

catalog -> information

Then I need to create a module named Events/Exhibitions where I can display works from a particular event. It would be nice if I could link these images to the actual products pages.

Try it – http://www.opencart.com/index.php?route=extension/extension&filter_search=events

Thanks … I found intervene

Next time I read through the tutorial ..

I’m sorry

Hello!

This is awesome theme!!! Gratz!

I have a problem. I am a Hungarian shop was doing. The general title of the page does not display accented characters, for example: ? ú í. Can you help me with this?

Thank you.

Hi Diabolique,

is it me or has the “contact us” page been disabled with the theme?

I cant find it anywhere?

Haha I totally didn’t see that… how stupid!

Can I add a link to the footer?

Open footer.tpl and paste following code:

<li><a href="<?php echo $contact; ?>"><?php echo $text_contact; ?></a></li>

after:
<pre /><li><a href="<?php echo $sitemap; ?>"><?php echo $text_sitemap; ?></a></li>

Thank You! Works perfectly!

Hi Diabolique,

what are the measurements for the logo area?

How do I get the logo to fill the logo area!

Thanks Uzitt

Open stylesheet.css and increase 30px here:

#logo img { margin:60px 0 0 30px; }

Thanks for that! I will have an experiment.

Could you also tell me the best way I can get an arrow onto the red header?

So I would like a big arrow that points to the search box?

Open catalog/view/theme/eliteshop/template/common/header.tpl and paste it into [div id=”header-right”]

character error. What is the solution? I use Turkish language

Probably your language isn’t supported by Bebas Neue font – http://www.dafont.com/bebas-neue.font Please open a theme’s documentation and take a look following chapter: VII . Don’t see some font glyphs?

If it won’t help then you have to change font: VIII . How to change Cufon font? IX. How to change @font-face font?

Hi Diabolique,

Can you advise me on how to change the grey general background color?

Thanks

Uzitt

does it works with 1.5.4.1?

Yes, there is a special version in the purchased file “Theme for OpenCart v1.5.4.x”

Hi Diabolique

Can you instruct me on how to change the black background on the Logo?

Uzitt

I especially like the logo section of this theme, it’s just perfect for my need. I’m a newbie and hoping you can shed some light. I’m coming from Wordpress and pretty comfortable with how it works. I’ve been playing around with OPENCART , and I’m wondering does it work the same way? Once I install an opencart theme, is it like wordpress where a theme options section is automatically created? Will there be a theme options section in my opencart admin panel? I don’t know css. Is there a theme options section to easily change colors of the backgrounds, fonts, headers, etc? Please advise, thank you!

No theme settings options but you will find a help in the theme’s documentation and on the FAQ page.

Diabolique, I think I understand opencart a little better now. I’ve been playing around with the demo of other sellers, and I see that once a theme is installed, you can find the theme under the MODULES section.

Is it the same with your theme? It will appear under the Modules sections? And from there, I can do some customizing?

Just curious if all open cart themes come with a theme module. I have a feeling not all do because you didn’t mention it when I asked about the “options panel” even though I got the lingo incorrect. I guess in opencart, it’s called “theme module.”

Anyway, I would appreciate confirmation to help me better understand how opencart and their themes work together. Thanks again!

There is to theme settings (like change colors) panel.

Just informing you, that “jquery.jcarousel.min.js” file is required by your header.tpl file (line 30) and must be located in “catalog/view/theme/eliteshop/js” folder, but it’s absent.

Thanks, I’ll update my theme.

Ah sorry, forgot to ask about the search box, for now it is only searching in products names and descriptions, any possibilities to allow it to search by meta tags or category tags? Thanks again!

As I know Opencart doesn’t have such option but you can try to find solution on the forum.opencart.com

Hi Diabolique, just had one last question, is there a way to modify what is appearing in the popups of the products boxes? Like for example the category tags or the meta tags or even the attributes?

Thanks a lot for your help.

Hi,

No, it’s not possible.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey