ericcorbett2
Forum Replies Created
-
Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] Hover effects not workingI’m in the UK, so I can’t see that image.
Have you tested Chrome on Windows 11, which is what I’m using?
I don’t know whether or not this is related, but I keep getting this notification:
“Please update WP Modula to the latest version to use Modula PRO”, even though I’m using what I believe to be the latest version, 2.14.20
Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] Hover effects not workingI’m using the Simple Lightbox plugin. Deactivating that has no effect whatsoever.
This appears to be a problem specifically with the Google Chrome browser, as the hover effects work with Firefox and Microsoft Edge.- This reply was modified 1 month, 2 weeks ago by ericcorbett2. Reason: spelling
Forum: Plugins
In reply to: [Modula Image Gallery - Photo Grid & Video Gallery] Hover effects not workingSome work and some don’t, specifically 7 Reflex.
Forum: Plugins
In reply to: [Zotpress] Search brokenSee https://wordpress.org/support/topic/error-on-gutenberg-but-not-dashboard/#post-18537025 for a patch that fixes the issue.
Forum: Plugins
In reply to: [Zotpress] Error on Gutenberg but not DashboardThat patch works for me.
Forum: Plugins
In reply to: [Zotpress] Search brokenYes, I’ve cleared the cache, but the search still isn’t working.
Forum: Plugins
In reply to: [Zotpress] Search brokenYes, sorry, 7.4 of course. I’m referring to this search, in the Gutenberg editor sidebar, which now never finds anything.
Forum: Plugins
In reply to: [Zotpress] Title stylingSorry, this should refer to the author field, not the title.
So an author with the name “St Peter’s, Norwich”, for instance, is rendered as “St Peter’s & Norwich”.Forum: Plugins
In reply to: [Zotpress] Update to 7.3.11 broke my pagesThe problem is that the variable $wpdb needs to be declared globally before line 331 in zotpress/lib/shortcode/shortcodes.functions.php:
global $wpdb;
$zp_account_temp = $wpdb->get_row("SELECT * FROM ".$wpdb->prefix."zotpress LIMIT 1", OBJECT);
Just add the global declaration as above and everything works fine.- This reply was modified 1 year, 7 months ago by ericcorbett2.
- This reply was modified 1 year, 7 months ago by ericcorbett2. Reason: adding necessary detail
Forum: Plugins
In reply to: [Zotpress] Backtrace from warningI had a problem in that area of code as well, not quite the same as yours, but it may be related. I worked around it by adding a check to determine whether $request_items was countable. Might be worth a try?
foreach ( $items as $item ) { if ( is_countable($request_items)) { if ( count($request_items) < 50 ) { $request_items[] = $item; } } else { $requests[] = $request_items; unset( $request_items ); } }I think your hosting company isn’t correct in saying that you can only have 50 references – you still have 51 anyway – and I’ve certainly got pages with way more than 50 references that work fine, such as https://engole.info/a-christmas-carol
- This reply was modified 2 years, 8 months ago by ericcorbett2.
Forum: Plugins
In reply to: [Zotpress] Another PHP 8.1 issueI have to hold my hand up and say that after looking into this issue more deeply, it was caused by my error in the parameter that I passed to Zotpress.
I do think though that it would be a good idea to check whether a parameter/variable is countable or not before trying to count it.- This reply was modified 2 years, 9 months ago by ericcorbett2.
- This reply was modified 2 years, 9 months ago by ericcorbett2.
- This reply was modified 2 years, 9 months ago by ericcorbett2.
Forum: Plugins
In reply to: [Zotpress] How do I Sort By the citation’s appearance in the text?Whatever works is a win. 🙂
Forum: Plugins
In reply to: [Zotpress] How do I Sort By the citation’s appearance in the text?I wanted to do something very similar, if I understand you correctly, and so I wrote a plugin that produces output like this, based on the Wikikipedia {{sfnp}} template.
If that’s the kind of thing you’re thinking of, you’re quite welcome to the source code to do with as you will.
Forum: Plugins
In reply to: [Zotpress] Search bar shows no reultsWell, it did, but now it no longer works under Firefox either.
Forum: Plugins
In reply to: [Zotpress] Search bar shows no reultsI’ve subsequently discovered that this problem seems to be related to the Chrome web browser, as when using Firefox and Safari everything works fine.
- This reply was modified 3 years, 6 months ago by ericcorbett2.