Zen Cart Logo
Forums / Addon Sideboxes / Link Manager 3.0 Support Thread

Link Manager 3.0 Support Thread

Views: 486,687

Results 261 to 280 of 1,988
15 Apr 2007, 16:49
#261
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Link Manager 3.0 Support Thread

Hello, Clyde:

Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

Thank you for your help!

15 Apr 2007, 18:15
#262
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

lina0962:

Hello, Clyde:

Thanks for your promt answer.

Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

Thank you for your help!

go to your admin -> configuration -> links manager

set the registered customers option to false

15 Apr 2007, 18:24
#263
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

lina0962:

Hello, Clyde:

Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

Thank you for your help!

I think this is probably a stylesheet issue.

open links_submit.css find this declaration

legend {font-family:verdana, arial, helvetica, sans-serif; font-size:1.1em; color: #000; font-weight:bold; margin-bottom:5px; padding:3px; background:#fff url(../images/form.png) repeat-x center left;}

change the highlighted portion as indicated

15 Apr 2007, 18:28
#264
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

lina0962:

Hello, Clyde:

Thank you for your answer for "submit links" to "log in" page question. I fixed it already.

Now on "Submit links" page, all titles like "Submit your link", "website detail", "Your contact information" are missing.... how to get them back?

Also on "View all links" page, the "submit link" button is missing. But I did carefully uploaded all the files to my server.....

Thank you for your help!

Find the following line of code (there are two of them)

<div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>

and replace them with the following

<div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div>
15 Apr 2007, 19:08
#265
lina0962 avatar

lina0962

Zen Follower

Join Date:
Jun 2006
Posts:
403
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

Find the following line of code (there are two of them)

<div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div> ``` > > and replace them with the following > > ```php <div class="forward"><?php echo '<a href="' . zen_href_link(FILENAME_LINKS_SUBMIT, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_SUBMIT_LINK, BUTTON_SUBMIT_LINK_ALT) . '</a>'; ?></div> ```

Sorry for keep bugging you and asking you questions.....

One last question: where is the codes located? which file? Thank you very much!:-)

By the way, I like your link manager very much. Great constribution!

Lina

15 Apr 2007, 19:36
#266
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

lina0962:

Sorry for keep bugging you and asking you questions.....

One last question: where is the codes located? which file? Thank you very much!:-)

By the way, I like your link manager very much. Great constribution!

Lina

Open includes/templates/YOUR_TEMPLATE/templates/tpl_links_default.php

16 Apr 2007, 02:48
#267
mb1 avatar

mb1

Totally Zenned

Join Date:
Jun 2006
Posts:
565
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

i'm running version 2 and i did a crazy hackjob on it, to get rid on the images and description, now it seems to work fine on FF but not on IE6. any thing i should do to the code to tweak it a bit more.

http://www.gorillagear.ca/index.php?main_page=links

16 Apr 2007, 03:23
#268
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

MB1:

i'm running version 2 and i did a crazy hackjob on it, to get rid on the images and description, now it seems to work fine on FF but not on IE6. any thing i should do to the code to tweak it a bit more.

http://www.gorillagear.ca/index.php?main_page=links

Based on your description, I have no idea what kind of "hackjob" you did so I'm afraid I can't help.

16 Apr 2007, 04:18
#269
mb1 avatar

mb1

Totally Zenned

Join Date:
Jun 2006
Posts:
565
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

i went into one tpl_links_default and took out the code in red

// create column list
    $define_list = array('LINK_LIST_IMAGE' => LINK_LIST_IMAGE,
                         'LINK_LIST_DESCRIPTION' => LINK_LIST_DESCRIPTION, 
                         'LINK_LIST_COUNT' => LINK_LIST_COUNT);
 $select_column_list .= 'l.links_image_url, ld.links_title, ';
          break;
        case 'LINK_LIST_DESCRIPTION':
          $select_column_list .= 'ld.links_description, ';
          break;

took off some code to the submit file so people wouldn't post an image and description now i have to pull some code on the help file also. anyways it doesn't seem to line up great anymore inside the borders and in IE the click count seems off

16 Apr 2007, 05:17
#270
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

MB1:

i went into one tpl_links_default and took out the code in red

// create column list
$define_list = array('LINK_LIST_IMAGE' => LINK_LIST_IMAGE,
'LINK_LIST_DESCRIPTION' => LINK_LIST_DESCRIPTION,
'LINK_LIST_COUNT' => LINK_LIST_COUNT);

> 
> ```
 $select_column_list .= 'l.links_image_url, ld.links_title, ';
          break;
        case 'LINK_LIST_DESCRIPTION':
          $select_column_list .= 'ld.links_description, ';
          break;

took off some code to the submit file so people wouldn't post an image and description now i have to pull some code on the help file also. anyways it doesn't seem to line up great anymore inside the borders and in IE the click count seems off

try adding this declaration to your stylesheet.css

.linkListing-data{width:33%;font-size:1em;}

19 Apr 2007, 19:43
#271
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde,

Thank you so much for the Links Manager contribution! I have uploaded the admin and includes directories to my host server, but I wasn't exactly sure where to upload it to. Does it just go to the root directory, or to public_html > includes > templates > my template directory?

Also, when I go to Admin>Configuration, the "Links Manager" shows up there. But when I go to Admin>Tools>Layout Boxes Controller, there isn't a box for the Links.

I'm sure I have left out some vital step, or put the files in the wrong place. Any help would be very much appreciated! :D

Sandy

19 Apr 2007, 20:29
#272
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

ssolis5788:

Hi Clyde,

Thank you so much for the Links Manager contribution! I have uploaded the admin and includes directories to my host server, but I wasn't exactly sure where to upload it to. Does it just go to the root directory, or to public_html > includes > templates > my template directory?

If your store is in your root directory then just upload them to the root.

If your store is in another directory then upload them to that directory.

Also, when I go to Admin>Configuration, the "Links Manager" shows up there. But when I go to Admin>Tools>Layout Boxes Controller, there isn't a box for the Links.

Make sure you've changed the YOUR_TEMPLATE folder(s) to match the name of your custom template folder.

19 Apr 2007, 21:00
#273
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

If your store is in your root directory then just upload them to the root.

Make sure you've changed the YOUR_TEMPLATE folder(s) to match the name of your custom template folder.

Everything for my store is located in various folders under the public_html, so that's were I put the files.

I did change all YOUR_TEMPLATE folders to match my custom name, but it still does not show up in the Layout Boxes Controller.

I also do not see "Links" under Admin> Extras.

When I copied and pasted the text from the "Install_Links_Manager.sql" into the Tools>Install SQL Patches area, I get the following message:

29 statements processed.
ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.

20 Apr 2007, 00:48
#274
pipc avatar

pipc

New Zenner

Join Date:
Apr 2007
Location:
Dereham
Posts:
15
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

ssolis5788:

Everything for my store is located in various folders under the public_html, so that's were I put the files.

I did change all YOUR_TEMPLATE folders to match my custom name, but it still does not show up in the Layout Boxes Controller.

I also do not see "Links" under Admin> Extras.

When I copied and pasted the text from the "Install_Links_Manager.sql" into the Tools>Install SQL Patches area, I get the following message:

29 statements processed.
ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.
I also have a similar problem...
Having looked everwhere for ths I was so pleased you had created it...however I do not have a links box on my site, having followed your instructions, I also have the error above with the sql patch...awaiting you help,
Kind regards, Mark

20 Apr 2007, 01:23
#275
pipc avatar

pipc

New Zenner

Join Date:
Apr 2007
Location:
Dereham
Posts:
15
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi,
Just to add, I have been round all the folders three times now, checking they all say the correct folder name, no joy at all, sql still says above, no link box in colom boxes or on my site??

20 Apr 2007, 01:47
#276
pipc avatar

pipc

New Zenner

Join Date:
Apr 2007
Location:
Dereham
Posts:
15
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Wheyyyy, I am indeed a himbo.
Ok, Just checked all the folders again....joy oh joy i found a couple I had misses, I looked in MODULES/SIDEBOXES esp and lo and behold, there were two YOUR_TEMPLATE boxes in both new install and update.
Many thanks for this important add on,
Kind regards, Mark
Ps I still have the above sql message, but the link box etc exist

20 Apr 2007, 02:39
#277
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

http://s14.securedview.com/srscustom...cons/error.gif ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
http://s14.securedview.com/srscustom...cons/error.gif ERROR: Cannot insert configuration_key "DEFINE_LINKS_STATUS" because it already exists
http://s14.securedview.com/srscustom...ns/warning.gif Note: 1 statements ignored. See "upgrade_exceptions" table for additional details.

This means that this particular information is already in the database table.

20 Apr 2007, 02:53
#278
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

[QUOTE=ssolis5788;361765]...

I also do not see "Links" under Admin> Extras.

[QUOTE]

make sure you've uploaded ALL the files in the admin folder.

admin/links_contact.php
admin/links_categories.php
admin/links.php

admin/includes/boxes/extra_boxes/links_extra_dhtml.php
admin/includes/extra_datafiles/links_manager.php
admin/functions/extra_functions/links_manager.php
admin/includes/languages/english/links_contact.php
admin/includes/languages/english/links_categories.php
admin/includes/languages/english/links.php
admin/includes/languages/extra_definitions/links.php

20 Apr 2007, 03:39
#279
ssolis5788 avatar

ssolis5788

New Zenner

Join Date:
Feb 2007
Location:
Santa Clara, CA
Posts:
98
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

[quote=clydejones;361892][quote=ssolis5788;361765]...

I also do not see "Links" under Admin> Extras.

make sure you've uploaded ALL the files in the admin folder.

admin/links_contact.php
admin/links_categories.php
admin/links.php

admin/includes/boxes/extra_boxes/links_extra_dhtml.php
admin/includes/extra_datafiles/links_manager.php
admin/functions/extra_functions/links_manager.php
admin/includes/languages/english/links_contact.php
admin/includes/languages/english/links_categories.php
admin/includes/languages/english/links.php
admin/includes/languages/extra_definitions/links.php

Yep, all those files are present...

20 Apr 2007, 04:32
#280
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Link Manager 3.0 Support Thread

[QUOTE=ssolis5788;361902][quote=clydejones;361892]> ssolis5788:

...

I also do not see "Links" under Admin> Extras.

Yep, all those files are present...

All those files control whether the following options show up in:

admin -> extras

links
link categories
links contact

If the files are are there then those options should be there also