Jump to content



Latest News: (loading..)

- - - - -

Adding Image Code in static page "shiping & return" etc


  • Please log in to reply
3 replies to this topic

#1 ONLINE   sepatufutsal

sepatufutsal

    dr.

  • Members
  • 2 posts
  • Real Name:sepatufutsal
  • Gender:Male
  • Location:Indonesia

Posted Today, 02:15 PM

Hi I am curious about add image comand in shiping & returns or custome static page in my web

this is my code


<?php
/*
  $Id$

  osCommerce, Open Source E-Commerce Solutions
  http://www.oscommerce.com

  Copyright © 2002 osCommerce

  Released under the GNU General Public License
*/

define('NAVBAR_TITLE', 'Testimonial');
define('HEADING_TITLE', 'Testimonial');
define('TEXT_INFORMATION', '<UL type="disc"><center><B>CELOTEH CLIENT TENTANG PRODIRECTSOCCER INDONESIA</B></center>');
echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'up.jpg', 'osCommerce') . '</a>';
tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class="single-product"')
?>

the result is in my attachment file.

all I want is the image show in the below of "CELOTEH CLIENT TENTANG PRODIRECTSOCCER INDONESIA"
so what is the corect code php one ?

thx for your attention  :)
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOKO ONLINE SEPATU FUTSAL, SEPATU BOLA, BASELAYER, GLOVE, JERSEY, JAKET, ACCESORIES, ORIGINAL TERLENGKAP JUGA MENERIMA JASA ORDER PRODIRECTSOCCER, STARTFOOTBALL, EBAY, AMAZON DAN SELURUH OL STORE DI SELURUH DUNIA.

COME VISIT TO http://www.prodirectsoccerindonesia.com
FOR THE GREAT DISKON EVERYDAY !

Attached Files


PRODIRECTSOCCER INDONESIA - THE BEST CHOISE FOR YOUR STYLE

TOKO ONLINE SEPATU FUTSAL, SEPATU BOLA, BASELAYER, GLOVE, JERSEY, JAKET, ACCESORIES, ORIGINAL TERLENGKAP
JUGA MENERIMA JASA ORDER PRODIRECTSOCCER, STARTFOOTBALL, EBAY, AMAZON DAN SELURUH OL STORE DI SELURUH DUNIA.

COME VISIT TO http://www.prodirectsoccerindonesia.com
FOR THE GREAT DISKON EVERYDAY !

#2 ONLINE   DunWeb

DunWeb
  • Members
  • 12,716 posts
  • Real Name:Chris
  • Gender:Male
  • Location:Ontario, Canada

Posted Today, 02:17 PM

@sepatufutsal

You are going to want to add the image to /testimonial.php file, not the language definition file.



Chris

Edited by DunWeb, Today, 02:18 PM.

:|: Was this post helpful ? Click the LIKE THIS button :|:

See my Profile (click here)  for more information and to contact me for professional osCommerce support that includes custom templates, add ons as well as cart leasing and support plans.

#3 ONLINE   multimixer

multimixer

    Lemons or Melons ?

  • Partner
  • 4,381 posts
  • Real Name:George Zarkadas
  • Gender:Male
  • Location:Greece

Posted Today, 02:30 PM

You need to add the image within TEXT_INFORMATION

Now you have (leaning out the product image that is wrong)
define('TEXT_INFORMATION', '<UL type="disc"><center><B>CELOTEH CLIENT TENTANG PRODIRECTSOCCER INDONESIA</B></center>');
echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'up.jpg', 'osCommerce') . '</a>';

Should be
define('TEXT_INFORMATION', '
<UL type="disc"><center><B>CELOTEH CLIENT TENTANG PRODIRECTSOCCER INDONESIA</B></center>
<br />
<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'up.jpg', 'osCommerce') . '</a>
');

Not sure what this strange markup is, why not use proper html tags and style in css, eg a <h2>...</h2>

Edited by multimixer, Today, 02:30 PM.


#4 ONLINE   sepatufutsal

sepatufutsal

    dr.

  • Members
  • 2 posts
  • Real Name:sepatufutsal
  • Gender:Male
  • Location:Indonesia

Posted Today, 02:37 PM

great, thx for your advice, I have made it
but because of I got this code copy paste from google,
I have problem to change the paramater for the code
1. My image is in folder \images\testimonial,
2. I want to change the image widht and height in precent scale

so what is the correct code for php newby like me

this is my google code >>>


echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'up.jpg', 'osCommerce') . '</a>';
tep_image(DIR_WS_IMAGES . $product_info['products_image'], addslashes($product_info['products_name']), SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT, 'class="single-product"')


thx
PRODIRECTSOCCER INDONESIA - THE BEST CHOISE FOR YOUR STYLE

TOKO ONLINE SEPATU FUTSAL, SEPATU BOLA, BASELAYER, GLOVE, JERSEY, JAKET, ACCESORIES, ORIGINAL TERLENGKAP
JUGA MENERIMA JASA ORDER PRODIRECTSOCCER, STARTFOOTBALL, EBAY, AMAZON DAN SELURUH OL STORE DI SELURUH DUNIA.

COME VISIT TO http://www.prodirectsoccerindonesia.com
FOR THE GREAT DISKON EVERYDAY !