Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
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
Re: jmd_neighbor: Pipe neighboring articles into an article form
Does anybody have an installable .txt version of this plugin?
Thanks
Offline
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
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
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
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
Re: jmd_neighbor: Pipe neighboring articles into an article form
Thanks Oleg,
I will try above.
What a timely answer :)
Offline
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_idand$prev_idwith$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