I figured this out. You CAN open another frame Here is my code:
jQuery(document).ready(function ($) {
var frame;
frame = wp.media();
$(document).on('click', '.compat-field-add_attachment input', function (e) {
get_attachment(frame);
});
});
function get_attachment(frame) {
// Create the media frame.
frame = wp.media.frames.meta_image_frame = wp.media({
// Tell the modal to show only images.
library: {
type: 'image'
},
});
// When an image is selected, run a callback.
frame.on('close', function () { // Grab the selected attachment.
attachment = frame.state().get('selection').first().toJSON();
attachment_url = attachment.url;
$('.compat-field-add_attachment input').val(attachment_url);
});
frame.open();
}
Related Posts:
- add mediaelement.js plugins into WordPress video player control bar
- How to call plugin path in JS?
- How can I make content disappear when a user logs in?
- How to save Clicks of a download link button while it doesn’t matter if we refresh the page or again login/logout
- Ajax call doesn’t work in frontend but it’s working in backend (when I’m logged in)
- How to use wp-ajax in wp-cron
- White text on white background in TinyMCE when wp_editor is called in WP 3.9
- Is it possible to filter the wp_footer() scripts, read the content, and insert them inline?
- How can i change an image’s author?
- How can I make the “Preview Post” button save and preview in the same window?
- Creating an Exit Confirmation Popup
- Difference between register_block_type & wp.blocks.registerBlockType
- How to get images from EDD post?
- Pass a php string to a javascript variable
- Shortcode button dosent work for all posts. Work for first post only
- Pulling data from custom plugin settings using PHP shortcode and Javascript
- Media is not attached after import
- wordpress site | All-in-one-cufon IE Issue
- How to get the element ID from new menu list that added with add_filter()?
- Override Plugin Script Fucnction in WordPress
- add image crop function like in wp customizer
- Calculate price and display on woocommerce product single page under price (simple price, variable price) [closed]
- How to edit content before post update
- How to insert HTML/JavaScript form into WordPress page? [closed]
- How to get my plug-in, wrote in php, to refresh on its own every 5 minutes?
- Using TinyMCE in plugin?
- Using window.onload with Ubermenu
- Redirect to another page using contact form 7? [closed]
- JavaScript in a PHP plugin
- wordpress add_action() issue in ajax call
- MediaElement.js works on one site but not the other?
- Pass user role to javascript code inside body
- get specific value of a array | PHP
- How to get specific string/value from an array? php [closed]
- coding a WordPress AJAX Form using PHP to check if User is Logged Out and Show error
- Background Music WP [closed]
- How to use custom Javascript code inside a plugin?
- Adding a simple Javascript file with a plugin
- Social share buttons text shows up on post excerpts
- Plugin Admin panel checkbox unchecked after submit
- uncaught TypeError: Cannot read properties of null (reading ‘classList’) custom plugin
- Custom Plugin scripts from admin working in frontend
- Code for unique user visit count on every page WordPress
- Ajax call not working in wordpress through a plugin
- Send Array from JS to php file then insert it in wp database through a plugin
- Possible way of having multiple Gutenberg instances for a page?
- Woocommerce add products to cart
- Calling PHP function with AJAX
- Why does my custom plugin only function correctly once per page?
- How to get a specific string from a url
- How can I create a secure file download in WordPress?
- front end editor creation for Restropress plug in – displaying information from a WP admin area, on a different URL
- Use AJAX to fetch Current Post Thumbnail for WordPress when Uploaded throughMedia Uploader Frontend
- Problem with wordpress has_action() function
- Multiple image selection custom widget
- Custom Field used to allow a Free Story; no longer works
- Create a form and have custom menu display based on user answers?
- Woocommerce – Change variations output
- Speeding up WordPress on a Local Network
- Conditional Fields depending on checkboxes
- Caching of combined CSS and JS fails because of losing MIME types through combining by PHP
- Number format in thousands on highcharts in wpdatatable plugin
- Embed Javascript code to registered users only
- How to Insert images in WordPress using code
- How to limit each front-end user to view just his own uploaded files on Amazon S3?
- How to create a dashboard for logged-in users with custom functionality? [closed]
- Creating a user ‘add custom field’ section
- Media Playlist Plugin
- How to set up php,javascript and css to allow for our finished product to be displayed within a page?
- How do I convince this button to do something when it is clicked?
- Can’t insert files in other inputs
- How do I output user_registered time in my correct timezone?
- How to tweak a plugin without preventing it from updating
- How to create post comparison in wordpress
- Adding a script & php to functions.php
- how to show selected options drop down menu values in attributes field in after saving post.php
- Refresh server side rendered block in Gutenberg without changing attributes or its content
- How do I call an action hook into wp_ajax hook callback function
- stop resize button for wordpress media
- WordPress Gutenberg Custom Block the viewScript does not get loaded on the frontend when my block is inserted
- can not serialize and insert data from custom form
- How to resolve Multisite Speed issues
- How to Modify Gallery Preview on Edit Screen on the “Visual” Tab in Classic Editior
- Overide a function that is inside a plugin
- prettyPhoto media loading very slowly in Chrome
- Add keywords meta to index.php page
- Redirecting a buddyboss profile tab to a different tab if not subscribed to a specific membership
- How to create a custom post type that contains another custom post type?
- Is there a function to list all uploaded images? How can I add one?
- How use wp media upload liberary in react components?
- speed up pagination for huge database
- WP Insert Post If user refreshes override new post
- Custom Plugin: How to Include Install Buttons of other 3rd Party Plugins?
- Problem with conditional woocommerce custom checkout field
- Editing Global Variables from Inside Functions
- Posting code inside the post instead of in the template file using shortcode
- Place max_execution_time in plugin [closed]
- Function not being called on form submit, only blank admin-post.php page
- WordPress Convert queries to slashes using function.php
- Can I send a body using wp_remote_get()?