Hey, I found it !!
I was browsing the plugin’s php files and saw a file called -custom-fields.php
It turns out eShop does indeed store it’s data in custom fields;
Here’s the overview of a few examples:
$sku = get_post_meta( $_REQUEST[ 'post' ], '_Sku' );
$prod=get_post_meta( $_REQUEST[ 'post' ], '_Product Description' );
$shiprate = get_post_meta( $_REQUEST[ 'post' ], '_Shipping Rate' );
$featured = get_post_meta( $_REQUEST[ 'post' ], '_Featured Product' );
$stkav = get_post_meta( $_REQUEST[ 'post' ], '_Stock Available' );
$stkqty = get_post_meta( $_REQUEST[ 'post' ], '_Stock Quantity' );
$optsets = get_post_meta( $_REQUEST[ 'post' ], '_eshoposets' );
So, in page.php
(or page-product.php
if you have a seperate Page Template for it (which I’d recommend))
You can use something like this:
$prodDecr = get_post_meta($post->ID, '_Product Description', true);
if (!empty($prodDecr)) {
echo "<span class='product-description'>" . $prodDecr . "</span>";
}
Apparently the plugin changes in the past 10 months and/or the Elfin/topic-starter ment something else.
—
gd