I have installed the related entries/links plugin.
when I type out the link the way it says to
eg: http://link1.com=Link 1
It comes out on the page as exactly that and when you click on it it tries to go to http://link1.com=Link%201
I'm wanting it to show just
Link 1
then go to the page http://link1.com
Is there something else I need to do or some other plugin I need to have installed to make this work?
Related links plugin prob???
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Related links plugin prob???
Hi!
You can configure the "seperation" character in that plugin, did you try to maybe use a character like "|" instead of "="?
Are you sure you tried with "http://link1.com"? Or did you try it with another one maybe?
HTH,
Garvin
You can configure the "seperation" character in that plugin, did you try to maybe use a character like "|" instead of "="?
Are you sure you tried with "http://link1.com"? Or did you try it with another one maybe?
HTH,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Nope, definitely used "=" symbol. I had read about using "|" in another thread and tried that too. didn't work.
http://link1.com was just an example. but i tried with a few different links and using and not using spaces in the description but to no avail.
http://link1.com was just an example. but i tried with a few different links and using and not using spaces in the description but to no avail.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Hm, I just tried to enter:
and both work for me. Maybe you need to tell me which exact links you entered?
Regards,
Garvin
Hm, I just tried to enter:
Code: Select all
http://link1.com/=Link1
http://link1.com/=Link 1
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
This is the test page. please ignore the silliness of the post. just trying to set everything up first then I'll put the real content in.
http://undeniableright.com/index.php?/a ... l#extended
http://undeniableright.com/index.php?/a ... l#extended
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
And when you configure the related entries plugin through teh configuration, you did set "=" as the separation character there?
Regards,
Garvin
And when you configure the related entries plugin through teh configuration, you did set "=" as the separation character there?
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Yes, that looks about right. If you change it to "|" on that screen, and then in your entries as well it still doesn't work?
This sounds as if some other plugin might be interfering...it really works here for me
Maybe you could edit the relatedlinks.php event plugin file and replace this:
with:
Best regards,
Garvin
Yes, that looks about right. If you change it to "|" on that screen, and then in your entries as well it still doesn't work?
This sounds as if some other plugin might be interfering...it really works here for me
Maybe you could edit the relatedlinks.php event plugin file and replace this:
Code: Select all
$parts = explode($this->get_config('explodechar', '='), $link);
if (empty($parts[1])) {
$parts[1] = $parts[0];
}
Code: Select all
echo "Got input: <pre>$link</pre><br />Replace-Char: " . $this->get_Config('explodechar', '=') . "<br />\n";
$parts = explode($this->get_config('explodechar', '='), $link);
echo "Got " . count($parts) . " parts:<pre>" . print_r($parts, true) . "</pre><br />\n";
if (empty($parts[1])) {
$parts[1] = $parts[0];
}
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
