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

Link Manager 3.0 Support Thread

Views: 486,685

Results 181 to 200 of 1,988
22 Mar 2007, 13:21
#181
clydejones avatar

clydejones

Deceased

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

Link Manager 3.0 Support Thread

I take it you are sending the e-mail from admin -> extras -> link contact.

I can't duplicate this. I receive only one e-mail message and no duplicates.

try uploading a fresh copy of this file.

[Attachment no longer available]

22 Mar 2007, 18:19
#182
tolefairy avatar

tolefairy

Zen Follower

Join Date:
Feb 2007
Location:
West Texas
Posts:
122
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

I'd be happy to. Its located in two places, right? Upload new file to both places?

22 Mar 2007, 18:37
#183
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

Just upload the file in the zip to your admin folder

23 Mar 2007, 01:08
#184
tolefairy avatar

tolefairy

Zen Follower

Join Date:
Feb 2007
Location:
West Texas
Posts:
122
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Thanks for clearing that up. Just wanted to be sure since that file name is located in two different folders.

Seems to be fine now. so far so good...........:thumbsup:

23 Mar 2007, 02:19
#185
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

Glad its working

24 Mar 2007, 00:53
#186
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

In Define page editor I have a page for both links and links_submit, but what I add to the pages in the define links editor isn't showing up. What code can I use to get them to show up on their corresponding pages.

24 Mar 2007, 02:02
#187
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

I apologize, I know it sounds like the same question from before, but I just want to figure our how to add text via Define Pages Editor instead of just using ftp and editing the file that way.

24 Mar 2007, 03:00
#188
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

First:

Run the following SQL statement from admin -> tools -> Install SQL Patches
cut-and-paste the code into the query field and press 'Send' instead

DELETE FROM configuration WHERE configuration_key = 'DEFINE_LINKS_STATUS';

INSERT INTO `configuration` VALUES (NULL, 'Define Links Status', 'DEFINE_LINKS_STATUS', '1', 'Enable the Defined Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF', 25, 999, NULL, now(), NULL, 'zen_cfg_select_option(array(''0'', ''1'', ''2'', ''3''),');

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

find the following:

<?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LINK_LISTING)); ?>

Just above this code add the following:

<?php if (DEFINE_LINKS_STATUS >= '1' and DEFINE_LINKS_STATUS <= '2') { ?>

<?php require($define_page); ?>

<?php } ?> 

Save the file and upload to your server

24 Mar 2007, 03:12
#189
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

I have been trying for a very long time to fix this and am still having problems. I just reinstalled the latest version in the downloads and my emails arrive like this:

$EMAIL_GREETING
$EMAIL_WELCOME
$EMAIL_MESSAGE_HTML
$EMAIL_CONTACT_OWNER
$EMAIL_CLOSURE

Will someone PUHLEEZE figger out what is going on here. It looks very unprofessional to get an email like this. Any answers out there? I have scoured the forums to get an answer and nothing works!

24 Mar 2007, 03:29
#190
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

PUHLEEZE, try this fix.

just unzip and upload the includes folder to your server.

[Attachment no longer available]

24 Mar 2007, 03:40
#191
doodlebuckets avatar

doodlebuckets

Totally Zenned

Join Date:
Jul 2005
Posts:
497
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

PUHLEEZE, try this fix.

just unzip and upload the includes folder to your server.

[Attachment no longer available]

You need to put a parenthesis in
'links_status' => $links_status);

It was missing in the zip file you posted.

It works better, but now I get this

$EMAIL_GREETING
$EMAIL_WELCOME
Dear Amy McCoy We welcome you to the Doodlebuckets Cloth Diaper Depot link exchange program. Your link has been successfully submitted at Doodlebuckets Cloth Diaper Depot. It will be added to our listing as soon as we approve it. You will receive an email about the status of your submittal. If you have not received it within the next 48 hours, please contact us before submitting your link again. For help with our link exchange program, please email the store-owner: [email protected]. Note: This email address was given to us during a link submittal. If you have a problem, please send an email to [email protected].
$EMAIL_CONTACT_OWNER
$EMAIL_CLOSURE

Just like that with no breaks in the paragraph. Almost there.... :)

Amy

24 Mar 2007, 04:13
#192
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Where do I put:

<?php if (DEFINE_LINKS_STATUS >= '1' and DEFINE_LINKS_STATUS <= '2') { ?> <?php require($define_page); ?> <?php } ?>

Either the code doesn't show up or I get a parsing error when I add it:

<table width="100%" border="0" cellspacing="2" cellpadding="2" class="centerColumn"> <tr> <td></td> </tr> <tr> <td class="pageHeading" colspan="2"><h1><?php echo HEADING_TITLE; ?></h1></td> </tr> <tr> ** <td><?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LINK_LISTING)); ?></td>** </tr> <tr> <td><?php echo zen_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr>
24 Mar 2007, 04:29
#193
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

I'm not sure which verison of the mod you are using but the version in the downloads section contains NO tables.

but in any case

<td> <?php if (DEFINE_LINKS_STATUS >= '1' and DEFINE_LINKS_STATUS <= '2') { ?> <?php require($define_page); ?> <?php } ?> <?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LINK_LISTING)); ?> </td>
24 Mar 2007, 14:52
#194
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

Try this Fix for the e-mail problem.

unzip the file remember to rename the YOUR_TEMPLATE folder to match the name of your custom template

[Attachment no longer available]

24 Mar 2007, 22:43
#195
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

I'm not sure which verison of the mod you are using but the version in the downloads section contains NO tables.

but in any case

<td> <?php if (DEFINE_LINKS_STATUS >= '1' and DEFINE_LINKS_STATUS <= '2') { ?> <?php require($define_page); ?> <?php } ?> <?php include(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LINK_LISTING)); ?> </td>

What I did was replace the tpl_links_default.php for links 3.0.2 with an earlier version because I couldn't get the categories to align properly. What I ended up doing was
cutting and pasting links.css to my stylesheet.css file now I am using the version
latest version of links manager without tables. I followed your instructions, but the text is still not showing up.

25 Mar 2007, 01:34
#196
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

Unzip the attached file

rename the YOUR_TEMPLATE folder to match your custom template name

upload to your server

[Attachment no longer available]

25 Mar 2007, 04:04
#197
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

It didn't work, it's getting late I will pick this up again tomorrow.

25 Mar 2007, 20:50
#198
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

Unzip the attached file

rename the YOUR_TEMPLATE folder to match your custom template name

upload to your server

[Attachment no longer available]

I wanted to mention that I already received attachment in a previous thread.

28 Mar 2007, 00:03
#199
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

Join Date:
Apr 2005
Posts:
853
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

When I added an 8th category, the category ended up blank, also it didn't show up on the links page. How can I fix this?

28 Mar 2007, 01:11
#200
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

You should be able to add unlimited categories from

admin -> extras -> link categories

Don't forget to enable the category after adding it.