floodlightdesign
Forum Replies Created
-
Same issue here…on about 20 sites that we manage.
Updated the plugin to 2.03 over the weekend and all the redirects that were previously added disappeared from the admin UI.
Strangely, you can still export them to a JSON file.
Please push plugin update ASAP.
Joe
Same issue here. All redirects gone from admin UI after update to 2.03.
Please push fix ASAP.
Forum: Plugins
In reply to: [Admin Menu Editor] Licensed / Not Licensed?Hmmm…don’t think its a corrupted table….there would be a lot more issues if either of those tables were corrupted.
It is a multi-site install, though some multi-site installs have worked without issue.
Any other ideas? Very odd.
Joe
Got it, thanks for the reply!
Forum: Plugins
In reply to: [Pinterest RSS Widget] Pinterest RSS Feed ErrorStarted working again for me as well.
Strange.
Thanks for looking at it!
Forum: Plugins
In reply to: [Pinterest RSS Widget] Pinterest RSS Feed ErrorHmmm…same result. Can you replace your local setup with our feed?
https://pinterest.com/neenahpaper/feed.rss
I had previously updated the WordPress feed include to do the force_feed() and it errored with….
This XML document is invalid, likely due to invalid characters. XML error: SYSTEM or PUBLIC, the URI is missing at line 2, column 48
Forum: Plugins
In reply to: [Pinterest RSS Widget] Pinterest RSS Feed ErrorThat is strange.
Bottom left sidebar here you can see the error….
Forum: Plugins
In reply to: [Pinterest RSS Widget] Pinterest RSS Feed ErrorYeah, something must have changed with the way the Pinterest RSS feed is being constructed.
Seems to load alright in RSS feed readers, but for some reason the Simple Pie class is having issues with it.
Hoping the plugin author updates to support the updated feed format.
Forum: Fixing WordPress
In reply to: Same Screen Options for all usersFor the benefit of everyone…
You can add a new database row with the desired value.
The umeta_id value is just a unique key that you can set to whatever the next available number is.
The user_id is the number of the user you’d like to change the screen options for.
The meta_key name specifies which screen you’d like to change the options on. Looking through your database you should be able to figure out what meta_key controls which screen.
Good luck!
Forum: Fixing WordPress
In reply to: Same Screen Options for all usersschraegschrift – I am trying to do the same thing…
Can you provide a little more information about how you accomplished this?
I am looking at the wp_usermeta table in PHPMyAdmin and I found this entry for the admin username:
16 2 metaboxhidden_dashboard a:4:{i:0;s:17:"dashboard_primary";i:1;s:19:"dashboard_secondary";i:2;s:24:"dashboard_incoming_links";i:3;s:17:"dashboard_plugins";}
Problem is that the other usernames don’t have this parameter. Do I just add a database item with their userID as the index? I wasn’t clear on what the UmetaID index was for or how to generate that value.
Thanks for your help!!
Joe
Forum: Everything else WordPress
In reply to: wp_list_pages Active StateOkay, I figured it out.
Its the Walker changes that were made in the 2.7 Beta 3 release that break this functionality.
If you replace the classes.php file in v2.7B3 with the classes.php file in v2.7B2 the current_page_item class shows up again.
I really do think this is a bug….can we report it some how?
Joe
Forum: Everything else WordPress
In reply to: wp_list_pages Active StateWell, look at that….it works perfectly on your site.
So strange that mine doesn’t work….I even striped my nav function to
<?php wp_list_pages(“title_li=”); ?>
Still no current_page_item added to the current page.
I’m confused.
Joe
Forum: Everything else WordPress
In reply to: wp_list_pages Active StateWho’s site is it working on? Can you post a link?
I’ve never seen this functioning correctly on a wordpress site.
Joe
Forum: Everything else WordPress
In reply to: wp_list_pages Active StateOkay so I figured out a little more.
The wp_list_pages function calls the walk_page_tree function which uses the Walker_Page class. That class is where the CSS classes get set. There is a $current_page variable that is being passed to that class that is returning a NULL value no matter what page you are on. This is the problem.
Can someone move this post to the Advanced category?? I want to get this fixed so others can use this active page functionality.
Thanks.
Joe