Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter Simpas81

    (@laboratorio35)

    found the solution, CAN YOU PLEASE add this inside your plugin->

    /**
    * Disable tinymce in product short description
    * because of conflict with mqtranslate
    * add this inside functions.php
    * @return array
    */
    function pdc_disable_tinymce_in_short_desc() {
    $settings = array(
    ‘textarea_name’ => ‘excerpt’,
    ‘quicktags’ => array( ‘buttons’ => ’em,strong,link’ ),
    ‘tinymce’ => false,
    ‘editor_css’ => ‘<style>#wp-excerpt-editor-container .wp-editor-area{height:175px; width:100%;}</style>’
    );
    return $settings;
    }
    add_filter( ‘woocommerce_product_short_description_editor_settings’, ‘pdc_disable_tinymce_in_short_desc’, 10 );

    Thread Starter Simpas81

    (@laboratorio35)

    SOLVED

    Hi,

    I tried everything but still has the same problem, any other suggestions? :/

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product Short Description in not editable’ is closed to new replies.