I have a conflict of pin the wifi shield r3 with color lcd shield

The arduino I use is arduino uno r3
I have the wifi shield r3 arduino (
http://arduino.cc/en/Main/ArduinoWiFiShield ) and have the shield lcd spark fun ( https://www.sparkfun.com/products/9363 ).

These shields have conflict with pins 11,13.

After an investigation. If properly realized in librabria ColorLCDShield.h this code
//* Arduino Duemilanove bit numbers
#define LCD_RES 0 // D8
#define CS 1 // D9
#define DIO 3 // D11
#define SCK_PIN 5 // D13
//#define LCD_PORT PORTB

Just need to change the numbers and thus communicate with the shield on the other pin on arduino.
I've been watching ( https://www.sparkfun.com/datasheets/DevTools/Arduino/Color-LCD-Shield-v12.pdf )

The way I was thinking it would be on Arduino:
D11 pin 5 on the Arduino
D13 Pin 6 on the arduino
and shield kept the pins of the arduino pin 5 connected to pin 11 of the shield and the Arduino pin 6 connected to pin 13 of the shield

but I do not understand what is the correct number to put in the diagram digital pins 0-7 are identified with values ??1-8 but and digital pins 8-13 are also identified as being the same as 1-8

Someone can help me

paulovale:
The arduino I use is arduino uno r3
I have the wifi shield r3 arduino (
http://arduino.cc/en/Main/ArduinoWiFiShield ) and have the shield lcd spark fun ( https://www.sparkfun.com/products/9363 ).

These shields have conflict with pins 11,13.

Google Arduino SPI bus

Pins 10 > 13 comprise the SPI bus on a Uno.

If both shields are designed for use on SPI bus, which is very likely, they can share these pins. It is possible to have pin conflict with shields but you probably don't. If you do, there is usually more than one solution. I had this where the LCD shield usd pin 4, which is required by the Ethernet. In that case, I had a proto shield below the LCD with pin 4 removed and a jumper to pin 17.

can best explain your solution please

[quote
author=Nick_Pyner link=topic=161772.msg1209830#msg1209830 date=1366505478]

paulovale:
The arduino I use is arduino uno r3
I have the wifi shield r3 arduino (
http://arduino.cc/en/Main/ArduinoWiFiShield ) and have the shield lcd spark fun ( https://www.sparkfun.com/products/9363 ).

These shields have conflict with pins 11,13.

Google Arduino SPI bus

Pins 10 > 13 comprise the SPI bus on a Uno.

If both shields are designed for use on SPI bus, which is very likely, they can share these pins. It is possible to have pin conflict with shields but you probably don't. If you do, there is usually more than one solution. I had this where the LCD shield usd pin 4, which is required by the Ethernet. In that case, I had a proto shield below the LCD with pin 4 removed and a jumper to pin 17.
[/quote]