Damien du Toit
Forum Replies Created
-
Forum: Plugins
In reply to: [Nested Pages] slow performance for many pages1,100 pages on WordPress 5.9 and PHP 7. Sync Page Order times out on every attempt, so I can’t rely on “menu_order” at all, and have resorted to creating multiple smaller menus in favour of using the master Nested Pages menu.
Would also love to support a larger page count feature.
I had the same problem and then discovered that I had to enable the new ‘Security: no advanced settings for authors’ checkbox on the ‘General > Features’ page for the plugin.
Hi @pcosta88 – thanks for your help so far.
I just spent more time on this and can now confirm that I get the error only when I have the Keyword Analysis feature disabled, ie. the Dashboard widget box is hidden. If I enable this feature and have the Dashboard widget visible then the error goes away. Which makes sense since the error is related to the dashboard widget JS file.
- This reply was modified 8 years, 6 months ago by Damien du Toit.
On the Admin Dashboard page only for me that I’ve noticed so far, considering the issue is with wp-seo-dashboard-widget-580.min.js.
I get the same error. It doesn’t appear to be a theme or plugin conflict – I tried deactivating all other plugins and switched to the Twenty Seventeen theme, but no luck. It only seems to occur on the Dashboard page.
WordPress 4.9, Yoast SEO 5.8.
wp-seo-dashboard-widget-580.min.js?ver=5.8:1 Uncaught Error: Minified React error #37; visit http://facebook.github.io/react/docs/error-decoder.html?invariant=37 for the full message or use the non-minified dev environment for full errors and additional helpful warnings. at r (wp-seo-dashboard-widget-580.min.js?ver=5.8:1) at Object._renderNewRootComponent (wp-seo-dashboard-widget-580.min.js?ver=5.8:20) at Object._renderSubtreeIntoContainer (wp-seo-dashboard-widget-580.min.js?ver=5.8:20) at Object.render (wp-seo-dashboard-widget-580.min.js?ver=5.8:20) at Object.<anonymous> (wp-seo-dashboard-widget-580.min.js?ver=5.8:32) at t (wp-seo-dashboard-widget-580.min.js?ver=5.8:1) at wp-seo-dashboard-widget-580.min.js?ver=5.8:1 at wp-seo-dashboard-widget-580.min.js?ver=5.8:1 r @ wp-seo-dashboard-widget-580.min.js?ver=5.8:1 _renderNewRootComponent @ wp-seo-dashboard-widget-580.min.js?ver=5.8:20 _renderSubtreeIntoContainer @ wp-seo-dashboard-widget-580.min.js?ver=5.8:20 render @ wp-seo-dashboard-widget-580.min.js?ver=5.8:20 (anonymous) @ wp-seo-dashboard-widget-580.min.js?ver=5.8:32 t @ wp-seo-dashboard-widget-580.min.js?ver=5.8:1 (anonymous) @ wp-seo-dashboard-widget-580.min.js?ver=5.8:1 (anonymous) @ wp-seo-dashboard-widget-580.min.js?ver=5.8:1Thanks @caimin_nwl, I’ll take a look!
Forum: Plugins
In reply to: [Post Type Archive Link] Post type not added in menuThis worked for me, thanks!
I’m experiencing the same thing.
I just discovered that the EM plugin is causing issues with my custom signup form, which is a POST submit with a “location” variable name. If I rename this form variable (name attribute) to “location2” (for example), then it submits fine – otherwise my form submits to a 404. I know this behaviour is consistent with WordPress’s own reserved variable names (see http://wordpress.stackexchange.com/a/77339) but I’ve never experienced issues with a plugin before.
Forum: Plugins
In reply to: [Plugin: Audio Player] Comma in mp3 title@claytonjames: Thanks for confirming, I thought I was doing something wrong.
Forum: Plugins
In reply to: [Plugin: Audio Player] Comma in mp3 title@claytonjones: Does your player show the titles if you set “animation” to “no” ? ie. when the player is always open, and the track info is displayed. That’s how my player is configured. I get “Track #1” for all tracks, until I click play, and only then are the correct track names displayed.
Otherwise it works fine when I have “animation” to “yes”, so that the player is closed and when you click play, it slides open and the track name is correctly displayed.
There isn’t a problem with my id3 tags.
I’m aware of the limitation with using commas in titles because of the comma delimiter. That’s the problem I’m trying to find a solution for, since my track info isn’t displaying on load, and I therefore want to send the track titles to the player so that they are.
Forum: Plugins
In reply to: [Plugin: Audio Player] Comma in mp3 titleWhen I remove the titles, then the player shows “Track #1” until I click Play, at which point it loads the id3 meta. Is there something I’m missing? I’m using the standard method for embedding (via the [audio] tag) and also the standalone player and both do this. I need to have the titles showing when the player loads as there are multiple instances of the player on a page and they all say “Track #1”.
Forum: Plugins
In reply to: [Plugin: Audio Player] Comma in mp3 titleI’ll try that, thanks
Forum: Fixing WordPress
In reply to: Get active category of post in multiple categories@mauricenaef: for now I’m using a solution that checks the permalink (via $_SERVER[‘REQUEST_URI’]) to get the child/sub-category slug. Far from elegant, but it works! I’d prefer a more future-proof solution though.
@alchymyth: Like I said, when working with a post in multiple categories, get_category_parents() will return all of child/sub-categories for a post (in my example, that would be an array of 2), and not the currently active category, so it’s pretty much useless. Also, a post in multiple categories has no parent.
Forum: Fixing WordPress
In reply to: Get active category of post in multiple categoriesNot sure if it helps to know, but the “Purple” post is only added to the multiple subcategories, and not the parent category itself (“Colours”).
Forum: Fixing WordPress
In reply to: Get active category of post in multiple categories@alchymyth: no not the parent, that would be “Colours”. I’m looking for the subcategory, of which there are multiples (“Red” and “Blue”), based on which is currently active.
http://www.example.com/colours/red/purple – I need to know it’s in the “Red” subcategory
http://www.example.com/colours/blue/purple – I need to know it’s in the “Blue” subcategory