Forum Replies Created
-
AuthorPosts
-
happychesMember
As per previous reply, this is from https://www.elegantthemes.com/forum/viewtopic.php?f=61&t=23928
WP eStore is the more advanced and premium version of Simple PayPal Shopping Cart, to use this ecommerce plugin, follow these simple instructions:
we will be editing “includes/single-product.php” file of the eStore theme from elegant themes:
1. Find this line of code and delete it or comment it out
<a href="#" class="addto-cart"><span><?php _e('Add to cart','eStore'); ?></span></a>
2. find this section of code
<div class="description">
<p><?php echo($et_description); ?></p>
</div> <!-- .description -->and replace with
<div class="description">
<?php $prod_id = get_post_meta($post->ID, 'prod_id', true); ?>
<p><?php echo get_button_code_for_product($prod_id); ?></p>
<p><?php echo($et_description); ?></p>
</div> <!-- .description -->3. Now all you have to do is use “prod_id” as the name of a new custom field with the product id number in the value
/// Source: https://www.elegantthemes.com/forum/viewtopic.php?f=61&t=23928
It’s probably best to go directly to the source and see other peoples suggestions and edits as well.
Also note: I have not yet tried this.
happychesMemberI’m also trying to figure this out. Since I followed their link to the WordPress Simple Paypal Shopping Cart Plugin, and thought the premium version “WP eStore” must’ve been a perfect match because they had the same name, oops. I didn’t actually consider that it was a different plugin and wouldn’t work. Looks like it might be just easier to use the free version for this particular site instead as I don’t have time to figure this out.
However in case someone else is keen to get it working, their docs don’t have anything about “3rd Party Shopping Cart Integration”, their support forum is full of complaints about being ignored (their lack of documentation is why they have thousands of posts in there anyway) and their search feature on their forum is broken at the moment
One person has responded to their request though and it’s located here:
https://www.elegantthemes.com/forum/viewtopic.php?f=61&t=23928
(you might have to login to view – I’ll try and post their instructions in the next reply).
One person responded that it messed up their site by following those instructions but the rest of the people who responded said that it works for them.
In relation to the shopping carts, their docs just state:
eStore it self does not include any ecommerce functionality. Instead, we have made an effort to make our theme compatible with some already-existing and widely-used plugins. In not building the theme around a specific ecommerce platform, it also becomes much easier for the theme to be used with a wide array of plugins. That being said, we have pre-integrated two plugins, either of which will be the easiest to use.
1. Simple PayPal Shopping Cart – This plugin is refreshing in its simplicity, but also lacks certain features found in other plugins. If you are looking for a really easy way to get your store off the ground, this is probably the plugin for you. The plugin will automatically use the price settings defined with each post from within the ET Settings, and the “ADD TO CART” button on each post page will work automatically as well. All you have to do is configure the plugin’s main settings and you are good to go.
2. eShop – This plugin offers more functionality, but also requires more configuration to set up. After enabling the plugin, you will see a new set of options (labled “Product Entry”) added to each post under the text editor. You will need to fill out this information for each post, and then check the “stock available” option. After you have input the product information, you will notice that clicking the “Add Cart” button will reveal the product’s add to cart feature. You will also need to configure the main eShop plugin settings, which are well documented within the eShop page in wp-admin.
-
AuthorPosts