• Resolved danilos9

    (@danilos9)


    Hi dear, thanks for this plugin god job!!!

    One question,i need put only ONE voice for all post with numbers “ex.[0-9]” in listing.

    Example pictures:
    EXAMPLE PICTURE

    • This topic was modified 7 years, 2 months ago by danilos9.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Dani Llewellyn

    (@diddledani)

    Hi,

    Currently this is only possible by using the filter provided by the plugin to add the numbers, and a custom template which replaces the call $a_z_listing->the_letter_title(); but this requires knowledge of PHP programming. Specifically the filter: a-z-listing-alphabet to add the numbers as a single group, and in the template replacing the call to $a_z_listing->the_letter_title() with something like:

    $title = $a_z_listing->get_the_letter_title();
    if ( '0' === $title ) {
        echo '0-9';
    } else {
        echo esc_html( $title );
    }

    I am working on an update to the shortcode that will include this functionality out of the box, without any additional programming by the site-owner. I still need to test it more before I’m happy to release it, but please know that it is in the pipeline :-).

    Thread Starter danilos9

    (@danilos9)

    ok, i will wait for an update, thanks!

    • This reply was modified 7 years, 2 months ago by danilos9.
    Thread Starter danilos9

    (@danilos9)

    Many thanks Daniel, i solved with your new update! Excellent job

    • This reply was modified 7 years, 2 months ago by danilos9.
    Plugin Author Dani Llewellyn

    (@diddledani)

    I’m glad your problem is fixed by the new release ?? Sorry I didn’t get here to alert you about the new release promptly.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Single voice for Number Listing (0-9)’ is closed to new replies.