Pricing table module

Hi

We are looking implementing a pricing table in our project and I was just wondering on the pricing table that you use yourself on http://forum.wpbeaverbuilder.com/pricing/. I guess it is a custom module, would you mind share how you set it up?

Thanks!

/Johan

Hi Johan,

Thanks for asking. The table on our pricing page is actually built with 3 heading, html and button modules and some CSS.

We do plan on building a pricing table module, but that probably won’t be worked on until later this year. In the meantime, you might consider trying this pricing table plugin that you could insert into a builder layout via a shortcode…

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

I hope that helps!

Justin

Hi

We decided to use this plugin for pricing tables, https://wordpress.org/plugins/easy-pricing-tables/, but it seems to create some conflict when I put its shortcode in a text editor on the page.

When I have the shortcode in the text editor it seems like no change is rendered until I click “Done” and “Publish changes”.

So eg. if I put the shortcode in a text module and click “Save and finish” the pricing table is not rendered but when I click “Done” and “Publish changes” it shows correctly on the page. Then I can go back to the page builder view and see the pricing table rendered but no changes that I make render until I click “Done” and “Publish changes” again.

Hope you can reproduce the error with this information and come with suggestions on how to solve it.

We have also lost data from 2 pages which I am suspecting is connected to this issue, but I will have to come back to you on that if it continues.

Thanks

Johan

Hi Johan,

We were made aware of this shortcode bug by another customer this week. I’m working on having a fix out asap.

Thanks,
Justin

Hi Johan,

It looks like this shortcode issue is actually unrelated. The pricing table plugin actually has a bug. You can find my solution at the following link…

http://wordpress.org/support/topic/pricing-table-stuck-at-top-of-page?replies=3#post-5874735

The plugin author will need to release a fix for that but you can implement it yourself in the meantime.

Justin

Hi Justin

Thanks for a quick reply.

We are actually using another plugin than the one you mention, even though their names are very similar.

The one we use is https://wordpress.org/plugins/easy-pricing-tables/.

But could it be the same issue?

Thanks

/Johan

Hi Johan,

The issue with that plugin is similar and has been fixed. We’ll push out a release in the next day or two.

Thanks,
Justin

Hi Justin

Really appreciate the help!

We are looking at launching a project with these pricing tables by the end of the week, any way we could apply the fix manually or a work around just to make sure we can launch on-time?

Thanks once again

Johan

Hi Johan,

Sure! You can replace the contents of the method “render_layout” in classes/FLBuilder.php with this…

// Enqueue jQuery here so WordPress widgets don't try to include it.
wp_enqueue_script('jquery');

// Render the layout.
ob_start();
self::render_rows();
$html = ob_get_clean();

// Process shortcodes.
ob_start();
echo do_shortcode($html);
$html = ob_get_clean();

// Get the asset info. 
$asset_info = FLBuilderModel::get_asset_info();

// Echo a JSON encoded object with the layout data.
echo json_encode(array(
    'html' => $html,
    'css'  => $asset_info['css_url'],
    'js'  => $asset_info['js_url']
));

// Return the response.
die();

That method should be at line 428.

Justin