thequasar
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Discord Post] Please Add Option To Not Messages To Discord On Post UpdateAfter installing the latest version and “Version: 1.1.0”, the bot stopped posting the latest news on Discord for me.
The new feature “Send old posts to Discord…” was unchecked. I’m gonna see tomorrow if it works if I just check it. Although, my intention is not to post the older posts, so hoping this can be fixed on either my side or with an update.
Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxQuick update!
post_tags_meta_box
was actually in the right direction!
I was missing the last array argument./* Add back movies metabox, but in post area */ add_action('add_meta_boxes', 'add_back_post'); function add_back_post(){ add_meta_box( 'tagsdiv-movies', 'Movies', 'post_tags_meta_box', 'your-post-type', 'normal', 'high', array( 'taxonomy' => 'movies' ) ); }
Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxThis looks promising, thank you!
I also found out using JQuery to move metaboxes was a terrible idea (for reference to those who reads this later). I used
prependTo()
to move them to the post area, and they completely vanished after saving the draft. Wasn’t even able to get them back nor find them using the inspect tool.- This reply was modified 7 years ago by thequasar.
Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxNo worries, I really appreciate your help!
About CMB2, yes that would be wonderful! I’m actually using Advanced Custom Fields right now, but it doesn’t allow for taxonomy/custom post management.
For transparency sake, I’ll also see if I can reach out to the stackexchange community for help as well.
Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxNo luck unfortunately. It basically tells me that it can’t call for a function that doesn’t exist.
https://i.imgur.com/wnmeHj5.png
I made sure to try both the singular and plural name (just to make sure).
Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxIt was a valid callback function, but now it literally shows me WP’s core tags (see image) instead of my movie tags ??.
https://i.imgur.com/RJGYvTN.png
Otherwise, the last resort for me would be running a jquery script while users are on this specific page and append it to the
.postarea
element.Forum: Plugins
In reply to: [Custom Post Type UI] callback of metaboxI’ve created a custom post type and at the same time, I added taxonomies such as “Movie” to this post type.
The “Movie” metabox is available on the right-hand side whenever I create a “movie post”. It work just like WP’s core tags, and by default, it displays it this way without me having to do anything. Since I didn’t create the HTML for this metabox, I’m not sure where to look for the callback function name.
https://i.imgur.com/p8ipfgy.png
I guess more or less, my question indirectly would be how I can move this to the middle section of the page using
add_meta_box
.- This reply was modified 7 years ago by thequasar.