Elliot Toman
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Block Builder - Lazy Blocks] WordPress 6.4Apologies, updating to the latest Lazy Blocks version resolved the issue.
Forum: Plugins
In reply to: [Charter Boat Bookings] Purchase Pro Version?Hi Meg,
Thank you so much for your prompt reply. I’ll follow up using the contact form on your website.
Forum: Plugins
In reply to: [Block Lab] Blocks output as JSONFalse alarm. This was due to an error in my loop syntax, not related to Block Lab.
Forum: Plugins
In reply to: [Import Eventbrite Events] Overriding Plugin Templates@xylus Can you clarify those instructions? I’ve tried both /mytheme/import-eventbrite/layouts/iee-event-meta.php (based on your instructions) and /mytheme/import-eventbrite-events/templates/iee-event-meta.php (based on the plugin structure) and neither works.
Thanks!
Forum: Plugins
In reply to: [Ask Me] Missing features?Thanks, Timo! I don’t see that information reflected anywhere on the Plugin page or its control panel. You may want to include it somewhere!
Forum: Fixing WordPress
In reply to: wp-login not working!I never thought to look at the source of wp-login.php … thank you, Richard!
Forum: Plugins
In reply to: [File Gallery] File Gallery Disables Featured Image in Custom Post TypeI found the problem: The “Editor” field was disabled in this post type. Apparently, no Editor, no Featured Image if File Gallery is installed.
'supports' => array('title', 'thumbnail')
'supports' => array('title', 'editor', 'thumbnail')
Forum: Plugins
In reply to: Suggestions for simple "auction" feature?Thanks, Nitesh–I’ll be sure to test it.
Forum: Fixing WordPress
In reply to: Displaying taxonomy as category page?I figured it out. In the process of trying random variations in the code, I set
exclude_from_search
tofalse
and presto. Taxonomy page works.Follow-up research revealed that this technicality is in fact part of the documentation and I overlooked it.
Forum: Fixing WordPress
In reply to: Displaying taxonomy as category page?That didn’t seem to work, Amy. I renamed the taxonomy “image-category” and updated the template to taxonomy-image-category.php, but WP is still defaulting to index.php.
Forum: Fixing WordPress
In reply to: Current Post Type InfoI can’t tell you how gratifying it is that we settled on the same solution.
Forum: Fixing WordPress
In reply to: Current Post Type InfoI figured it out!
<?php $posttype = get_post_type(); ?> <?php $obj = get_post_type_object( $posttype ); ?> <?php print $obj->labels->name; ?>
Thanks again for your help. ??
Forum: Fixing WordPress
In reply to: Current Post Type InfoWow, that was easy. Thank you!
Is there any way to retrieve the labels for the post type, such as the singular or plural names?