Search found 58 matches

by dart
Tue Apr 19, 2022 12:39 pm
Forum: General Support
Topic: Help with index
Replies: 7
Views: 21491

Help with index

Hello,
I was saving a post & got an error mesage "corrupt index"
So I proceeded to rebuild index.
I now have what looks like a long list of Post [POST]Headings with entry numbers.
The top heading reads "BACKUP INDEX to fp-content/index1650371154"
I see a few index files @ the loction above...

The ...
by dart
Tue Mar 22, 2022 9:26 pm
Forum: Plugin support
Topic: Akismet code
Replies: 1
Views: 7578

Akismet code

Hello,
the code I received fro the Akismet site is not accepted as valid with the akismet pkugin... ?
by dart
Sun Nov 28, 2021 3:00 pm
Forum: Plugin support
Topic: Read More to image
Replies: 3
Views: 12742

Re: Read More to image

Thanks Arvid ! :D
It gives the posts a whole new look.
by dart
Sat Nov 20, 2021 9:29 pm
Forum: Plugin support
Topic: Read More to image
Replies: 3
Views: 12742

Read More to image

I would like to change the [Read More...] output to an 'image png'.
Any advice before I make the attempt ?

I think this is where the change should go...

line 71 - readmore.php
if (($q && $q->single) || isset($fp_params ['entry'])) {
$string = str_replace('[more]', "<a id=\"readmore-{$fp_params ...
by dart
Mon Oct 18, 2021 3:12 pm
Forum: General Support
Topic: Purge theme and templates cache
Replies: 4
Views: 12466

Re: Purge theme and templates cache

Arvid wrote: The number of comments is hard-coded indeed. Check line 12 of fp-plugins/lastcomments/plugin.lastcomments.php - you can simply change that number to your needs.


Okay, I see it...thanks Arvid that helped
by dart
Fri Aug 13, 2021 11:44 pm
Forum: General Support
Topic: Purge theme and templates cache
Replies: 4
Views: 12466

Re: Purge theme and templates cache

solution:
tried this and actually worked.
before 'Purge theme and templates cache', download lastcomments.tmp from [fp-content/cache/lastcomments.tmp].
...purge, then upload the lastcomments.tmp - thus retaining all the last comments from the widget.
by dart
Sat Aug 07, 2021 2:48 pm
Forum: General Support
Topic: Purge theme and templates cache
Replies: 4
Views: 12466

Purge theme and templates cache

Hello,
I had recently made a change with the blog. Based on what I have been used to with another blog software, I executed a purge to refresh things.
Right after the purge, I noticed the 'new comments' widget now reads 'no new commnts' on the main page. This surprised me since I had not expected ...
by dart
Thu Aug 05, 2021 12:50 pm
Forum: General Support
Topic: view comments & add comment window section
Replies: 12
Views: 42763

Re: view comments & add comment window section

...and for last entries - direct view to page with comment window:

In 'plugin.lastentries.php'

$string .= "<a href=\"{$link}\">{$entry['subject']}</a>

replace with $string .= "<a href=\"{$link}comments\">{$entry['subject']}</a>


$string .= '<li>';
$admin = BLOG_BASEURL . "admin.php?p=entry ...
by dart
Wed Aug 04, 2021 11:18 pm
Forum: General Support
Topic: view comments & add comment window section
Replies: 12
Views: 42763

Re: view comments & add comment window section

I was able to get the [more] to redirect to the page with comments.
by replacing #readmore-{$id} with 'comments' at both locations as shown below.
The 'comments' refer to the /comments prefix for the link.
Seems to be working tho - hopefully will not blow-up eventually.

This combined with Arvid's ...
by dart
Wed Aug 04, 2021 6:52 pm
Forum: General Support
Topic: view comments & add comment window section
Replies: 12
Views: 42763

Re: view comments & add comment window section

found this in '/plugin.readmore.php

Code: Select all

<a href=\"" . get_permalink($id) . "#readmore-{$id}\">" . $readmoreString . "</a></span>";}