BuddyDev

Search

Tabs Creator User Interface Issue

  • Participant
    Level: Enlightened
    Posts: 47
    Kathy Geisler on #32363

    Hi,

    The user interface for Tabs Creator isn’t working with Geodirectory.

    Can you help with this?

    Thank you!!

  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #32364

    Hi Kathy,

    I am sorry for the experience.

    We have reported this issue earlier to Geodirectory via one of our members. The problem lies with Geodirectory trying to add tinymce buttons for Non Post content section.

    I will look for the code to disable it and post back in couple of hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #32377

    Hi Kathy,
    Thank you for the patience.

    The problem is caused by this line in Geodirectory plugin

    
    				// add shortcode insert button once
    				add_action( 'media_buttons', array( $this, 'shortcode_insert_button' ) );
    

    It is in geodirectory/vendor/ayecode/wp-super-duper/wp-super-duper.php

    There is no reliable way to remove it.

    here is a temporary solution.

    
    add_action( 'bpptc_post_type_admin_enqueue_scripts', function () {
    	remove_all_actions( 'media_buttons' );
    } );
    
    

    This is not the right way to handle issue but will make the plugin workable for now. It removes any other plugin hooking to tinymce editor on the profile tabs creation/editing page.

    Regards
    Brajesh

  • Participant
    Level: Enlightened
    Posts: 47
    Kathy Geisler on #32390
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #32396
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24149
    Brajesh Singh on #33357

    Hi Kathy,
    Hope you are doing well.

    Just updating that The BuddyPress User Profile Tabs Pro 1.2.1 contains the fix and you do not need the cusotm code anymore.

    Regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: not resolved