jonnixon
Forum Replies Created
-
Forum: Plugins
In reply to: [Breadcrumb NavXT] The following settings were not saved:I’m receiving the same message with my newly-created post type. I have 10 other post types that never received this message:
The following settings were not saved:
apost_coworker_videos_root
bpost_coworker_videos_archive_display
bpost_coworker_videos_hierarchy_displayForum: Plugins
In reply to: [Download Monitor] ACF Date Picker being hijackedI think I found what is hijacking my posts.
Inside the plugin (class-dlm-admin-writepanels.php) there is:$wpdb->update( $wpdb->posts, array( 'post_status' => 'publish', 'post_title' => $file_post_title, 'menu_order' => $file_menu_order, 'post_date' => date( 'Y-m-d H:i:s', $date ), 'post_date_gmt' => date( 'Y-m-d H:i:s', $date ), ), array( 'ID' => $file_id ) );I’ve tried to overwrite this inside of my template using:
$wpdb->update( $wpdb->posts, array( 'post_date' => date( 'Y-m-d H:i:s', $dl_date ), 'post_date_gmt' => date( 'Y-m-d H:i:s', $dl_date ), ), array( 'ID' => $post->ID ) );Which doesn’t work (I think) due to parsing order. Any help would be greatly appreciated!
Any update on this?
Thanks for the quick response. That’s not quite what I’m after. I want both members and non-members alike to see whether a page (link) is a members-only page. So regardless of whether you’re logged in or not, you can still see a difference between “normal” pages and “members-only” pages.
Forum: Plugins
In reply to: [PDF Thumbnails] Code ExampleUpdate: I figured it out. I deleted my PDFs and re-uploaded (since I installed the plugin after I uploaded my original PDFs) and the thumbnails were created.
Forum: Plugins
In reply to: [PDF Thumbnails] Code ExampleHi guys – I have the exact same setup using ACF. However, I can’t get anything at all to render. I double-checked that both GS and Imagick are installed, etc. Any thoughts? I even tried manually setting the ID. Still no dice. Thoughts?
Forum: Plugins
In reply to: [Advanced Custom Fields - Code Area Field] Update for v5?@ashbryant your fix works great. However, I’m using this field inside of a flexible content field. For whatever reason, it’s rendering first instead of the order of where I put it. Any thoughts?