389 comments found.
hi diabolique,
how to activate browse all product link ? .. i want to make a link from front page ‘browse all’
thanks
Create product category called “All” and put all products into this category. Link of “browse all” button is inside …common/home.tpl
so i must put 1 product in 2 category ? ... real category and all category is it true ?
how about if we want to click ‘browse all’ link then show up all category product that we have created then we could go check detail product by category ? .. is it possible ?
thanks
1. Yes.
2. As I know it’s impossible with opencart.
Hi Diabolique,
Is there any way I can add a blog to the theme for SEO purposes?
If possible I would like to add a category called “blog” that I can add text posts to so my site can be kept fresh with keyword rich text. Please advise if this is possible.
Hi,
How about to install a wordpress in the child category like /blog on your FTP ?
Not sure how to do this but will consult my hosting provider. Thanks for pointing me in the right direction.
Hi friend,
1. How do I change the speed of the slider on the homepage?
Hi,
Open:
catalog/view/javascript/jquery/nivo-slider/jquery.nivo.slider.pack.jsand edit following value:
animSpeed:500
Thank you friend!
Hi Diabolique
I did this site for my brother for xmas, was wondering if I can orientated all the product boxes to horizontal rather than a vertical layout -
I tried sysyem/setting/image – but i guess that is just the actual images themselves and not the bounding box.
i will look in CSS but any help would be great…
thanks 
Hi
Please read FAQ on this page and also theme’s doc (III. Theme customisation)
Ok i figured it out in CSS – but for some reason now, the drop down categories do not have black box – only when i hover over them it appears?? any Idea…
Also in Safari or MAC , some people are saying the main menu is dropping into the background image…you can see this effect if you zoom from a PC…is there a way to fix this…do u understand?
Thanks so much
btw i did change my logo header container from 50px to 100px….would that make that happen?
here is link – it might be because my logo is so big…dunno
http://frenchbroadwoodturners.comOk i figured it out in CSS – but for some reason now, the drop down categories do not have black box – only when i hover over them it appears?? any Idea…
It looks fine on your website.
Also in Safari or MAC , some people are saying the main menu is dropping into the background image…you can see this effect if you zoom from a PC…is there a way to fix this…do u understand?Try to increase min-width of website:
#header-container { min-width:1100px; }
Hey, thank you for this great theme!
After purchasing it and analysing the code, I’ve found some parts, where I really would like to know, why you’re handle things like that.
For example, you do load (parts of) lightbox from your googlecode-page:
lightbox-blank.gif Dimensions 1 × 1 File size 43B MIME type image/gif URL http://diaboliquedesign.googlecode.com/files/lightbox-blank.gif
I mean there are several reasons, why I’m not agree with that. Okay, it is crazy thinking about the breakdown of google servers, but googlecode would give you the oppourtunity to save statistics about downloaded files like the mentioned file above.
I would like you to take position on this.
thanks in advance
Hi,
I don’t remember why but I will change it by the way. Also google doesn’t provide any detailed statistics – only number of downloads.
Hi friend, I am new to opencart but just bought your theme and love it. My only issue is that I cannot see the default pictures as in displayed the demo preview of the template.
I have just installed opencart 1.5.1.3. I copied the “phanthom shop” folder from the .zip directly into my “theme” folder in opencart but when I access the template all I can see is the default opencart 1.5.1.3 main banner images but would really like the ones as displayed in the phanthom shop template demo. please advise and thanks in advance.
Hi,
You should upload whole folder called “catalog” (you will find it inside “For-OpenCart-v1.5.1.3-newest”) and activate “phantomshop” theme under Opencart dashboard.
I tried that but its still the same. Searching for images in my downloaded folder I cannot see the images as depicted in the demo. If I had the images I could put them in place myself.
In my phantom shop images folder I can see the logo.jpg but not the sample images and the slideshow images.
Also if it helps when the template is installed and selected within the admin panel the logo stays as the default and not the phantom shop default logo.
Please advise.
So you are talking about product images. They aren’t included and I don’t understand why you need them. Anyway you can grab this images from live demo (view website’s code source).
Also if it helps when the template is installed and selected within the admin panel the logo stays as the default and not the phantom shop default logo.But logo is untouched, this code is inside header.tpl (take a look at src value):
<a href="<?php echo $home; ?>"><img title="<?php echo $name; ?>" src="<?php echo $logo; ?>" alt="<?php echo $name; ?>" /></a>
Thanks Diabolique. Got what I need from the source code.
Brillant template and great support. Your the man!!!
can i put an image zoom plug in in this?
I’m not sure but all thumbnails aren’t displayed using IMG html tag so it can be impossible.
ya something like that…
Hi,
I am trying to change the left side panels to redirect to Facebook instead of contact page, etc. Please see http://blurry.michoscopic.com.
Where can I find the code to do that? I searched stylesheet.css and header.tpl but still can’t find.
Thanks!
Hi This part is inside:
catalog/view/theme/phantomshop/template/common/footer.tpl
Ah, found and fixed. Thanks for the quick reply!
nope. i dont see this line.
this is the index of cart.tpl
<?php if ($products || $vouchers) { ?>
<table class="cart">
<?php foreach ($products as $product) { ?>
<tr>
<td class="image"><?php if ($product['thumb']) { ?>
<a href="<?php echo $product['href']; ?>"><img title="<?php echo $product['name']; ?>" src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" /></a>
<?php } ?></td>
<td class="name"><a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a>
<div>
<?php foreach ($product['option'] as $option) { ?>
- <small><?php echo $option['name']; ?> <?php echo $option['value']; ?></small><br />
<?php } ?>
</div></td>
<td class="quantity">x <?php echo $product['quantity']; ?></td>
<td class="total"><?php echo $product['total']; ?></td>
<td class="remove"><img title="<?php echo $button_remove; ?>" src="catalog/view/theme/default/image/close.png" onclick="removeCart('<?php echo $product['key']; ?>');" alt="<?php echo $button_remove; ?>" /></td>
</tr>
<?php } ?>
<?php foreach ($vouchers as $voucher) { ?>
<tr>
<td class="image"></td>
<td class="name"><?php echo $voucher['description']; ?></td>
<td class="quantity">x 1</td>
<td class="total"><?php echo $voucher['amount']; ?></td>
<td class="remove"><img title="<?php echo $button_remove; ?>" src="catalog/view/theme/default/image/close.png" onclick="removeVoucher('<?php echo $voucher['key']; ?>');" alt="<?php echo $button_remove; ?>" /></td>
</tr>
<?php } ?>
</table>
<table class="total">
<?php foreach ($totals as $total) { ?>
<tr>
<td align="right"><b><?php echo $total['title']; ?></b></td>
<td align="right"><?php echo $total['text']; ?></td>
</tr>
<?php } ?>
</table>
<div class="checkout"><a href="<?php echo $checkout; ?>" class="button"><span><?php echo $button_checkout; ?></span></a></div>
<?php } else { ?>
<div class="empty"><?php echo $text_empty; ?></div>
<?php } ?>
It should be. Download the latest version of this theme and upload this file once again.
1.0.7 ver. – added compatibility with V1.5.1.3 of OpenCart Modified file:
catalog/view/theme/phantomshop/template/checkout/cart.tpl
Well yea, seems i have the “updated” file, why do i still get the error?
<?php if ($product['reward']) { ?>
<small><?php echo $product['reward']; ?></small>
<?php } ?>
Also do you have the same error when Default theme is activated?
I’m using Opencart v. 1.5.1.3.1 and get error :
Notice: Undefined index: reward in /var/www/vhosts/snsgr.com/httpdocs/catalog/view/theme/phantomshop/template/checkout/cart.tpl on line 49
i read that you will update the cart.tpl file. i actually used the folder named: For-OpenCart-v1.5.1.3-newest.
Any fix?
Thanks in advance.
Thanks, check your email please..and How I can delete the currency from the homepage?
catalog/view/theme/phantomshop/template/common/footer.tpl
this is what i need to delete http://imageshack.us/photo/my-images/851/thisj.jpg/
So it’s inside catalog/view/theme/phantomshop/template/common/header.tpl
remove “currency-panel” div and everything inside.
© Notice: Undefined variable: name in /home/dulcec/public_html/catalog/view/theme/phantomshop/template/common/footer.tpl on line 38 / Icons by IconShock
check the website www.dulcecaprichito.cl we did a Fresh install OpenCart Version 1.5.1.3.
catalog/controller/common/footer.phpInside this file must be following line:
$this->data['name'] = $this->config->get('config_name');
If not then reuplod it from purchased file.
Hi bought this theme,
few problems how do i make 5 products show on home page and also how do i edit text
from Aenean urna orci, rhoncus ut commodo eget, ullamcorper non leo. Sed non elit orci. Nullam pellentesque eleifend congue. Maecenas sapien ante, tincidunt vel cursus ac, convallis a purus. Nulla eget lacinia arcu. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Curabitur lectus erat, condimentum non rutrum vel, feugiat id est. Aenean urna orci, rhoncus ut commodo eget, ullamcorper non leo. Sed non elit orci. Aliquam nec nibh urna. Nulla facilisi. Aliquam sit amet est risus. Nunc blandit tempus vestibulum. Maecenas sapien ante, tincidunt vel cursus ac, convallis a purus. Yours faithfully – Diabolique
Brands We Offer
to my own?
You should activate Featured module – please read theme’s documentation.
Content visible under featured items is inside:
catalog/view/theme/phantomshop/template/common/home.tpl
Hi Diabolique
skydive74 is right, I have double checked the zip file, it does not contain a file called upgrade.txt. The file is missing. Can you please send me the file. I have sent you an email requesting the file.
Thanks for all your help.
Hi
This file is inside zip file of the Opencart installation available here: http://www.opencart.com/index.php?route=download/downloadAnyway here is the content of this file:
///////////////////////////////// /// OpenCart V1.5.x /// /// Upgrade Instructions /// /// http://www.opencart.com /// ///////////////////////////////// NOTE: THIS IS FOR UPGRADING existing 1.5.x to new 1.5.x versions If you have 1.4.x, You need to use the script here: http://forum.opencart.com/viewtopic.php?f=2&t=36519 ------- UPGRADE FOR 1.5.x to 1.5.x ------- STEP 1. BACKUP YOUR EXISTING STORE FILES AND DATABASE!!! STEP 2. Upload ALL new files on top of your current install EXCEPT config.php and admin/config.php STEP 3. Browse to http://www.yourstore.com/shop/install STEP 4. The installer should direct you to the upgrade process. If you see the install steps, then you overwrote your config files. Restore them as the upgrade needs the existing config.php and admin/config.php files. STEP 5. Click "Upgrade". After a few seconds you should see the upgrade success page. Follow the steps. STEP 6. Post any upgrade script errors problems in the forums STEP 7. Clear any cookies in your browser to avoid getting token errors. STEP 8. Load the admin page & press Ctrl+F5 twice to force the browser to update the css changes. STEP 9. Goto Admin->Users->User Groups and Edit the Top Adminstrator group. Check All boxes. STEP 10. Goto Admin and Edit the main System Settings. Update all fields and click save, even if nothing changed. STEP 11. Load the store front & press Ctrl+F5 twice to force the browser to update the css changes. Possible Errors and Solutions: ------------------------------ Nothing to specify at this time Please post any other errors in the forum thread specific to your version of OpenCart. That's It! OpenCart Dev Team
Hi Diabolique, I’m still working on the website. Please help me with my previous post.
I saw you suggested upgrade.txt to Sim2K and thought I missed it. I looked through the phantom-shop folder and couldn’t find that file. Here are the folders in my phantom shop download:
For Opencart V1.5.1.3 For Opencart v1.5.1-v1.5.1.2 For Opencart v1.5.05 Help ( I did find and read through index.html) PSD & PNG
Is it nested deeply in one of these folders?
Thanks.
I have just replied a minute ago. upgrade.txt is inside Opencart installation downloaded from opencart.com
Hi, this is a great looking theme! Thats why I brought it.
2 questions:
I am using the latest version of Opencart 1.5.1.3 and Im trying to get the side bar working. I followed the instructions given in the FAQ ’s but the side bar still does not show and the background then disapears. If i take away the 2 edits, the background comes back. This is from a FRESH install and no Mods.
The instructions dont seem be updated for Opencart 1.5.1.3 so I’m unsure if I have set everything up correctly. Is there any Opencart 1.5.1.3 updated instructions online?
This is the site in question: http://alloutuk.co.uk/index.php
Thanks in advance and thanks for a great site.
1. It looks like corrupted Opencart installation.
2. Instructions you can find inside upgrade.txt file.
Hi Diabolique, thanks for the nice and clean template to work off from. I’m changing the entire theme white based and encountered a few problems/questions and need some help.
1. CSS color changes to box-add-to-cart does not reflect on the website. I’ve checked id and class references as much as I know how and can’t seem to figure out why. It’s out of the box opencart 1.5.1.3.
2. Why are there two #main-child together with different attributes in the CSS ? I’ve added shadow and background to the second instance (also tried the first) but it only shows up on the homepage, category page, and a few others. Other pages such as product detail page, affiliate, log-in, and others seems to have broken away from main child and the background didn’t apply? I’ve looked through your included readme and the comments in CSS helps, but I’m still a bit confused. Looks like there is another div class wrapping ones with right column but I can’t find it in the CSS .
3. Two questions on top navigation bar:
a. It only holds five items and if more than than, seems to overlay each other and becomes illegible.
b. The last category lost its background transparancy (maybe because of the overlapping items).
Thanks in advance for your help and creating a great modern theme.
1. Try to add following styling:
.box-add-to-cart a { color:#c6c6c6!important; }
2. My mistake, you can remove it:
#main-child { width:921px; margin:0 auto; margin-top:10px; }
Speaking about product detail , affiliate, log-in pages, you should put styling inside this selectors:
#account-account #main-child, #account-address_form #main-child, #account-address_list #main-child, #account-download #main-child, #account-edit #main-child, #account-forgotten #main-child, #account-login #main-child, #account-newsletter #main-child, #account-order #main-child, #account-order-info #main-child, #account-password #main-child, #account-register #main-child, #account-return #main-child, #account-return #main-child, #account-return #main-child, #account-reward #main-child, #account-transaction #main-child, #account-wishlist #main-child, #affiliate-login #main-child, #affiliate-register #main-child, #affiliate-forgotten #main-child, #affiliate-payment #main-child, #affiliate-edit #main-child, #affiliate-tracking #main-child, #affiliate-transaction #main-child, #affiliate-account #main-child, #product-product #main-child { background-image:url(../image/bg-main-child.png); background-position:645px 0px; background-repeat:repeat-y; }
3. Any screenshot could help me to understand what do you mean.
1. That fixed it! Do I need to keep the other box-add-to-cart? (BTW, I’ve assumed !important was a comment in the stylesheet until now and avoided changing those styles, lol)
2. Got it.
3. Please see below:
1. Yes, you should.
3. Under category settings you should set 1 column: http://i.imm.io/ccfg.pngFixed! Thanks a lot!
I can sleep well now….:)
never mind Diabolique…I have tried several times to download and the last time was succeed..by the way, I want to sell clothes in my country using my country currencies…but I noticed it is only 3 currencies and there is no other options…so, how could I write down my currency there then?
regards, Abigail
Hi!
You can use unlimited number of currencies. New currency you can add under: system -> localisation -> currencies
Hi, I just bought your theme, but the download always fails everytime I try, and when I open it with WInrar, it is said ‘there is no archives’..why is this happened? I have tried download manager ..and it also failed..can you help me?
Abigail