mcyzyk
Forum Replies Created
-
Forum: Plugins
In reply to: [Gutenberg] Block Toggle Inserter: Doing nothingIn my problematic WP Multisite, none of the block inserters are working on any of the the individual sites.
I have now activated the Gutenberg plugin. Still no joy!
When I hover over the blue Block Inserter icon, nothing happens to my cursor. It’s like it’s not “listening”, not active at all.
Forum: Plugins
In reply to: [Gutenberg] Block Toggle Inserter: Doing nothingI do not have the Gutenberg plugin activated.
When I hover over that Block Toggle Inserter icon, nothing happens to my cursor. Nor when I Click.
This is happening on multiple sites in my WP Multisite.
(And yet, to rule out anything browser-related, the blue Block Toggle Inserter above, in the editing screen of this post, is working just fine.)
Puzzled,
Mark
Forum: Plugins
In reply to: [Gutenberg] Block Toggle Inserter: Doing nothingRight! I should have mentioned that. It’s malfunctioning in my WP 6.1.1. Multisite.
Forum: Fixing WordPress
In reply to: Gutenberg: Blue Square to NowhereI just disabled all plugins and switched to the Twenty Twenty-Two theme. Still the same issue: The Blue Toggle Block Inserter icon is not clickable.
More, I spun up a VM and loaded a pristine WP 6.1.1. on it. NO PROBLEM there with the Gutenberg Blue Toggle Block Inserter! I click and all Block types pop up on screen.
Thanks Euler, I am going to post this over on the Gutenberg board.
Mark
Forum: Fixing WordPress
In reply to: Gutenberg: Blue Square to NowhereDarn. I tried both of those, and no joy.
I’ve copied my site to a VM on my local workstation, then Deactivated all plugins. Still same problem: The Blue Toggle Block Inserter (like above) does nothing.
Thinking…
Forum: Fixing WordPress
In reply to: Default Search stopped working across MultisiteThat did it! I duplicated the site on to my laptop, then went one by one through the plugins until I hit the culprit.
Forum: Developing with WordPress
In reply to: CORS Access-Control-Allow-Origin never showing upThanks! That was the issue.
Much appreciated,
Mark
Forum: Plugins
In reply to: [PDF Thumbnail Generator] But how to get $pdf_id for the current Post?My solution!:
// Get PDF ID
$fileURL = get_field(‘pdf’); <– “pdf” is the name of my Custom Field Type
if($fileURL):
$post_id = attachment_url_to_postid($fileURL);
$pdf_id = get_post_thumbnail_id($post_id);
endif;.
.
.<div class=”PDFThumbnail”>
<?php
echo get_the_post_thumbnail($post_id, ‘small’);
?>
</div>`Forum: Plugins
In reply to: [PDF Thumbnail Generator] But how to get $pdf_id for the current Post?So, for instance, this returns 0 every time:
$pdf_id = get_post_thumbnail_id( $post->ID );Forum: Themes and Templates
In reply to: [Penscratch] Search Results template: content-search.phpMy question is specifically about the search results screen in the Penscratch-2 theme, not generally about WordPress search results. In particular, this in the Penscratch-2 codebase:
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.Does anyone have a working example of this in action?
Forum: Plugins
In reply to: [HTML5 Cumulus] Widget in Block Editor?Would be great if this plugin sized each Term relative to its respective post Counts. E.g., if Astronomy has 143 attached posts, and Biology has 649, Biology would render in a much larger font than Astronomy.
Forum: Plugins
In reply to: [HTML5 Cumulus] Widget in Block Editor?FYI, was able to do this with the help of the USEFUL “amr shortcode any widget” plugin:
Forum: Plugins
In reply to: [Taxonomy List] URL: Possible to override?I do believe I’ve solved my own issue with a snippet of CSS:
.tax-title a { cursor: default; pointer-events: none; text-decoration: none; color: inherit; }Forum: Plugins
In reply to: [Taxonomy List] URL: Possible to override?Alternatively, is it possible to suppress the hyperlink? So I’d end up with a page of JUST the Terms and their corresponding Descriptions?
Is there any way to get it work in Offline Mode?