• Resolved haha taduko

    (@shimodar)


    Hi, there

    I downloaded and activate your plugin “table caption extension https://tablepress.org/extensions/table-caption-html-tag/”, but after activated the caption tag bracketed table name not table description.

    >> Before Activated:
    <span class=”tablepress-table-description tablepress-table-description-id-1″> ***
    description *** </span>
    https://tablepress.org/extensions/table-caption-html-tag/

    and

    <caption class=”tablepress-table-caption tablepress-table-caption-id-1″>Edit</caption>

    >> After Activated:
    <span class=”tablepress-table-description tablepress-table-description-id-1″> ***
    description *** </span> ->

    and

    <caption class=”tablepress-table-caption tablepress-table-caption-id-1″> *** its table name *** Edit</caption>

    I’ve been wondering this react.

    I’m afraid but I want to know if this action is bug or designed policy.

    What I really expect is after activating,

    “table description” is moved from <span> tag to <caption> tag.

    Best regards,

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your post, and sorry for the trouble.

    You are right, by default, this Extension writes the table name into the caption. To have the description show there, just change the PHP code of the Extension, by modifying the line

    $caption = preg_replace( '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,4};)/', '&', $table['name'] );
    

    to

    $caption = preg_replace( '/&(?![A-Za-z]{0,4}\w{2,3};|#[0-9]{2,4};)/', '&', $table['description'] );
    

    Regards,
    Tobias

    Thread Starter haha taduko

    (@shimodar)

    Hi, tobiasbg

    It worked!

    Much appreciated with you!

    I’m sorry but I have a more question.

    I want to know the way if there are kill/suspend the original tablepress css.

    Best regards,

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    Good to hear that this helped!

    For the CSS question, please see https://www.ads-software.com/support/topic/how-to-dequeue-default-style/#post-9277743

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

    Thread Starter haha taduko

    (@shimodar)

    Hi, tobiasbg

    It helped so much!!

    Thank you such great information, it worked perfectly.

    Appreciated.

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ??

    Best wishes,
    Tobias

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘“table caption extension” plugin makes its table name put into “caption tag”?’ is closed to new replies.