• Hi, I want to add the description of the stores to the store list, im using this code but is returning “…”, I’ve tried enabling different modules but it doesnt seem to do the trick.

    This is the code:

    `add_action( ‘wcfmmp_store_list_after_store_info’, function( $store_id, $store_info ) {
    $store_description = wcfm_get_user_meta( $store_id, ‘_store_description’, true );
    if ( $store_description ) { ?>
    <p class=”store-phone”>
    <?php
    $pos = strpos( $store_description, ‘ ‘, 250 );
    echo substr( $store_description, 0, $pos ) . ‘…’;
    ?>
    </p>
    <?php }
    }, 50, 2 );

    Further more, I have ultimate purchased for the site, went on to try and get email suppot and couldnt find a way… Any help at this point is appreciated.

    The page I need help with: [log in to see the link]

The topic ‘ULTIMATE – Store list description’ is closed to new replies.