Forum Replies Created
-
AuthorPosts
-
April 10, 2019 at 7:57 PM in reply to: โ multiple taxonomy fields using a single taxonomy on the same page bug! #14121
aaron
ParticipantOops...
This was my error:
'type' => 'taxonomy_advanced'I was setting the current posts taxonomy not saving the taxonomy ID!
aaron
ParticipantThanks Ahn,
Tested and all looks good ๐
Probably one of the scariest moments i've ever had! So pleased it up and running again.Thanks again.
November 6, 2018 at 8:22 PM in reply to: โ Bug: Checkboxes saved in custom table but shown in UI #11854aaron
ParticipantThank you very much,
working as expected now.+1
aaron
ParticipantHi tech500,
I want to use the MB Custom Table to allow my client an easy way to edit custom post types.
Are you giving your client access to the database to edit meta content rather than just editing the post?
November 5, 2018 at 6:42 PM in reply to: โ Bug: Checkboxes saved in custom table but shown in UI #11835aaron
ParticipantHas a fix been added for this? I'm seeing the same issue.
thanks.
aaron
ParticipantHi Anh,
After some head scratching I solved my 2nd issue.
I had a select menu to choose the content for each of the sections on the page. One of the options was'map' => 'Map',After changing this to another value it all worked perfectly?Thank you for taking the time with my initial problem.
Aaron.
aaron
ParticipantThank you for the great reply, this has lead to another issue.
The map won't display if contained within a condition.
For example if I check to see if an address exists for the map:
$contact_page_map_address = isset( $cp["{$prefix}contact_page_map_address"] ) ? $cp["{$prefix}contact_page_map_address"] : ''; if ( !empty ($contact_page_map_address) ) : $contact_page_map = isset( $cp["{$prefix}contact_page_map"] ) ? $cp["{$prefix}contact_page_map"] : ''; // Map Args $args = array( 'width' => '100%', 'height' => '480px', 'js_options' => array( 'mapTypeId' => 'HYBRID', 'zoomControl' => false, ) ); $map = RWMB_Map_Field::render_map( $contact_page_map, $args ); echo '<section class="map">' . $map . '</section>'; endif;If the condition is removed then the map displays perfectly.
I look forward to your reply. -
AuthorPosts