• Resolved joemudaka

    (@joemudaka)


    Hi JW Themes,

    The function, pricing_function() (main plugin file line 139 I think), that generates shortcode contents starts output buffering but does not end and return the contents to WP. The result is the Pricing table appears where it should not.

    Also is is possible to have the table without the Time Duration, for payments that’s one time only.

    Thanks
    Joe M.

    PS: Excellent plugin. I really want to use it because it’s the best I’ve seen around but I’m too lazy to touch PHP code.

    https://wordpress.org/plugins/easy-pricing-table-manager/

Viewing 6 replies - 1 through 6 (of 6 total)
  • This is occuring for me as well. moving to the top of the article rather than staying within the flow of the page. when I copy the html output and place it where I want it, it stays where it should.

    +1 for making the pricing options per item rather than time based.

    Thread Starter joemudaka

    (@joemudaka)

    You can fix that by adding return ob_get_clean(); as the last line in the function pricing_function() in pricingtable.php

    Hi,
    I’m having this issue as well. I’m not sure where I can fix it. I see that I’m suppose to add

    ob_get_clean(); according to Joemudaka but I don’t know exactly where to put that.

    Any help would be appreciated.

    Thread Starter joemudaka

    (@joemudaka)

    Use the plugin editor. On the first file that comes up (should be pricingtable.php), search for the line function pricing_function. Use the browser search (Control + F), will bee much faster. return ob_get_clean(); is added at the very end of that function.

    This is what it’s likely to be:

    // Plugin code
    <div style="clear:both"></div>
        </section>
    
    <?php
        return ob_get_clean(); // <======= HERE IS WHERE YOU PLACE THE LINE
    }
    class easy_pricing_table_widget extends WP_Widget{
    //...more plugin code

    I hope this helps.

    YES IT DID!!

    THANK YOU!

    Plugin Author JW Themes

    (@jwthemes)

    Now We have fix this issue in new version
    keep supporting
    Thanks

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Forgot to close output buffer’ is closed to new replies.