Forum Replies Created
-
AuthorPosts
-
Anh Tran
KeymasterHi pza,
Currently, all text in the builder are plain text. They're fixed and not translatable. I'd suggest exporting to code, and use Loco Translate plugin to translate the labels.
February 13, 2019 at 1:55 PM in reply to: Custom Post Type and Custom Field Type Unaccessible #13296Anh Tran
KeymasterHi Sean,
Can you edit the post type again (under Meta Box > Post Types) and make sure all labels are filled?
February 13, 2019 at 1:50 PM in reply to: Trying to display all the possible connection to a post #13295Anh Tran
KeymasterHi Vee Jay,
In
MB_Relationships_API::each_connected, you setpropertydifferent for each connection. So to get them all, use this code:while ( $my_query->have_posts() ) : $my_query->the_post(); // Display connected pages foreach ( $post->connected_confs as $post ) : setup_postdata( $post ); the_title(); endforeach; wp_reset_postdata(); foreach ( $post->connected_posts as $post ) : setup_postdata( $post ); the_title(); endforeach; wp_reset_postdata(); foreach ( $post->connected_press_items as $post ) : setup_postdata( $post ); the_title(); endforeach; wp_reset_postdata(); endwhile;Anh Tran
KeymasterHi Axel,
Sorry for late reply. We've just been through the Tet holiday.
I've just check and could replicate the error. I'll provide a fix soon.
Updated: I've fixed the bug. Waiting to merge the code in this topic, then I'll release new version.
February 13, 2019 at 11:59 AM in reply to: ✅Only auto populate neighborhood field if not empty #13293Anh Tran
KeymasterThanks for your help!
I've sent an invitation to you on Bitbucket, so you can have access to the repo and open a PR!
Cheers!
February 13, 2019 at 11:55 AM in reply to: Connect email address in Beaver Builder contact form using BB integration #13292Anh Tran
KeymasterHi Albert,
I've just tested with the contact module and it works fine. Here is my video: http://recordit.co/hHSiVIlfQV. Can you please take a look?
PS: In my test, I use MailTrap to catch all emails and Easy WP SMTP to setup SMTP.
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.
-
AuthorPosts