Forum Replies Created
-
AuthorPosts
-
June 8, 2018 at 8:13 AM in reply to: How to autopublish post entered thru Frontend Submission with all the fields? #10106
Anh Tran
KeymasterFYI: LFFprop has found a solution for this and here is his commend, in case someone needs it:
I managed to sort it all out.
I am no longer using the Reusable Text Block plugin to display all fields after the post data. Instead I have installed the After Content Widget plugin. This adds a widget area right after the post content. In there I use the Visual editor to create the layout and show all the fields.
June 7, 2018 at 5:19 PM in reply to: How to autopublish post entered thru Frontend Submission with all the fields? #10098Anh Tran
KeymasterMaybe you just write some PHP code to loop through all the fields and show them. Or I see you already use Shortcodes Ultimate, which allows you to create HTML shortcode. You can use it to display fields like:
Field 1: [rwmb_meta meta_key="field-1"]<br> Field 2: [rwmb_meta meta_key="field-2"]<br> ...As long as it supports running
rwmb_metashortcode, it will work.June 7, 2018 at 4:43 PM in reply to: How to autopublish post entered thru Frontend Submission with all the fields? #10095Anh Tran
KeymasterI've just tested the code and there's no error:
https://imgur.elightup.com/3IJnOek.png
I don't have the Text Blocks plugin, so it just show the shortcode. If you have it installed, then the content of the shortcode will be parsed and shown automatically.
June 7, 2018 at 3:30 PM in reply to: How to autopublish post entered thru Frontend Submission with all the fields? #10091Anh Tran
KeymasterWhich PHP version are you using? The snippet above requires PHP 5.3. Also, can you make a screenshot of the functions.php file after inserting?
Anh Tran
KeymasterI got it. Including
common.cssis too ambiguous. I'll replace it with only style from jQuery UI.June 6, 2018 at 4:30 PM in reply to: How to autopublish post entered thru Frontend Submission with all the fields? #10079Anh Tran
KeymasterYou should add that filter to your
functions.phpfile, something like this:add_filter( 'the_content', function( $content ) { if ( is_single() ) { $content .= do_shortcode( '[text-blocks id="showfields"]' ); } return $content; } );Anh Tran
KeymasterAh, I got it. Email and password are required to manually entered to update profile info. Perhaps only password is required, email should be auto filled. What do you think?
June 6, 2018 at 4:25 PM in reply to: ✅Conditional Logic based on selection in Checkbox List (using MB Builder) #10077Anh Tran
KeymasterHi,
I've just tried to set similar to you, and it works for me. Let me show you a video:
I also tested with tabs and it still works. Can you try again with just 2 fields?
Anh Tran
KeymasterHi Mauro,
I'll update the Builder and Geolocation extensions to make the API key part easier.
One question, I can show the address I type on the map, and the pin is placed in the correct location.
Updating the pin in the map regarding the address is out of scope of the Geolocation. It autopopulates the address parts only. The map is handled by the
mapfield.If I place the red pin elsewhere can I have it populate the address using the position of the pin instead?
I'm afraid there is no reverse process. Only one way from address to location.
Anh Tran
KeymasterHi, is the email/password issue resolved by your code in this topic?
June 5, 2018 at 9:56 PM in reply to: ✅'default_state' => 'collapsed', not collapsing group on load #10059Anh Tran
KeymasterHello, I've just tried your code and it works. Did you see any error in the console?
June 5, 2018 at 9:47 PM in reply to: ✅Conditional Logic based on selection in Checkbox List (using MB Builder) #10058Anh Tran
KeymasterHello, please try this:
Field: just use
c_country
Operator:contains. The value of a checkbox list is always an array. So it should "contains" your selection.
Value: the value of "Australia" that you set in the Options list of thec_countryfield.Please try and let me know how it goes.
Anh Tran
KeymasterHi Jose, is there any plugin that you installed on your site? Can you install this plugin and post the result here?
Anh Tran
KeymasterHi Garenor,
The Admin Columns extensions works partly with the custom table. It can show the data from custom table, but not sorting or searching. I'll update it to support custom table.
-
AuthorPosts