Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Ale,
This is not an error, the new feature (upload to custom folder) requires PHP >= 5.3. I guess you're using PHP 5.2. Please upgrade your PHP (it's best to upgrade to PHP >= 7.2).
February 13, 2019 at 11:26 AM in reply to: ✅Is it possible to get the thumbnail of a "relationship" post? #13290Anh Tran
KeymasterHi Vee Jay,
After you call
$connected_pub2peeps->the_post(), you can output the featured image using the_post_thumbnail() function.Anh Tran
KeymasterHi Vee Jay,
The
rwmb_metareturns a term object, so if you echo$ptf->name, you output only its name.It's better to use:
rwmb_the_value( 'pub_type_field' );Or:
$ptf = rwmb_meta( 'pub_type_field' ); printf( '<a href="%s">%s</a>', get_term_link( $ptf ), $ptf->name );Anh Tran
KeymasterWhen you extract the downloaded
zipfile, please change the folder name tomb-elementor-integrator. Then upload it to your site, overwrite the existing plugins (or you can delete the old plugin first, then install this one).February 13, 2019 at 10:59 AM in reply to: ✅MB Group "std" is not showing up in settings page #13287Anh Tran
KeymasterHi Joe,
Thanks for your contribution. Your code respect the
stdin child field, so it's good. However, it fails with Razib code above. I have commented on your PR. Please update it so I can merge.Anh Tran
KeymasterI'm not aware of any method that can stop WordPress from saving post. I found a good discussion on this topic that might be useful in this case.
February 13, 2019 at 10:06 AM in reply to: ✅Updated Meta Box plugin -> Add Page/Edit Page show blank page #13284Anh Tran
KeymasterHi,
This error comes from outdated version of MB Group. Please renew your license and update the extension.
Anh Tran
KeymasterHi,
Looks like the bug is in JS. Can you export the field group and give me the exported file to check?
Anh Tran
KeymasterHi,
We are using a technique that preserves the order of selected options in select2. This technique triggers an event
changeafter it reorder the options. So that might causes the duplication.In reality, you might cache in the event listener to make sure your code run only once.
February 11, 2019 at 4:18 PM in reply to: ✅Change Destination Of Custom File Upload Field Type #13257Anh Tran
KeymasterHi David,
If the folder is not successfully created, or there's any error when uploading files to that folder (for various reasons such as exceed max file size upload, file type is not allowed, folder permission, etc.), then the file simply not uploaded and saved.
At the moment, we don't have an error reporting. So, if you don't see any value saved, you just know something wrong.
February 11, 2019 at 4:15 PM in reply to: ✅Custom field that adds option groups (optgroup) to select field #13256Anh Tran
KeymasterThanks a lot for your help. I've added it to the code snippet library.
Anh Tran
KeymasterThanks a lot for your feedback! I've just fixed it.
Anh Tran
KeymasterHi,
The support for term meta is not available in the wordpress.org version yet. We have finished the coding on Github, but we need a couple of days to test it. In the meantime, please download the latest version here and try:
https://github.com/wpmetabox/mb-elementor-integrator/tree/term_setting_page
February 11, 2019 at 4:02 PM in reply to: ✅Login issue when " character is used in a password #13253Anh Tran
KeymasterHi HerrMoier,
Thanks a lot for your feedback. I've just fixed the bug in version 1.1.4. Please update. (AIO package will be updated later).
Anh Tran
KeymasterHi Hazmi,
I've just tested the code and it works. As you can see in this screenshot, the date appearing in the input is
20-02-2019, but its value in the custom field is2019-02-20:Can you please try again?
-
AuthorPosts