Updated Review: The developer has fixed the plugin and it now seems to be working properly.
]]>Towards the bottom of the post in the link I added, you can see the Previous/TOC/Next buttons and these buttons are currently manually added. Is there something that will automatically add them and sort by category?
I want something similar to the “Next post/previous post” button that wordpress automatically generates but specific to certain categories.
For example, every time I post something in the category “The Interstellar Male God” the button will update to the next post and only to posts in that category.
The reason I need this is because I post stories by chapters. I want to update two different stories, but want the buttons to only connect to the chapters in its own story.
Thanks in advance!
]]>I would like to remove or hide the “next-previous” buttons in the footer of every post.
In which file can I do this?
Thanks ahead!
Regards,
Pieter
<ul class=”flex-direction-nav”>
<li class=”flex-nav-prev”><
<li class=”flex-nav-next”>>
I’m using Meta Slider v3.6.1
]]>You can see what I mean here:
https://www.lympstone.org/events/
Any thoughts as to why it’s not doing it any more most welcome! The plugins are the same as they were before but the site has moved server but everything has come across with it.
Thanks!
https://www.ads-software.com/plugins/the-events-calendar/
]]>function get_next_prev_posts() {
if (!$this->is_single) {
return '';
}
if (td_util::get_option('tds_show_next_prev') == 'hide') {
return '';
}
$buffy = '';
$next_post = get_next_post();
$prev_post = get_previous_post();
if (!empty($next_post) or !empty($prev_post)) {
$buffy .= '<div class="td-block-row td-post-next-prev">';
if (!empty($prev_post)) {
$buffy .= '<div class="td-block-span6 td-post-prev-post">';
$buffy .= '<div class="td-post-next-prev-content"><span>' .__td('Previous article', TD_THEME_NAME) . '</span>';
$buffy .= '<a>ID)) . '">' . get_the_title( $prev_post->ID ) . '</a>';
$buffy .= '</div>';
$buffy .= '</div>';
} else {
$buffy .= '<div class="td-block-span6 td-post-prev-post">';
$buffy .= '</div>';
}
$buffy .= '<div class="td-next-prev-separator"></div>';
if (!empty($next_post)) {
$buffy .= '<div class="td-block-span6 td-post-next-post">';
$buffy .= '<div class="td-post-next-prev-content"><span>' .__td('Next article', TD_THEME_NAME) . '</span>';
$buffy .= '<a>ID)) . '">' . get_the_title( $next_post->ID ) . '</a>';
$buffy .= '</div>';
$buffy .= '</div>';
}
$buffy .= '</div>'; //end fluid row
}
return $buffy;
}
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]
]]>Next issue is with logos, I would like to show a table with last 5 games with logos, when I do this only the last one have logos.
It doesn’t matter if there are 3 or 4 teams, also order doesn’t matter – only the last table show logos.
here is a link https://pilka.lstr.pl/zapowiedzi/
I’m using a child theme, and “zapowiedzi” is a page (not a post) build with page builder by site origin (where you can use widgets).
I don’t want to mess with the core plugin files before getting any opinion.
Do you think “rewind_posts()” would fix it?
https://www.ads-software.com/plugins/leaguemanager/
]]>