baldguy67
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Online Store] Strick Standards message on store Home PageThere may be help in this post:
https://wordpress.org/support/topic/strict-standards-error-at-html_outputphp?replies=8
Forum: Plugins
In reply to: [WP Online Store] keep getting an error on my pages.There may be help in this post:
https://wordpress.org/support/topic/strict-standards-error-at-html_outputphp?replies=8
Forum: Plugins
In reply to: [WP Online Store] WP Online StoreIt may be that you have the Paypal payment gateway enabled. There are two paypal gateways – one is ‘standard’ and I cannot remember the name of the other – but the second of these gateways is enabled by default and it needs an API to work correctly. Try turning off (disabling) the second of the two paypal gateways.
Forum: Plugins
In reply to: [WP Online Store] What happened to the website for WP Online Store?Support and development for this plugin has been discontinued:
https://wordpress.org/support/topic/plugin-no-longer-supported-2
Forum: Plugins
In reply to: [WP Online Store] Installing the StoreYou are not doing anything wrong. The store comes with demo products so you can play and test with the store plugin before populating with your own.
You can ‘format’ the store (remove all products and categories) but going to Quick Start > Delete Demo Products.
Forum: Plugins
In reply to: [WP Online Store] WP-Online Store Database TablesThese are my notes taken from an article I wrote for the WPOLS Knowledgebase. I think you may also get to see a more complete list of the DB tables created by looking in the wponlinestore.php file in the WP Online Store folder. I hope this helps:
If you have a database back up, you can recreate your store (products, customers, orders, et al), by importing DATA ONLY from the store database tables of your back up into a clean (no products) install of the plugin. This requires some mySQL knowledge and it may mean that you install the complete backup of your old database into a secondary database in order to extract the tables you need as DATA ONLY. There are close to 20 tables that the store uses so you will have to figure out which ones you want to keep. Here is a list of most of the tables created. You may not need to move them all – it all depends upon how many changes you have made in your store. Use your eyes and judgment by comparing your old tables to the new ones:
Categories:
categories
categories_description
Store configuration:
configuration (probably only the first 30 rows)countries (if you have modified any default store data)
currencies (if you have modified any default store data)Customers:
customers
customers_basket (I don’t think you will need this one)
customers_basket_attributes (I don’t think you will need this one)
customers_info
customers_to_discount_codesdiscount_codes
eorder_textIf you have added Extra Product Fileds:
extra_field_labels
extra_field_values
extra_product_fields
extra_value_excludefiles_uploaded
geo_zones (if you have added/modified zones)information
information_group
languages (if you have added another language)manufacturers
manufacturers_infonewsletters (if you have any newsletters)
Customer Orders:
orders
orders_products
orders_products_attributes
orders_products_download
orders_status
orders_status_history
orders_totalProducts:
products
products_attributes
products_attributes_download
products_description
products_imagesproducts_notifications
products_options
products_options_values
products_options_values_to_products_optionsproducts_shipping
products_to_categories
reviews (if you have product reviews)
reviews_description (if you have product reviews)
sessions (I don’t think you will need this one)
slideshow (if you homepage slideshows)
specials (if you have created specials)
tax_class (if you have modified any default store data)
tax_rates (if you have modified any default store data)The product images will have to uploaded into the image folder, as would any modified files you have backed up (such as CSS files).
Forum: Plugins
In reply to: [WP Online Store] Database connection errorI believe this error: ‘Deprecated: Function ereg() is deprecated’ is caused by a newer version of PHP.
One possible work around is to use preg_match instead of eregi on the lines where the error occurs. This also involves modifying the code slightly which comes after it.
For example, search the text for the line specifying the error, such as:
ereg(‘<Days>(.*)</Days>’, $transresp[$service], $tregs);
and change it so it becomes:
preg_match(‘/<Days>(.*)<\/Days>/’, $transresp[$service], $tregs);
note the additional / (slash)
You may also have to modify split to preg_split:
$table_cost = split(“[:,]” , MODULE_SHIPPING_TABLE_COST);
becomes
$table_cost = preg_split(“/[:,]/” , MODULE_SHIPPING_TABLE_COST);
I found this information at: http://takien.com/513/how-to-fix-function-eregi-is-deprecated-in-php-5-3-0.php
Forum: Plugins
In reply to: [WP Online Store] wp online store add productThere is a feature in the store called Easy Populate which allows you to upload a CSV file full of your products/categories. Most databases should export to a CSV file. You may have to manipulate the file a little to get it into the format that the store would recognize, eg, the correct column headings, etc.
More Info:
http://help.wponlinestore.com/index.php?/Knowledgebase/Article/View/13/0/easy-populateYou will not be able to hide products based upon the location of the user/customer.
To change the label for any part of the store you will have to edit the language files. There is more information here:
http://help.wponlinestore.com/index.php?/Knowledgebase/Article/View/95/0/editing–changing-some-of-the-text-which-appears-in-the-store—language-filesForum: Plugins
In reply to: [WP Online Store] FIS Payment Gateway?Yes it is a one time fee for the additional plugins.
If you have a payment gateway you would like added to the plugin, we can add it for you for a fee to cover our programming time. Please contact me for more details: mark@wponlinestore.com
Forum: Plugins
In reply to: [WP Online Store] Easy Tax Application in WP e-Commerce?In WP Online Store you set the tax rate for the area where you want tax charged and then for each product you select if it is taxable or not. If the product is classified as taxable then tax is added to the product when in the shopping cart based upon the customers address. IE. if you are in Florida and your customer is in Florida then they would be charged tax for Florida. If they are not in Florida then they would not be charged tax. You can set up multiple tax zones if you charge different tax for different locations. Basically I think you are right by your first statement, but I do not quite get what you mean by your second statement – you have to assess tax on a per item basis as not all items can be taxable. There is an option within the store to display the product price including tax on the product page, or just display the additional tax during checkout.
http://help.wponlinestore.com/index.php?/Knowledgebase/Article/View/51/0/locations–taxes–zones
Forum: Plugins
In reply to: [WP Online Store] PayPal Website Payments ProYes it does but you will need the Additional Payment Gateway Plugin. A list of the gateways included in the plugin can be found here:
http://wponlinestore.com/payment-gateways/Click on the Paypal Pro links to see a screenshot of the settings that the Paypal Pro module asks for to make sure it is what you are after.
Forum: Plugins
In reply to: [WP Online Store] Images and product description appearance controlThe only way to change this is to change the layout within the code of the product_info.php. You will need a basic grasp of HTML/PHP. It is not something that an average user can do.
Forum: Plugins
In reply to: [WP Online Store] Re-install Payment ModulesYou could try to deactivate the payment plugin then remove it (delete all files) – make sure that you have your original zip file or download it again from your account where you purchased it from.
Once deleted, try re-installing it from scratch.
Forum: Plugins
In reply to: [WP Online Store] updatesThe latest version of PHP is causing quite a headache for us. I have more information (but I’m afraid no solution) here:
http://wponlinestore.com/issues-with-the-latest-version-of-php-5-4/
Forum: Plugins
In reply to: [WP Online Store] Error when trying to delete categoriesI tested this and it did it on my development site as well. Given some time I shall try and look into this issue. I did notice that, even with the error appearing, it did delete the categories I tested with.