olistic
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Popups - WordPress Popup builder] Popup shown once per sessionHi,
thank you for your reply but I’m not able to open that page: the page appears to be unreachable (wrong address)
Forum: Everything else WordPress
In reply to: How to use a particular font in a single postMaybe I explained myself wrong. The link I’ve shared is the article I’d like to translate, also inserting the Punjabi font just in the translation-post.
Forum: Plugins
In reply to: [WooCommerce] Adding Categories to Sort ListThank your for your reply.
I’ll try to do my best!
Forum: Fixing WordPress
In reply to: Strange redirection in paginationThe solution, for me, is here -> https://stackoverflow.com/questions/50169711/pagination-not-working-with-query-posts
(just in case it helps anyone with a similar problem)
Forum: Fixing WordPress
In reply to: Adding pagination to blog pageSearching and searching and searching, I’ve found the solution here (just in case it helps anyone with a similar problem) -> https://stackoverflow.com/questions/50169711/pagination-not-working-with-query-posts
Using
$page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$args = array(
‘category_name’ => ‘name-category‘,
‘posts_per_page’ => 15,
‘paged’ => $page
);
query_posts($args);instead of
query_posts( ‘cat=33’ );
now the number-links of pagination work fine ??Forum: Fixing WordPress
In reply to: Adding pagination to blog pageHi,
I’ve tried in the past to overcome this issue using a plugin, but the plugin had the same issue :-\
I’ve asked to the plugin support and they just told me that there is something wrong with a query
<?php
// The Query
query_posts( ‘cat=33’ );but they weren’t able to tell me how to edit it in order to fix the issue (they told me to switch theme to try if with a standard theme the issue was fixed… but doing it I’ve almost lost my site – I’ve been lucky to have a database backup to restore!)
Here’s the code – https://pastebin.pl/view/77ba7b59 – and I don’t know how to edit that query… Do you have any idea?
Anyway thanks in advance
Forum: Fixing WordPress
In reply to: Adding pagination to blog pageFirst of all thank you for your reply.
In the page lo-yoga the pagination works fine (ad I’d like to have it everywhere in my site).
The main issue is in the index of the blog (https://www.yogajap.com/blog/), where I can see the pagination, but all the numbers-link always redirect me to the first page (so users can’t view all my posts) :-\
Are you able to figure out why this happens?Forum: Fixing WordPress
In reply to: Adding pagination to blog pageI’ve tried to do as it is described by https://www.usablewp.com/learn-wordpress/building-the-blog/how-to-add-pagination-to-blog-posts-index/ but it doesnt work.
If I add the the_posts_pagination()?function to the page where I want the pagination, I see it (you can see it now), but all the numbers of the pagination always send the user to the first page (even if the link looks different) :-\
Why???Forum: Fixing WordPress
In reply to: Strange redirection in paginationThank you for your reply.
I’ve already tried to ask to the support of the plugin (as the plugin works in all the other pages and posts), but they haven’t been able to find a solution for this issue.
They tried to suggest to switch template to TwentyTwenty to see if this issues was fixed, but the result was that in the TwentyTwenty theme the issue remained (the pagination was not shown), and then, switching back to the original theme I’ve found that all the formatting of the site was lost (fortunately I was able to recover it thanks to a database backup that I re-imported).
This is the code of the page you wrote about – https://pastebin.pl/view/f0c0d39f – and this other one is the code of a page where pagination works – https://pastebin.pl/view/43dca442
I’ve tried to look at the differences… But sadly I’m not able to find a way to fix the issue of the wrong redirection.
Any idea?Forum: Fixing WordPress
In reply to: Update services – Are they all really useful?Thank you for your reply.
I’ll add the italian services only!Forum: Fixing WordPress
In reply to: Double pagination shown in search or tag pagesThank you for your reply!
I added that code under Appearance-Customize and it worked ??
Thank you!!!
Forum: Fixing WordPress
In reply to: Cursive text is not shownIt works!
Forum: Fixing WordPress
In reply to: Cursive text is not shownFirst of all, thank you for your reply.
I’ve set that font-style as italic and it works ??
(so i didn’t need to add the custom css)Forum: Fixing WordPress
In reply to: Unable to find the corresponding fileI’ve found a solution – if someone else will need it.
Using the plugin Better Search Replace (Wp Engine) I’ve been able to replace the wrong lines with the right ones in my database, easily and without any other issue.Forum: Fixing WordPress
In reply to: Unable to find the corresponding fileI’ve tried to look for those lines in the css files but I can’t find them in any of them (from the theme editor).
Thanks anyway for your reply!