Zen Cart Logo
Forums / Addon Payment Modules / logo on moneybookers page.

logo on moneybookers page.

Locked

Views: 1,302

Results 1 to 4 of 4
This thread is locked. New replies are disabled.
5 Oct 2009, 2:11 PM
#1
timdwyer42 avatar

timdwyer42

Zen Follower

Join Date:
Apr 2009
Posts:
149
Plugin Contributions:
0

logo on moneybookers page.

Hello. I'm wondering how does one set their logo on the moneybookers payment page?

My logo that is displayed there at the moment is not hosted on a seecure server. So the padlock displays a red icon, which might make potential buyers feel unsecure,

Thanks.

5 Oct 2009, 7:11 PM
#2
timdwyer42 avatar

timdwyer42

Zen Follower

Join Date:
Apr 2009
Posts:
149
Plugin Contributions:
0

Re: logo on moneybookers page.

hello, I know a reasonable amount of html but not php

I'm using a module that I want to specify an image location instead of what the modulr uses.

This is the code in the module that controls the image location

 if ((ENABLE_SSL == 'true')) {
         $mb_logo_url = HTTPS_SERVER . DIR_WS_HTTPS_CATALOG . DIR_WS_TEMPLATE_IMAGES . HEADER_LOGO_IMAGE;     
      } else {
         $mb_logo_url = HTTP_SERVER . DIR_WS_CATALOG . DIR_WS_TEMPLATE_IMAGES . HEADER_LOGO_IMAGE;     
      }

If I just want to specify a particular location for the image would it be this that I'd change it to?

{
         $mb_logo_url = https://example.com/example.jpg;     
      } 

?

thanks.

5 Oct 2009, 9:04 PM
#3
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,513
Plugin Contributions:
176

Re: logo on moneybookers page.

timdwyer42:

If I just want to specify a particular location for the image would it be this that I'd change it to?

{
$mb_logo_url = https://example.com/example.jpg;
}

Looks logical, except you don't want the { and } in there if you're removing the "if" statement like that.
5 Oct 2009, 11:16 PM
#4
timdwyer42 avatar

timdwyer42

Zen Follower

Join Date:
Apr 2009
Posts:
149
Plugin Contributions:
0

Re: logo on moneybookers page.

thanks it worked when I removed those and added ' ' around the link.