Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi Adrien,
It's not possible with WordPress. However, you can do this with a help of LH User Taxonomies plugin.
Anh Tran
KeymasterHi,
Passing IDs directly in the
post__inparameter will generate a SQL query like this:SELECT * FROM wp_posts WHERE ID IN (1,2,3)It doesn't generate
ORstatement as you thought.Because the ID is the primary key of the posts table, this query is performant and faster than normal queries.
If you're worry about getting 5000 records from the DB, then imaging this technique as breaking a very slow query (if you do the normal way with WP_Query and JOIN) into 2 fast SQL queries. Although the number of queries increases, the performance is much better.
Anh Tran
KeymasterPlease send me the credentials via the contact form (link above). It's secured.
July 6, 2019 at 10:46 AM in reply to: ✅Serialized array for select_advanced saves incorrectly on front-end submission #15271Anh Tran
KeymasterThanks a lot for your debug info! I'm going to check it now and hopefully will get it fixed soon.
Updated: I recorded a video for this problem: https://www.loom.com/share/8ec338cc383b4917973967f27c177971. I couldn't replicate it. Can you see and let me know if I did anything different from your side.
Anh Tran
KeymasterHi Adrien,
I'm afraid the plugin only supports static value. There's no way to make it understand the dynamic value at the moment.
Anh Tran
KeymasterIt's a little rush of you. Let me know if you find anything buggy from now on.
Anh Tran
KeymasterOK. At least it works for now as you can't reproduce the issue. Let me know if you need any help!
Anh Tran
KeymasterHi Cedric,
1st question: It depends. Both ways work. The 1st one seems to show users the content, while the 2nd one seems to be more cleaner.
2nd question: To show the title, but don't want to let users edit them, you can use 2 methods:
- Use a little PHP to output the post title (and exclude post title field from the form shortcode)
- Or modify the template for post title field (see this guide) and add a new param
'readonly' => trueto let users not able to edit it.
Anh Tran
KeymasterThis is fixed in the version 4.18.4 of Meta Box. Please update.
Anh Tran
KeymasterHi, please change the code to:
$object_imgs = isset( $object['dekor_image'] ) ? $object['dekor_image'] : array(); if ( ! empty( $object_imgs ) ) { foreach ( $object_imgs as $object_img ) { $image = RWMB_Image_Field::file_info( $object_img ); echo '<a href="'. $image['full_url'] . '" rel="fancybox"><img src="' . $image['full_url'] . '" alt="' . $image['alt'] . '" /></a>'; } }Anh Tran
KeymasterYou can get the email using this code:
$user = wp_get_current_user(); $email = $user->user_email;Anh Tran
KeymasterOk, no problem. I've just sent you the refund.
Have a nice day!
Anh Tran
KeymasterHi netalys,
I've just tested with a select field and 60+ options. I didn't see any problem with the performance. Please see this video:
Anh Tran
KeymasterHi netalys,
Can you check on your database using a tool like phpMyAdmin to see if the post content and post excerpt is there for the post?
-
AuthorPosts