liblogger
Forum Replies Created
-
Forum: Plugins
In reply to: [Turn Off AI Features] Feature Request: Turn off / hide Connectors pageGreat! Thank you 🙂
Forum: Plugins
In reply to: [Turn Off AI Features] Feature Request: Turn off / hide Connectors pageThanks – I have also now realised that I’d conflated the config file setting with the filter and should have added “define( ‘WP_AI_SUPPORT’, false );”, which does at least hide the install options on the Connectors page!
Forum: Fixing WordPress
In reply to: Unable to confirm if define( ‘WP_SUPPORTS_AI’, false ); worksAh, okay, I was conflating the config setting with the filter – the correct version does hide the AI plugins on the Connectors page. I struggled to find anything about these settings outside of the development sites – afaict there’s nothing in the Advanced Admin handbook about either of these settings.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress warning when saving menuThat latest updated does seem to have sorted the problem, thank you.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress warning when saving menuThe episode box isn’t visible anywhere – the only thing remotely connected is the admin menu item for the Powerpress settings.
I can’t upload a screenshot here – I can provide one if necessary – but it’s just multiple instances of the ‘PowerPress Warning: you may be exceeding your fields limit, a server setting that limits how many fields your pages can contain. Your current limit is 1000‘ message with a ‘Learn More’ that links to the ‘Warning Message Explained’ support page.
The number of warning messages corresponds to the number of items in the menu being saved.
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress warning when saving menuYes, it happens when I switch to e.g. the Twenty Twenty theme
Forum: Plugins
In reply to: [PowerPress Podcasting plugin by Blubrry] Powerpress warning when saving menuYes, this is in Menus (wp-admin/nav-menus.php) in the Appearance section. WordPress core, theme and plugins are up to date, and it happens when all other plugins are deactivated. It doesn’t happen on all menus, just those with a high number of menu items. It doesn’t seem to be directly affecting saving menus, it’s just ~messy. I have debugging on as this is a testing site, but set to log and not display – these warnings aren’t being logged there.
- This reply was modified 3 years, 4 months ago by liblogger.
Hello – I think I’ve got it working with the first exception method, using a cookie variable (idk what I got wrong when I tried exceptions before) – thank you!
I hadn’t found the second article – I will take a look at it. (I didn’t have any luck trying exceptions but will try again)
Forum: Plugins
In reply to: [Autoptimize] Unable to exclude JS for Knight Lab Timeline pluginOh, great – that sorted it!
(I’m assuming that should be __return_false at the end)
Forum: Plugins
In reply to: [AddToAny Share Buttons] Disable sharing buttons appearing on imagesThat did it! Thanks for the quick response 🙂
Forum: Themes and Templates
In reply to: Problems listing all parent/ancestor pagesNever mind, I decided to go with the Fold Page List plugin and used this code (adapted from the suggestions in this forum topic):
<?php $g_page_id = $wp_query->get_queried_object_id(); $ancestorIDs = _wswwpx_page_get_ancestor_ids($g_page_id); $titlePage = $ancestorIDs[1]; $childIDs = _wswwpx_page_get_child_ids($titlePage); if (is_array($childIDs)) { ?> <ul> <?php $grandParent = $ancestorIDs[1]; wswwpx_fold_page_list("title_li=&sort_column=menu_order&child_of=".$grandParent); ?> </ul> <?php } ?>Seems to work so far, although I need to work out the styling…
Forum: Fixing WordPress
In reply to: Paragraph breaks break my blog[sighs]
So, I decided to cut my loses and reinstall WordPress myself, rather than using the script installer on cpanel, and it seems to be working OK.
However, I’d really appreciate a few pointers about how start looking for the source of this (seemingly obscure) – I’d like to work out how to deal with it if it comes back, rather than taking up space on the support forum.
Forum: Fixing WordPress
In reply to: Paragraph breaks break my blogso it should have been:
…is the
</p>
<p>
combination affecting WordPress…(Which, admittedly, doesn’t seem likely)
Thanks…
Forum: Fixing WordPress
In reply to: Paragraph breaks break my blogSorry, I was trying to show the closing and opening paragraph tags there…