
Originally Posted by
BigAl49
That is the link information that is listed on PayPal for that image.
I want customers to be able to verify that I am a Verified Seller.
Have you looked at the "paypal verified logo" sidebox available in the downloads section.
I'm suggesting that because you'll need to break down the information you have so it will conform to the way the logo sidebox is set up.
in other words it needs to go into the following defines from logo sidebox:
Code:
define('BOX_HEADING_LOGO_SIDEBOX', '');
//Logo number 1
define('LOGO_SIDEBOX_IMAGE_WIDTH', '125');
define('LOGO_SIDEBOX_IMAGE_HEIGHT', '125');
define('LOGO_SIDEBOX_IMAGE', 'logo_test.jpg');
define('LOGO_SIDEBOX_IMAGE_TEXT', 'My Logo');
define('LOGO_IMAGE', zen_image($template->get_template_dir(LOGO_SIDEBOX_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . LOGO_SIDEBOX_IMAGE, LOGO_SIDEBOX_IMAGE_TEXT, LOGO_SIDEBOX_IMAGE_WIDTH, LOGO_SIDEBOX_IMAGE_HEIGHT));
//this is optional if you want to use the logo as a link
//add your link information to the define statement below
//example
//define('LOGO_SIDEBOX_LINK', 'http://your_link.com/" rel="external" target="_blank"');
define('LOGO_SIDEBOX_LINK', '');
//DO NOT edit below this line
if (LOGO_SIDEBOX_LINK == '') {
define('LOGO_IMAGES', LOGO_IMAGE);
}else {
define('LOGO_IMAGES', '<a href="' . LOGO_SIDEBOX_LINK . '>' . LOGO_IMAGE . '</a>');
}
Bookmarks