spunkypup Posted November 3, 2008 Share Posted November 3, 2008 hey guys, I want to add an image MIDWAY through my Welcome Pack Text, heres the current scripting I've got: ===================================== <?php // for information regarding when work was done, see the comment AFTER the area I have worked on. It will show details on what I have done, and what date. define('TEXT_MAIN', 'Welcome to *** *** *** , we may be new, but we aim to have the widest range of parts & accessories <br><br>Ipso Demin Dorum Esta Vista Viche. <br>To start shopping, start by click on the catagories to the left. <br> <b>But what makes us so different to everyone else?<b\> '); //edited main text - 2nd November 2008 define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s'); define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products'); define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected'); if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', 'Let\'s See What We Have Here'); define('TABLE_HEADING_IMAGE', ''); define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product Name'); define('TABLE_HEADING_MANUFACTURER', 'Manufacturer'); define('TABLE_HEADING_QUANTITY', 'Quantity'); define('TABLE_HEADING_PRICE', 'Price'); define('TABLE_HEADING_WEIGHT', 'Weight'); define('TABLE_HEADING_BUY_NOW', 'Buy Now'); define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.'); define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.'); define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: '); define('TEXT_SHOW', '<b>Show:</b>'); define('TEXT_BUY', 'Buy 1 \''); define('TEXT_NOW', '\' now'); define('TEXT_ALL_CATEGORIES', 'All Categories'); define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers'); } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'Welcome to PUG206PARTS '); //added Header Title - 02/11/08 } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> =========================================== I know it seems an easy and obvious question, but for some reason I'm stumped! I can't get it to work. Any suggestions or help???? Alex T Link to comment Share on other sites More sharing options...
easytech Posted November 3, 2008 Share Posted November 3, 2008 hey guys, I want to add an image MIDWAY through my Welcome Pack Text, heres the current scripting I've got: ===================================== <?php // for information regarding when work was done, see the comment AFTER the area I have worked on. It will show details on what I have done, and what date. define('TEXT_MAIN', 'Welcome to *** *** *** , we may be new, but we aim to have the widest range of parts & accessories <br><br>Ipso Demin Dorum Esta Vista Viche. <br>To start shopping, start by click on the catagories to the left. <br> <b>But what makes us so different to everyone else?<b\> '); //edited main text - 2nd November 2008 define('TABLE_HEADING_NEW_PRODUCTS', 'New Products For %s'); define('TABLE_HEADING_UPCOMING_PRODUCTS', 'Upcoming Products'); define('TABLE_HEADING_DATE_EXPECTED', 'Date Expected'); if ( ($category_depth == 'products') || (isset($HTTP_GET_VARS['manufacturers_id'])) ) { define('HEADING_TITLE', 'Let\'s See What We Have Here'); define('TABLE_HEADING_IMAGE', ''); define('TABLE_HEADING_MODEL', 'Model'); define('TABLE_HEADING_PRODUCTS', 'Product Name'); define('TABLE_HEADING_MANUFACTURER', 'Manufacturer'); define('TABLE_HEADING_QUANTITY', 'Quantity'); define('TABLE_HEADING_PRICE', 'Price'); define('TABLE_HEADING_WEIGHT', 'Weight'); define('TABLE_HEADING_BUY_NOW', 'Buy Now'); define('TEXT_NO_PRODUCTS', 'There are no products to list in this category.'); define('TEXT_NO_PRODUCTS2', 'There is no product available from this manufacturer.'); define('TEXT_NUMBER_OF_PRODUCTS', 'Number of Products: '); define('TEXT_SHOW', '<b>Show:</b>'); define('TEXT_BUY', 'Buy 1 \''); define('TEXT_NOW', '\' now'); define('TEXT_ALL_CATEGORIES', 'All Categories'); define('TEXT_ALL_MANUFACTURERS', 'All Manufacturers'); } elseif ($category_depth == 'top') { define('HEADING_TITLE', 'Welcome to PUG206PARTS '); //added Header Title - 02/11/08 } elseif ($category_depth == 'nested') { define('HEADING_TITLE', 'Categories'); } ?> =========================================== I know it seems an easy and obvious question, but for some reason I'm stumped! I can't get it to work. Any suggestions or help???? Alex T Have you tried the following? define('TEXT_MAIN', 'Welcome to <img src="images/yourpicture.gif"> , we may be new, but we aim to have the widest range of parts & accessories <br><br>Ipso Demin Dorum Esta Vista Viche. <br>To start shopping, start by click on the catagories to the left. <br> P.S I also have a new online store, and have thought to myself to leave out statements such as "we may be new, but" or in my case "aim to provide you the cheapest" I think we should allow ourselves a little credibility by using statements such as "We are a new online store and aim to.." or ""Storename provides you the widest range of parts & accesories etc etc" I find soft statement's can often be taken into the wrong context, where people might not see your store as credible and confident. Of course there may be some circumstances where you may want to stress the new store thing for example if you had a new invention or never seen before product... Just passing on some ideas spunky :) Link to comment Share on other sites More sharing options...
spunkypup Posted November 5, 2008 Author Share Posted November 5, 2008 UPDATE : Done it!! Woooo hooooo! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.