Title: Jim's Replies | WordPress.org

---

# Jim

  [  ](https://wordpress.org/support/users/jwmc/)

 *   [Profile](https://wordpress.org/support/users/jwmc/)
 *   [Topics Started](https://wordpress.org/support/users/jwmc/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jwmc/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jwmc/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jwmc/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jwmc/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jwmc/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 212 total)

1 [2](https://wordpress.org/support/users/jwmc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jwmc/replies/page/3/?output_format=md) …
[13](https://wordpress.org/support/users/jwmc/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/jwmc/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/jwmc/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/jwmc/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Translation loading for the wp-optimize domain was triggered too early.](https://wordpress.org/support/topic/translation-loading-for-the-wp-optimize-domain-was-triggered-too-early/)
 *  [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [1 year, 1 month ago](https://wordpress.org/support/topic/translation-loading-for-the-wp-optimize-domain-was-triggered-too-early/#post-18426589)
 * Is this still being worked on? Because I’m still getting the notice.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Zotpress] Add COiNS metadata to make reference managers recognize references](https://wordpress.org/support/topic/add-coins-metadata-to-make-reference-managers-recognize-references/)
 *  [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [1 year, 3 months ago](https://wordpress.org/support/topic/add-coins-metadata-to-make-reference-managers-recognize-references/#post-18323586)
 * Zotpress already offers the ability to provide RIS links via the CITE attribute.
   That’s a pretty standard format for exchanging references.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Zotpress] Please explain DOI hyperlinking](https://wordpress.org/support/topic/please-explain-doi-hyperlinking/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/please-explain-doi-hyperlinking/#post-18309152)
 * Katie, 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/](https://doi.org/)). In the
   latter case, if the style presents [http://doi.org/](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:
 *     ```wp-block-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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Zotpress] Please explain DOI hyperlinking](https://wordpress.org/support/topic/please-explain-doi-hyperlinking/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [1 year, 4 months ago](https://wordpress.org/support/topic/please-explain-doi-hyperlinking/#post-18300198)
 * Update: 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Email Template Designer - WP HTML Mail] Possible to add php to html?](https://wordpress.org/support/topic/possible-to-add-php-to-html/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/possible-to-add-php-to-html/#post-17907733)
 * I found this relevant support message and the filter to use: [https://wordpress.org/support/topic/add-shortcodes-2/](https://wordpress.org/support/topic/add-shortcodes-2/).
   So here is what worked. It even shows up in the Preview. Awesome!
 *     ```wp-block-code
       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>';});
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The SEO Framework – Fast, Automated, Effortless.] A wp-admin file is “Indexed, though blocked by robots.txt”](https://wordpress.org/support/topic/a-wp-admin-file-is-indexed-though-blocked-by-robots-txt/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [2 years, 1 month ago](https://wordpress.org/support/topic/a-wp-admin-file-is-indexed-though-blocked-by-robots-txt/#post-17710528)
 * 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
    -  This reply was modified 2 years, 1 month ago by [Jim](https://wordpress.org/support/users/jwmc/).
    -  This reply was modified 2 years, 1 month ago by [Jim](https://wordpress.org/support/users/jwmc/).
    -  This reply was modified 2 years, 1 month ago by [Jim](https://wordpress.org/support/users/jwmc/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The SEO Framework – Fast, Automated, Effortless.] Format space around separator in breadcrumb](https://wordpress.org/support/topic/format-space-around-separator-in-breadcrumb/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [2 years, 2 months ago](https://wordpress.org/support/topic/format-space-around-separator-in-breadcrumb/#post-17518046)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPvivid — Backup, Migration & Staging] SFTP authentication](https://wordpress.org/support/topic/sftp-authentication/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 3 months ago](https://wordpress.org/support/topic/sftp-authentication/#post-16505517)
 * Thank 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asgaros Forum] This plugin is 7 months dead.](https://wordpress.org/support/topic/this-plugin-is-7-months-dead/)
 *  [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/this-plugin-is-7-months-dead/#post-15988667)
 * [@qualmy91](https://wordpress.org/support/users/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](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asgaros Forum] This plugin is 7 months dead.](https://wordpress.org/support/topic/this-plugin-is-7-months-dead/)
 *  [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/this-plugin-is-7-months-dead/#post-15968443)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Don’t cache attachment pages](https://wordpress.org/support/topic/dont-cache-attachment-pages/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/dont-cache-attachment-pages/#post-15885121)
 * No path or name parts in common. They all have urls at site root.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Don’t cache attachment pages](https://wordpress.org/support/topic/dont-cache-attachment-pages/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/dont-cache-attachment-pages/#post-15882467)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Asgaros Forum] How to assign a user as a moderator](https://wordpress.org/support/topic/how-to-assign-a-user-as-a-moderator/)
 *  [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/how-to-assign-a-user-as-a-moderator/#post-15822091)
 * Try 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mixed Media Gallery Blocks] Gallery formatted wrong until resize window](https://wordpress.org/support/topic/gallery-formatted-wrong-until-resize-window/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/gallery-formatted-wrong-until-resize-window/#post-15815487)
 * If you want to post a link to the page I could help take a look.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mixed Media Gallery Blocks] Gallery formatted wrong until resize window](https://wordpress.org/support/topic/gallery-formatted-wrong-until-resize-window/)
 *  Thread Starter [Jim](https://wordpress.org/support/users/jwmc/)
 * (@jwmc)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/gallery-formatted-wrong-until-resize-window/#post-15809622)
 * Just to be clear, you do NOT want clear. That is what caused the problem for 
   me.

Viewing 15 replies - 1 through 15 (of 212 total)

1 [2](https://wordpress.org/support/users/jwmc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/jwmc/replies/page/3/?output_format=md) …
[13](https://wordpress.org/support/users/jwmc/replies/page/13/?output_format=md)
[14](https://wordpress.org/support/users/jwmc/replies/page/14/?output_format=md)
[15](https://wordpress.org/support/users/jwmc/replies/page/15/?output_format=md)
[→](https://wordpress.org/support/users/jwmc/replies/page/2/?output_format=md)