Support Forum ยป User Profile

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • aaronaaron
    Participant

    Oops...

    This was my error:
    'type' => 'taxonomy_advanced'

    I was setting the current posts taxonomy not saving the taxonomy ID!

    in reply to: โœ…New post not adding to tables #11872
    aaronaaron
    Participant

    Thanks 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.

    in reply to: โœ…Bug: Checkboxes saved in custom table but shown in UI #11854
    aaronaaron
    Participant

    Thank you very much,
    working as expected now.

    +1

    in reply to: โœ…MB Custom Table - How to use #11853
    aaronaaron
    Participant

    Hi 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?

    in reply to: โœ…Bug: Checkboxes saved in custom table but shown in UI #11835
    aaronaaron
    Participant

    Has a fix been added for this? I'm seeing the same issue.

    thanks.

    in reply to: Can't display map added through clonable group #8116
    aaronaaron
    Participant

    Hi 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.

    in reply to: Can't display map added through clonable group #8113
    aaronaaron
    Participant

    Thank 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.

Viewing 7 posts - 1 through 7 (of 7 total)