I am looking for dev help or a plugin that will allow customers to purchase “credits” (like istockphoto) and spend them in the store. 1 credit would = $150.
Anyone know how can I achieve this within Woo or outside of Woo?
When a person signs into my WooCommerce store, I want to be able to show all the products in their account page and all of their purchases. For example: It will have a ghosted out thumbnail of each product and when the user purchases the item, it will appear in full color and link to an external product or page.
It is a bit hard to explain. Let me know if you need me to revise.
Hey, does anyone hbe a source to find out how to create a menu like the one on squarespace.com?
Every time I save my html file, close it and open it back up, Dreamweaver keeps adding > (greater than signs) at the end of the closing html tag. So every time I have to go and delete them I looks like this
</ html>>>>>>>>
Anyone know how to fix this? Thanks
Who else agrees that the sites on http://awwwards.com are impractical as hell, but still are awesome?
Uncaught TypeError: Cannot read property 'style' of null parallax.js:87 220Uncaught TypeError: Cannot read property 'style' of null parallax.js:79 295 Uncaught TypeError: Cannot read property 'style' of null parallax.js:79 moveDiv parallax.js:79 getMouseXY parallax.js:69 229Uncaught TypeError: Cannot read property 'style' of null parallax.js:79 17 Uncaught TypeError: Cannot read property 'style' of null parallax.js:79 moveDiv parallax.js:79 getMouseXY
Here is my parallax.js code
var verticalPosition;
var verticalPositionBefore;
var windowWidth = 960;
var windowHeight;
// Detect if the browser is IE or not.
// If it is not IE, we assume that the browser is NS.
var IE = document.all?true:false
// If NS -- that is, !IE -- then set up for mouse capture
if (!IE) document.captureEvents(Event.MOUSEMOVE)
// Set-up to use getMouseXY function onMouseMove
document.onmousemove = getMouseXY;
// Temporary variables to hold mouse x-y pos.s
var tempX = 0;
var tempY = 0;
var objectArray = new Array();
fillObjectArray();
positionDivs();
function fillObjectArray()
{
var ssplashesDiv = document.getElementById("ssplashes");
var ssplashesX = 312;
var ssplashesY = 33;
var ssplashesFactor = 0.05;
var ssplashesArray = new Array();
ssplashesArray.push(ssplashesDiv);
objectArray.push(ssplashesArray);
var msplashesDiv = document.getElementById("msplashes");
var msplashesX = 312;
var msplashesY = 33;
var msplashesFactor = 0.05;
var msplashesArray = new Array();
msplashesArray.push(msplashesDiv);
objectArray.push(msplashesArray);
var bsplashesDiv = document.getElementById("bsplashes");
var bsplashesX = 312;
var bsplashesY = 33;
var bsplashesFactor = 0.05;
var bsplashesArray = new Array();
bsplashesArray.push(bsplashesDiv);
objectArray.push(bsplashesArray);
}
// Main function to retrieve mouse x-y pos.s
function getMouseXY(e)
{
if (IE) { // grab the x-y pos.s if browser is IE
tempX = event.clientX + document.body.scrollLeft
tempY = event.clientY + document.body.scrollTop
} else { // grab the x-y pos.s if browser is NS
tempX = e.pageX
tempY = e.pageY
}
// catch possible negative values in NS4
if (tempX < 0){tempX = 0}
if (tempY < 0){tempY = 0}
moveDiv(tempX);
return true
}
function moveDiv(tempX)
{
for (var i=0;i<objectArray.length;i++)
{
var yourDivPositionX = objectArray[i][3] * (0.5 * windowWidth - tempX) + objectArray[i][1];
objectArray[i][0].style.left = yourDivPositionX + 'px';
}
}
function positionDivs()
{
for (var i=0;i<objectArray.length;i++)
{
objectArray[i][0].style.left = objectArray[i][1] + "px";
objectArray[i][0].style.top = objectArray[i][2] + "px";
}
}
The site is on my localhost so unfortunately I can’t provide a link.
Thanks
I ran into this shoe website. http://community.saucony.com/kinvara3/ Does anyone know where I can find a tutorial to that explains how to create this style of website? Full screen, parallax , etc.
Here’s an example. http://www.dtelepathy.com/ Look on the right side of the page (the plus sign). When you click it it comes out.
Anyone know what this would be called or where I can find a snippet somewhere?
I’m currently working on this website -> www.tcmuniversal.com.
I noticed that the thumbnails of nextgen gallery on the home page of the results are being squished small on ie8 . Anyone have an idea why and how I can fix this?
Also, the website is pulling up a default mobile version when I look at it on my iphone. How do I get rid of this completely?
Thanks
OriginalEXE said
Line where there is:$message = strip_tags(stripslashes($_POST['message']));change to:$message = strip_tags(stripslashes($_POST['message'] . ' Phone: ' . $_POST['phone']));
Thanks man this did it 
