Search found 6 matches

by medicamin
Fri Sep 29, 2023 4:04 pm
Forum: General
Topic: Do you use the current search functionality?
Replies: 7
Views: 9430

Re: Do you use the current search functionality?

I just thought something with preg-match could prevent UTF-8 characters matches together. And yes, it was preg-match. I used this line in results and now I get true results in utf8 characters: if (preg_match('/(*UTF8)' . preg_quote($text ) . '/i', strtolower($value['content']))) { I must say that \b...
by medicamin
Sun Sep 24, 2023 8:39 am
Forum: General
Topic: Do you use the current search functionality?
Replies: 7
Views: 9430

Re: Do you use the current search functionality?

Tried, but now even searching with English characters returns no results.
by medicamin
Sat Sep 23, 2023 8:25 pm
Forum: General
Topic: Do you use the current search functionality?
Replies: 7
Views: 9430

Re: Do you use the current search functionality?

In your search plugin folder, edit plugin.php and replace the search function with this: Thank you for this code. I found that if I replace 'title' with 'content', I get the results which has the search text in their content. But there is a problem with your code. Persian or Arabic alphabet search ...
by medicamin
Thu Sep 21, 2023 4:47 pm
Forum: General
Topic: Pagination issue for user role Author
Replies: 1
Views: 2803

Re: Pagination issue for user role Author

The only workaround I found, is to set the items-per-page in variables.php to a high number, so as pagination in the admin/content get bypassed some how:

Code: Select all

define('ITEMS_PER_PAGE_ADMIN', 1000);
But it's not a solution.
by medicamin
Mon Sep 18, 2023 9:00 am
Forum: General
Topic: Pagination issue for user role Author
Replies: 1
Views: 2803

Pagination issue for user role Author

Hi there, I have a Bludit installation on a domain, with two users. One administrator and one Author. The administrator has 160 posts published, and the other user with author role has published 11 posts. Pagination in admin area (contents) is fine when I'm logged in with the administrator role. The...
by medicamin
Mon Sep 18, 2023 8:49 am
Forum: Themes
Topic: [SOLVED] Pagination
Replies: 6
Views: 18612

Re: [SOLVED] Pagination

I modified some parts of the above code to make it work in blogx theme. below code works in category and tag pages too. And also adds some dots (...) after first and before the last page. <?php if(!isset($_GET['page'])){ $getPage = 1; } else { $getPage = $_GET['page']; } ?> <ul class="list-grou...