Jim
Forum Replies Created
-
Is this still being worked on? Because I’m still getting the notice.
Forum: Plugins
In reply to: [Zotpress] Add COiNS metadata to make reference managers recognize referencesZotpress already offers the ability to provide RIS links via the CITE attribute. That’s a pretty standard format for exchanging references.
Forum: Plugins
In reply to: [Zotpress] Please explain DOI hyperlinkingKatie, I’ve gotten to the bottom of this, and I would like to suggest a change to
shortcode.request.php, the section// Hyperlink DOIs, beginning line 664. The change is shorter than the original, covers more cases, and causes ZP to behave more like Zotero. When the style presents a DOI variable, there are really just two basic cases: a) we create a hyperlink that only shows the DOI itself (for styles that use ‘doi:’, ‘doi: ‘, or only the bare DOI), or b) a hyperlink that shows the link text as well (https://doi.org/). In the latter case, if the style presents http://doi.org/, I see no reason why ZP shouldn’t output https anyway, but maybe there is a reason.Here is the suggested code:
// Hyperlink DOIs
if ( isset($item->data->DOI)
// && $item->data->DOI !== null
&& strlen($item->data->DOI) > 0 )
{
// Styles without link text +
if ( strpos( $item->bib, "doi.org" ) == false )
{
$item->bib = str_ireplace(
$item->data->DOI,
"<a class='zp-DOIURL' ".$zp_target_output."href='https://doi.org/".$item->data->DOI."'>".$item->data->DOI."</a>",
$item->bib
);
}
// Styles with http or https
elseif ( strpos( $item->bib, "doi.org/" ) !== false
&& strpos( $item->bib, "</a>" ) == false )
{
$item->bib = preg_replace(
"#https?://doi.org/\S+#i",
"<a class='zp-DOIURL' ".$zp_target_output."href='https://doi.org/".$item->data->DOI."'>https://doi.org/".$item->data->DOI."</a>",
$item->bib
);
}
}Forum: Plugins
In reply to: [Zotpress] Please explain DOI hyperlinkingUpdate: as a test, I updated the style without the < and > around the DOI variable. Getting Zotpress to see the update was quite a struggle. Part of it involved emptying the account cache on Zotpress > Accounts. Anyway, it made no difference.
Forum: Plugins
In reply to: [Email Template Designer - WP HTML Mail] Possible to add php to html?I found this relevant support message and the filter to use: https://ww.wp.xz.cn/support/topic/add-shortcodes-2/. So here is what worked. It even shows up in the Preview. Awesome!
add_filter('haet_mail_footer', function( $footer ){
return '<p style="text-align: center;"><span style="font-family: Tahoma, Geneva, sans-serif; font-size: 12px; color: #777;">©' . date( 'Y' ) . ' Forest Pathology</span></p>';
});Thank you for your reply and sorry to take this up again after a long delay. As mentioned, there is no link to this URL on my site. But following your advice and clicking around in Search Console, I eventually found the referring page. It is some nonsense website that seems to be somehow copying support emails or forum posts with Wordfence. I apparently mentioned that URL 4 years ago while communicating with them!
The referring page is (leaving off the https:// in hopes not to reinforce Google’s indexing): ditted24.rssing.com/chan-12949233/all_p1233.html
Thank you, Sybre. I don’t quite get the PHP filter, but luckily your CSS solution worked. Actually, mine did too, after I fixed an editing error in the stylesheet 😉 I appreciate the help.
Forum: Plugins
In reply to: [WPvivid — Backup, Migration & Staging] SFTP authenticationThank you. You’re right, I missed seeing the error message at the top of the screen. It was there when i looked for it.
But what about my question: Would it be possible to modify the SFTP section to allow key authentication?
Forum: Plugins
In reply to: [Asgaros Forum] This plugin is 7 months dead.@qualmy91, that’s good news; I hope Thomas is okay and will be able to return to Asgaros Forums at some point. I’m glad to hear also that you are still tracking things.
@tomdever, thank you for the suggestions and including links and import tools. I actually started on bbpress. I can’t remember what prompted me to look for a replacement. Certainly a major part was the nearly complete lack of useful support. The plugin seemed a bit chaotic to me and also didn’t look that good.
I know I looked at wpForo and others too, but settled on Asgaros. It looks good, and has a clear and intuitive admin interface. Above all, the support was superb, especially on asgaros.de, going above and beyond most plugins to help people to do what they need to do. Now, I’ve spent a lot of time customizing and would be reluctant to change again for that reason as well.
One challenge now is the overwhelming spam on asgaros.de/support/. I don’t know the cause of it but that will have to be stopped before the forums there are useful again.
Forum: Plugins
In reply to: [Asgaros Forum] This plugin is 7 months dead.It’s true, the developer has not been active that long. The support forum on the developer’s website has been overtaken by a lawless bunch of scum spammers (I don’t understand why his forum gets bombarded with spam and I get none).
It’s a shame, because I really love Asgaros Forum and don’t think there’s a good replacement out there. I wish someone with the know-how would take it over and carry on the good work.
That said, the plugin still works fine for me, and I’ll keep using it until it doesn’t. This is the second abandoned plugin that was critical to my site, and it is very disappointing.
No path or name parts in common. They all have urls at site root.
Sorry for the delay in responding. Unfortunately there is no consistent path or name part to use for excluding them, and there are hundreds of them.
Forum: Plugins
In reply to: [Asgaros Forum] How to assign a user as a moderatorTry it with all other plugins disabled. It looks like you have some plugin messing with user roles. “Temporary Privilege Escalation” is not in my install.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Gallery formatted wrong until resize windowIf you want to post a link to the page I could help take a look.
Forum: Plugins
In reply to: [Mixed Media Gallery Blocks] Gallery formatted wrong until resize windowJust to be clear, you do NOT want clear. That is what caused the problem for me.