Zen Cart Logo
Forums / All Other Contributions/Addons / Godaddy SSL Seal

Godaddy SSL Seal

Locked

Views: 3,354

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
31 Jul 2006, 9:52 AM
#1
makulit avatar

makulit

New Zenner

Join Date:
May 2006
Location:
Japan
Posts:
36
Plugin Contributions:
0

Godaddy SSL Seal

Hi. I installed this module and followed the instruction. However, am having problems.

The SECURE category is supposed to have 'go daddy' seal right below it. but for some reasons, the sub-menus from 'MORE INFORMATION' is showing in 'SECURE' as well.

Any idea how to fix the problem? I have been checking and checking but I cant find the answer. Please help!

Here is the image of my site's sidebox:

6 Aug 2006, 5:09 PM
#2
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Godaddy SSL Seal

Sounds like the sidebox with your Secure Seal is not resetting itself ... so it still has the previous box stored to its settings ...

The /includes/modules/whatever_sidebox.php

If it is using $more_information at the top, should have a setting of:

  unset($more_information);

To clear the previous settings ...

6 Aug 2006, 8:03 PM
#3
makulit avatar

makulit

New Zenner

Join Date:
May 2006
Location:
Japan
Posts:
36
Plugin Contributions:
0

Re: Godaddy SSL Seal

hi ajeh!

thanks for responding to my query.
however, the file godaddy.php @ includes/modules doesnt have the > $more_information line.

i have included this line on top of the code anyways

unset($more_information);

even after inclusion of above line on code, the problem is still there :no:
i have decided to remove godaddy ssl seal module and just entered the SSL Seal as a banner. and its working cool for now.

thanks very much ajeh!

6 Aug 2006, 8:15 PM
#4
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Godaddy SSL Seal

Find the $something[] in the sidebox ... that would match the $more_information[] in the more_information box ...

Use that for the unset($something);

10 Aug 2006, 3:55 PM
#5
makulit avatar

makulit

New Zenner

Join Date:
May 2006
Location:
Japan
Posts:
36
Plugin Contributions:
0

Re: Godaddy SSL Seal

Hi Ajeh!

Sorry for responding just now.
Followed your instruction and added the line 'unset($content)' at
includes\templates\template_default\sideboxes\tpl_godaddy.php

Works well! Thank you very much!

10 Aug 2006, 4:00 PM
#6
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Godaddy SSL Seal

You are most welcome ... glad that worked for you ...

Note the other way to prevent the issue is that when cloning ... pick your own key variables etc.

The way I do it is to use something like Beyond Compare from scootersoftware.com and open and compare for example the:

information.php
more_information.php

While different, you will see the patterns ...

Or, you can eye the differences by editting the two files ... or print them and highlight differences in the variables, constants, etc.

We try to be very, very pattern oriented in how variables, constants, functions, etc. are named ...

This usually helps in spotting errors, cloning code, etc. ... usually ... :cool: