Hi there,
1) I would like to have a pagination, horizontal beneath the posts on every page. I’ve tried many plugins but none of them will make it so
I added the WP-Pagenavi to Fictive on my test site without any issues and the main blog page shows the navigation right at the end of the posts.
It appears as if you are using the infinite scroll in Jetpack right now. That will have to be deactivated at Settings > Reading, and actually, I would suggest turing that off in Jetpack so it doesn’t interfere with the plugin operation.
If you have not yet done so, I would suggest creating a child theme so that any customizations you make will not be overwritten by a future theme update.
Child Themes
Child Theme creation plugins
You then need to copy footer.php over from the parent Fictive theme into your child theme folder and edit that file (Appearance > Editor). You will want to place the following right above </div><!-- #content -->
and save.
<div class="wp-pagenavi"><?php wp_pagenavi(); ?></div>
You can then inspect the elements of the page navigation and style them as you desire to match your design.
2) Is it possible to change words like ‘featured’, ‘says’, ‘beantwoorden’, ‘Geef een reactie’, ‘reactie’, ‘reactie plaatsen’ in something i want, if so how ?
To hide the existing nav links on left/right, you can use the following CSS to hide those.
.nav-links {
display: none;
}
There is a way to “hack” things in CSS using a before pseudo selector, but it doesn’t work too cleanly in Fictive. You can though download the .po file for your language from GlotPress.com and then edit the .po file with a .po editor and then convert it to a .mo file (which WordPress can read) and then replace the existing .mo file in your languages folder.
Here is a link to a .po editor: https://poedit.net/