Zoinks! Graphics
Forum Replies Created
-
Any headway on this? I’m having the same issue with missing Tags.
Forum: Plugins
In reply to: [Default Featured Image] Featured Images for Posts and/or Pages?Thanks! Appreciate your change of heart on this, and looking forward to it being integrated in 2026.
Forum: Plugins
In reply to: [Default Featured Image] Featured Images for Posts and/or Pages?I was able to “reverse-engineer” one of your FAQ code snippets to achieve what I was looking for on the front end: Having default featured images just for my posts, not for my pages. Here’s the revised code…
add_filter( 'dfi_thumbnail_id', 'dfi_skip_page', 10, 2 );
function dfi_skip_page( $dfi_id, $post_id )
{
if ( is_page() ) { return 0; } // invalid id.
return $dfi_id; // the original featured image id.
}However, my suggestion still stands to make it an Admin option to select either Posts or Pages or both in the wp-admin Settings.
Sweet! Thank you!!
Thanks so much, that code did the trick!
Just wondering… This has obviously been an issue since early 2023, so when will it be worked into the plugin core, rather than as an add-on fix?
Perfect, just what I was looking for! Thanks!!
I too would like to see an answer to this question.
carshowfanatic.com
@crubenstein11 I am experiencing similar issues. Can you please post details about your solution? Thanks!
Forum: Plugins
In reply to: [Event Single Page Builder For The Events Calendar] Developer WebsitesTypo aside, same issue for both websites:
With Surfshark ON, this error…
403Forbidden
Access to this resource on the server is denied!Only with Surfshark OFF do the sites pull up normally. FYI.
Forum: Plugins
In reply to: [Event Single Page Builder For The Events Calendar] Developer WebsitesActually appears that my Surfshark VPN doesn’t play nice with your websites. While the VPN is enabled I get errors making it seem like the sites are down.
Forum: Plugins
In reply to: [WP News and Scrolling Widgets] Undefined array key “unique”Awesome, that did it! Thanks!!
Forum: Plugins
In reply to: [Toolbar Publish Button] Simple Custom CSS and JSAnyone…? Your plugin description says it works with custom posts, but there’s no option to specify if it’s missing any custom post types. Such as “post-type-custom-css-js”
Thanks! Looking forward to hearing back.
Including the code in header.php is a temporary solution. I’d much prefer to have all my customizations in functions.php