Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#16 2010-02-18 20:59:25

hicks
Member
From: Portland, OR, USA (ex-UK)
Registered: 2009-05-08
Posts: 106
Website

Re: jmd_neighbor: Pipe neighboring articles into an article form

Nice plug-in, thank you. I too would love to see sort options, as I’m sorting a section by a custom field.

Offline

#17 2016-07-09 08:59:46

giampablo
Member
From: Italy
Registered: 2008-07-17
Posts: 86
Website

Re: jmd_neighbor: Pipe neighboring articles into an article form

Does anybody have an installable .txt version of this plugin?

Thanks

Offline

#18 2016-07-09 10:15:59

jakob
Admin
From: Germany
Registered: 2005-01-20
Posts: 5,206
Website GitHub

Re: jmd_neighbor: Pipe neighboring articles into an article form

I could only find the php file (which you can drop into your plugin_tmp folder (defined in the admin > settings) if you want to use it. If you have ied_plugin_composer installed, you can export a txt installer file from there.

But if the built-in link_to_next and link_to_prev tags don’t cut it for you, you might want to look at etc_link_to (see other threads in the form for examples) or smd_horizon.


TXP Builders – finely-crafted code, design and txp

Offline

#19 2016-07-09 15:20:20

giampablo
Member
From: Italy
Registered: 2008-07-17
Posts: 86
Website

Re: jmd_neighbor: Pipe neighboring articles into an article form

Thank you Jakob, finally I know how to make good use of plugins when only php file is available.

jakob wrote #300249:

… you might want to look at etc_link_to (see other threads in the form for examples).

This seems to do what I actually need (next and prev navigation with relevant article image backgrounds).
Unfortunately I am playing with 4.6.0 Beta and the plugin gives me this error: Unregisterd_Tag
Should I ask the developer to make the plugin 4.6.0 compatible?

Offline

#20 2016-07-09 15:21:09

etc
Developer
Registered: 2010-11-11
Posts: 5,681
Website GitHub

Re: jmd_neighbor: Pipe neighboring articles into an article form

jakob wrote #300249:

I could only find the php file (which you can drop into your plugin_tmp folder (defined in the admin > settings) if you want to use it. If you have ied_plugin_composer installed, you can export a txt installer file from there.

It will not work as is in 4.6, you need to replace $next_id and $prev_id with $thisarticle['next']['thisid'] and $thisarticle['prev']['thisid']. Amazingly, it seems to be no core tag for prev/next ids.

Offline

#21 2016-07-09 15:27:39

etc
Developer
Registered: 2010-11-11
Posts: 5,681
Website GitHub

Re: jmd_neighbor: Pipe neighboring articles into an article form

giampablo wrote #300253:

This seems to do what I actually need (next and prev navigation with relevant article image backgrounds).
Unfortunately I am playing with 4.6.0 Beta and the plugin gives me this error: Unregisterd_Tag
Should I ask the developer to make the plugin 4.6.0 compatible?

Oops, sorry, it needs some reworking for the same reason that in my previous post. I’ll try to do it quickly.

Edit: ATM, it should suffice to add this at the beginning of the plugins code:

// TXP 4.6 tag registration
if (class_exists('\Textpattern\Tag\Registry')) {
	Txp::get('\Textpattern\Tag\Registry')->register('etc_link_to')
		->register('etc_link_page')
		->register('etc_link_id')
		->register('etc_link_title');
}

Last edited by etc (2016-07-09 15:31:53)

Offline

#22 2016-07-09 15:39:44

giampablo
Member
From: Italy
Registered: 2008-07-17
Posts: 86
Website

Re: jmd_neighbor: Pipe neighboring articles into an article form

Thanks Oleg,
I will try above.

What a timely answer :)

Offline

#23 2016-07-09 15:58:24

giampablo
Member
From: Italy
Registered: 2008-07-17
Posts: 86
Website

Re: jmd_neighbor: Pipe neighboring articles into an article form

etc wrote #300254:

It will not work as is in 4.6, you need to replace $next_id and $prev_id with $thisarticle['next']['thisid'] and $thisarticle['prev']['thisid']. Amazingly, it seems to be no core tag for prev/next ids.

No. Definitely it needs some reworking. Take your time.
And thank you again.

P.S. Registering error disappeared, by the way.

Offline

Board footer

Powered by FluxBB