Luigi Castagna
asked 10 years ago

Do you have a lite version of this theme with no easy digital download stuff?
I just purchased the theme and tried to use it with the WP estore plugin (another cart).
This plugin adds an icon to the post to include the cart, but this is what I have:

Fatal error: Class ‘RW_Meta_Box’ not found in /home/…/themes/dw-argo/inc/config-meta-boxes.php on line 21

It is working with my fine with other themes, so I believe the problems comes from some files of edd.
Of course edd is disabled.

1 Answers
Kido D
answered 10 years ago

Hi Luigi,
To resolve this issue, you can open up the config-meta-boxes.php file in themes/dw-argo/inc folder, find the code below:

function dw_register_meta_boxes() {

… and change it into this:

function dw_register_meta_boxes() {
if ( ! class_exists( 'RW_Meta_Box' ) )
return;

Let me know If you still face the issues. Thank-you!

Luigi Castagna
replied 10 years ago

thanks, it works.

Powered by DW Question & Answer Pro