Show Posts


Messages - MLCS

Pages: [1] 2
1
Extension Support / UK Shipping
« on: August 30, 2012, 10:10:19 AM »
Bet youre getting fed up of answering me :P

Right, what the problem is this time is that I cannot get shipping working. I want it to change depending on the weight.
I have added UK to the Locations, with the Zones. I have enabled Royal Mail and Weight Based Shipping shipping but when I do a test for Checkout it just displays "Error: No Shipping options are available. Please contact us for assistance!"

Everything is set to Location: UK and it is all Enabled

I have PayPal set to Location: UK and that shows fine. But its just the shipping that doesnt.

I dont know where I am going wrong.

Please help me :'(

2
General Support / Re: Showing Length, Width, Height?
« on: August 30, 2012, 08:22:51 AM »
Showing the height (in product.tpl)
Code: [Select]
<?php if ( $product_info['height'] ) { ?>
            <tr>
                  <td><b><?php echo "Height:"?></b></td>
                  <td><?php echo $product_info['height'] . $product_info['length_class_name']; ?></td>
               </tr>
<?php ?>

Edit:
Found out where the error was
Just had to do:
Code: [Select]
<?php if($product_info['height']>'0'){?>

So thats that bit sorted

I still need to get the weight showing
Any help?

3
Support / Re: Default sort order?
« on: August 26, 2012, 02:47:25 PM »
Found out it wasnt that.
Had to change
Code: [Select]
if (isset($this->request->get['sort'])) {
list($sort,$order) = explode("-",$this->request->get['sort']);
} else {
$sort = 'p.sort_order';
}

to
Code: [Select]
if (isset($this->request->get['sort'])) {
list($sort,$order) = explode("-",$this->request->get['sort']);
} else {
$sort = 'pd.name';
}
in the same file.

Just so it helps you in the future :)

4
General Support / Re: Showing Length, Width, Height?
« on: August 26, 2012, 02:46:59 PM »
Yes,

You need to put conditional check around each display section in the same tpl file

Example:
Quote
<?php if ( $product_info['height'] ) { ?>
            <tr>
                  <td><b><?php echo "Height:"; ?></b></td>
                  <td><?php echo $product_info['height'] . "mm"; ?></td>
               </tr>
<?php } ?>

That didnt work. It still shows "Height: 0.00mm"

Also, displaying weight?!?!

5
Support / Re: Default sort order?
« on: August 21, 2012, 08:38:18 PM »
someone please help!

6
General Support / Re: Showing Length, Width, Height?
« on: August 21, 2012, 08:37:44 PM »
anybody???

7
General Support / Re: Showing Length, Width, Height?
« on: August 12, 2012, 12:20:01 PM »
Another related question

Is there any chance I can set it so if I dont include a value for Length, Width or Height that it doesnt show them on the Product Information?
Also. Showing Weight?

8
General Support / Re: new upgrade removed no_image.jpg link
« on: August 12, 2012, 08:48:55 AM »
This solved it! Thankyou! <3

Ive locked this for you :)

9
Support / Re: Default sort order?
« on: August 12, 2012, 08:47:33 AM »
Thats made it so it says the sorting is A-Z but it actually isnt. Its still default sorted by Model ID. Ive even removed "Default" from that drop-down and it still sorts it that way....

http://mylittlecrystalshop.com/ab/index.php?rt=product/category&path=4_25

see?

Edit: Seems its being ordered by when its uploaded  ???

10
General Support / Re: new upgrade removed no_image.jpg link
« on: August 05, 2012, 09:24:39 AM »
Ok. Let me explain it better.

If you do "Inspect Element" over a picture that is "non-existent" then it has directory "resources/image/::::"
If you do "Inspect Element" over a picture that is "existent" then it has directory "image/thumbnails/18/70/PUMICE002JPG-100108-120x120.JPG"

Your coding somewhere for locating the "no_image.jpg" has gone wrong

11
Support / Re: Default sort order?
« on: August 05, 2012, 09:16:51 AM »
When they go into categories. I want to change it so that its A-Z

12
General Support / Re: new upgrade removed no_image.jpg link
« on: July 31, 2012, 01:30:23 PM »
Before I delete items from the system/cache I just want to make sure that it all comes back....

EDIT: I deleted the whole cache manually...and still the images dont show...this is getting stupid now

If you want to see what im on about please just go here: http://mylittlecrystalshop.com/ab/index.php?rt=product/category&path=4_24


EDIT2: I have just checked the directory for where the image is meant to be grabbed from and it says resources/image/::::
There are no images in that folder, apart from going into resources/image/18/6a(6b/6c/6d/6e etc.)
I think its just the grabbing of the image thats gone wrong somewhere...

13
General Support / Re: Showing Length, Width, Height?
« on: July 31, 2012, 01:28:34 PM »
Thankyou so much! This has solved everything :)
Ill lock this for you :)

14
Support / Re: Default sort order?
« on: July 31, 2012, 01:21:35 PM »
Not really. Theres a lot of PHP in there and I cant see where I have to change.

15
Support / Re: Default sort order?
« on: July 30, 2012, 01:14:30 PM »
Im still needing help with this

Pages: [1] 2

Powered by SMFPacks Social Login Mod