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

Link Manager 3.0 Support Thread

Views: 486,750

Results 681 to 700 of 1,988
2 Dec 2007, 6:03 AM
#681
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

ctcentralinfo:

I am not sure it has been about a year since I upgraded your version.
The newest version in the downloads section will provide the functionality you need.

3 Dec 2007, 3:24 AM
#682
justinhemp avatar

justinhemp

New Zenner

Join Date:
Nov 2007
Posts:
4
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Thank-You for your responce.

4 Dec 2007, 4:39 AM
#683
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

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

Re: Link Manager 3.0 Support Thread

clydejones:

The newest version in the downloads section will provide the functionality you need.

I installed the newest version but I still get the hyper link title under the link banner:

http://www.cooltechcentral.com/index.php?lPath=11&main_page=links

4 Dec 2007, 7:05 AM
#684
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

ctcentralinfo:

I installed the newest version but I still get the hyper link title under the link banner:

http://www.cooltechcentral.com/index.php?lPath=11&main_page=links

open admin -> configuration -> links manager -> Display Link Image & Title and set to 0.

4 Dec 2007, 2:57 PM
#685
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

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

Re: Link Manager 3.0 Support Thread

I don't see Display Link Image & Title in links manager and I downloaded the new version you pointed out.

4 Dec 2007, 3:22 PM
#686
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

ctcentralinfo:

I don't see Display Link Image & Title in links manager and I downloaded the new version you pointed out.

copy the following sql statement and paste into admin -> tools -> install sql patches
then click the send button.

SET @configuration_group_id=0;
SELECT @configuration_group_id:=configuration_group_id 
FROM configuration_group
WHERE configuration_group_title= 'Links Manager'
LIMIT 1;

DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
DELETE FROM configuration WHERE configuration_key = 'DEFINE_LINKS_STATUS';
DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;

INSERT INTO configuration_group VALUES (NULL, 'Links Manager', 'Links Display Settings', '1', '1');
SET @configuration_group_id=last_insert_id();
UPDATE configuration_group SET sort_order = @configuration_group_id WHERE configuration_group_id = @configuration_group_id;

INSERT INTO `configuration` VALUES (NULL, 'Links Box - Display View All Links', 'BOX_DISPLAY_VIEW_ALL_LINKS', 'true', 'Display View All Links on Links Sidebox', @configuration_group_id, 1, NULL, now(), NULL, 'zen_cfg_select_option(array(NULL, ''true'', ''false''), '), (NULL, 'Links Box - Display Submit Link', 'BOX_DISPLAY_SUBMIT_LINK', 'true', 'Display Submit Link on Sidebox', @configuration_group_id, 2, NULL, now(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '), (NULL, 'Display Description As Link', 'DISPLAY_LINK_DESCRIPTION_AS_LINK', 'false', 'Display the links description as a link', @configuration_group_id, 3, NULL, now(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '), (NULL, 'Enable Click Count', 'ENABLE_LINKS_COUNT', 'true', 'Enable links click count.', @configuration_group_id, 4, NULL, now(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '), (NULL, 'Submit Link - Require Reciprocal Page', 'SUBMIT_LINK_REQUIRE_RECIPROCAL', 'true', 'Require Reciprocal Page on Links Submit', @configuration_group_id, 5, NULL, now(), NULL, 'zen_cfg_select_option(array(''true'', ''false''), '), (NULL, 'Display Link Title', 'LINK_LIST_IMAGE', '1', 'Do you want to display the Link Title?', @configuration_group_id, 6, NULL, now(), NULL, NULL), (NULL, 'Display Link Description', 'LINK_LIST_DESCRIPTION', '2', 'Do you want to display the Link Description?', @configuration_group_id, 7, NULL, now(), NULL, NULL), (NULL, 'Display Link Click Count', 'LINK_LIST_COUNT', '3', 'Do you want to display the Link Click Count?', @configuration_group_id, 8, NULL, now(), NULL, NULL), (NULL, 'Link Title Minimum Length', 'ENTRY_LINKS_TITLE_MIN_LENGTH', '2', 'Minimum length of link title.', @configuration_group_id, 9, NULL, now(), NULL, NULL), (NULL, 'Link URL Minimum Length', 'ENTRY_LINKS_URL_MIN_LENGTH', '10', 'Minimum length of link URL.', @configuration_group_id, 10, NULL, now(), NULL, NULL), (NULL, 'Link Description Minimum Length', 'ENTRY_LINKS_DESCRIPTION_MIN_LENGTH', '10', 'Minimum length of link description.', @configuration_group_id, 11, NULL, now(), NULL, NULL), (NULL, 'Link Contact Name Minimum Length', 'ENTRY_LINKS_CONTACT_NAME_MIN_LENGTH', '2', 'Minimum length of link contact name.', @configuration_group_id, 12, NULL, now(), NULL, NULL), (NULL, 'Links Check Phrase', 'LINKS_CHECK_PHRASE', 'yoursitename', 'Phrase to look for, when you perform a link check.', @configuration_group_id, 13, NULL, now(), NULL, NULL), (NULL, 'Links List - Scroll Box Size/Style', 'MAX_LINKS_LIST', '3', 'Number of link category names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list', @configuration_group_id, 14, NULL, now(), NULL, NULL), (NULL, 'Length of Link Categories Name', 'MAX_DISPLAY_LINK_NAME_LEN', '20', 'Used in links box; maximum length of link category name to display. Longer names will be truncated.', @configuration_group_id, 15, NULL, now(), NULL, NULL), (NULL, 'Select Links Sort Order', 'DEFINE_SORT_ORDER', '1', 'Define the sort order of the links<br />1= Sort by Title<br />2= Sort by Date (Newest to Oldest)<br />3= Sort by number of clicks (highest to lowest)', @configuration_group_id, 16, NULL, now(), NULL, 'zen_cfg_select_option(array(''1'', ''2'', ''3''),'), (NULL, 'Number of Link Categories Per Row - Default is 3', 'MAX_LINK_CATEGORIES_ROW', '3', 'Used to display Link Categories per row.<br />Default is 3', @configuration_group_id, 17, NULL, now(), NULL, NULL),  (NULL, 'Image - Link Category Height', 'LINK_CATEGORY_IMAGE_HEIGHT', '80', 'The pixel width of Link Category images', @configuration_group_id, 18, NULL, now(), NULL, NULL), (NULL, 'Image - Link Category Width', 'LINK_CATEGORY_IMAGE_WIDTH', '80', 'The pixel width of Link Category images', @configuration_group_id, 19, NULL, now(), NULL, NULL), (NULL, 'Image - Link Image Width', 'LINK_IMAGE_WIDTH', '150', 'The pixel width of Link images', @configuration_group_id, 20, NULL, now(), NULL, NULL), (NULL, 'Image - Link Image Height', 'LINK_IMAGE_HEIGHT', '30', 'The pixel height of Link images', @configuration_group_id, 21, NULL, now(), NULL, NULL), (NULL,'Only registered customers may submit a Link', 'REGISTERED_LINK', 'false', 'Only registered customers may submit a Link', @configuration_group_id, 22, NULL, now(), NULL, 'zen_cfg_select_option(array(''true'', ''false''),');

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''),');

INSERT INTO `configuration` VALUES (NULL, 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, NULL, now(), NULL, NULL);
INSERT INTO `configuration` VALUES (NULL, 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, NULL, now(), NULL, NULL);
INSERT INTO `configuration` VALUES (NULL, 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, NULL, now(), NULL, NULL);
INSERT INTO `configuration` VALUES (NULL, 'Image Handler Version', 'IH_VERSION', '2.0', 'This is used by image handler to check if the database is up to date with uploaded image handler files.', 0, 100, NULL, now(), NULL, 'zen_cfg_textarea_small(');
4 Dec 2007, 6:55 PM
#687
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

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

Re: Link Manager 3.0 Support Thread

This is what I have in configure/links manager after ran the SQL pack you sent me:

Links Box - Display View All Links
Links Box - Display Submit Link
Display Description As Link
Enable Click Count
Submit Link - Require Reciprocal Page
Display Link Title
Display Link Description
Display Link Click Count
Link Title Minimum Length
Link URL Minimum Length
Link Description Minimum Length
Link Contact Name Minimum Length
Links Check Phrase
Links List - Scroll Box Size/Style
Length of Link Categories Name
Select Links Sort Order
Number of Link Categories Per Row
Image - Link Category Height
Image - Link Category Width
Image - Link Image Width
Image - Link Image Height
Only registered customers may submit a Link
I still don't see Display Link Image & Title

4 Dec 2007, 7:07 PM
#688
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

ctcentralinfo:

This is what I have in configure/links manager after ran the SQL pack you sent me:

I still don't see Display Link Image & Title

set "display Link title" to 0

4 Dec 2007, 7:48 PM
#689
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

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

Re: Link Manager 3.0 Support Thread

Didn't work, it just removed both the hyperlink title and the image banner.

4 Dec 2007, 11:07 PM
#690
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

ctcentralinfo:

Didn't work, it just removed both the hyperlink title and the image banner.

try this

unzip the file - change the YOUR_TEMPLATE folders to match the name of your custom template

upload the entire includes folder to your server

[Attachment no longer available]

5 Dec 2007, 5:12 AM
#691
ctcentralinfo avatar

ctcentralinfo

Totally Zenned

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

Re: Link Manager 3.0 Support Thread

clydejones:

try this

unzip the file - change the YOUR_TEMPLATE folders to match the name of your custom template

upload the entire includes folder to your server

[Attachment no longer available]

Thanks that did the trick, but now Click Count doesn't show the number of times a link is clicked on.

5 Dec 2007, 6:53 AM
#692
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

ctcentralinfo:

Thanks that did the trick, but now Click Count doesn't show the number of times a link is clicked on.

That is because the links are no longer redirected and are direct links. (this was a frequent request)

5 Dec 2007, 8:06 AM
#693
bigjoed avatar

bigjoed

Zen Follower

Join Date:
Apr 2006
Location:
Fort Bragg, North Carolina
Posts:
152
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi everybody,

I just uploaded a link manager addon, it adds a Greybox effect to your reciprocal links therfore keeping your customers in your site. "GreyBox 2 for links manager".

Hope you like it.

5 Dec 2007, 3:51 PM
#694
francocauter avatar

francocauter

Zen Follower

Join Date:
Jun 2007
Location:
Milton Keynes UK
Posts:
153
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

Hi Clyde
Can I ask you? I am getting the directories in a vertical line on the left, how can I correct that?
Also the images seam to be not re dimensioned properly, is there anything to be done? Can you have a look?
http://www.livemk.co.uk/index.php?main_page=links
Thanks
Franco

5 Dec 2007, 5:10 PM
#695
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

francocauter:

Hi Clyde
Can I ask you? I am getting the directories in a vertical line on the left, how can I correct that?
Also the images seam to be not re dimensioned properly, is there anything to be done? Can you have a look?
http://www.livemk.co.uk/index.php?main_page=links
Thanks
Franco

make sure you have the links manager CSS files located in includes/templates/YOUR_TEMPLATE/css/

links.css
links_submit.css

5 Dec 2007, 9:55 PM
#696
francocauter avatar

francocauter

Zen Follower

Join Date:
Jun 2007
Location:
Milton Keynes UK
Posts:
153
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

make sure you have the links manager CSS files located in includes/templates/YOUR_TEMPLATE/css/

links.css
links_submit.css

Thanks Clyde I dont know how that happened but that was it.
The images are still a bit smudged.
How can I resize the links box so it stays within the box border?
Thanks
Regards
Franco

5 Dec 2007, 11:53 PM
#697
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

francocauter:

Thanks Clyde I dont know how that happened but that was it.
The images are still a bit smudged.
How can I resize the links box so it stays within the box border?
Thanks
Regards
Franco

open links css and make the changes indicated by the highlighted portions.

.linkstext{margin: 0;padding: 10px 0;float:left;width:30%;text-align:center;font-size:1em;}

6 Dec 2007, 9:19 AM
#698
francocauter avatar

francocauter

Zen Follower

Join Date:
Jun 2007
Location:
Milton Keynes UK
Posts:
153
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

clydejones:

open links css and make the changes indicated by the highlighted portions.

.linkstext{margin: 0;padding: 10px 0;float:left;width:30%;text-align:center;font-size:1em;}

Are sure is the right line? It doesn't make any difference.

6 Dec 2007, 9:39 AM
#699
francocauter avatar

francocauter

Zen Follower

Join Date:
Jun 2007
Location:
Milton Keynes UK
Posts:
153
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

francocauter:

Are sure is the right line? It doesn't make any difference.

Found it.
I changed style="width 100%" to 98% (line 26)
Thanks

3 Jan 2008, 1:12 AM
#700
veronika7747 avatar

veronika7747

Zen Follower

Join Date:
Nov 2007
Posts:
270
Plugin Contributions:
0

Re: Link Manager 3.0 Support Thread

I am just starting with this mod today.. and have couple (well more than couple) of questions:

A. When I open link submit page, I get this:
ENTRY_LINKS_IMAGE ENTRY_LINKS_IMAGE_TEXT

B. Where can I make the input boxes wider?

C. When I click submit, it gives me back the submit link page. Should it bring me to a page saying something like - Your request have been submitted??

D. The email that person submitting request receives, states this text twice:

Welcome to The Fine Art of Clive Kay link exchange program. 
Your link has been successfully submitted at The Fine Art of Clive Kay. 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. 

E. Where can I change the blue background on input fields to the same colour as "Your Contact Information" (or some other than bue colour)?
(BTW I don't have form.png in includes/templates/YOUR/images folder)

F. When I try admin/extra/links check link, I get the messages that it was found and it gives the address. it would be nice:smile: if one could click on that address to get to the site to see if the reciprocal link is there.

Great add on! I hope it will eliminate tons of "fake" requests (site will be using CAPTCHA).

Thanks