PDA

View Full Version : How to get rid of the URL reciprocal link


boom
05-22-2006, 12:20 AM
Hi

I would like to ask How to get rid of the URL reciprocal link field in the suggest link option, I don't need the URL reciprocal field

Thanks
:yahoo:

Nick Collins
05-22-2006, 05:26 AM
You can remove it directly from database using phpMyAdmin. Open "dir_link_fields" table, click "Browse" tab and remove "reciprocal" row here.

boom
05-22-2006, 11:41 PM
How can I add it again?

Nick Collins
05-23-2006, 03:42 AM
Which version of esyndicat do you use, boom? I'll write you the sql query.

boom
05-24-2006, 02:20 AM
I'm using 1.2pro.

btw, erasing that field will completely erase from all the forms the "reciprocal link" field requiered?

Nick Collins
05-24-2006, 09:03 AM
Run this sql query in phpMyAdmin:
INSERT INTO `dir_link_fields` (`name`, `type`, `length`, `values`, `default`, `order`, `editable`, `adminonly`, `pages`) VALUES ('reciprocal', 'text', '100', '', 'http://', 6, '0', '0', '1');
Change prefix (dir_) in case you changed it.