Bloke
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Google Analytics not workingI was able to work it out. WPEC was adding GA code and also had my custom code on the page. Was able to text it locally. Still can’t figure why Google will record most transactions correctly and sometimes the transaction amount is wrong. But that is another issue. I know its getting sent correctly. A transaction for $6,123.99 for example recording as $6.00. There isn’t a product for $6.00 and its not rounding it. This only has happened for 2 large transactions.
Forum: Plugins
In reply to: [WP eCommerce] spam users in wp_users after wpsc upgradeThe users never get completely deleted and every day the amount increases. It leaves about 15 each time it runs. So I have to go in and manually delete them. I delete them in the users table and user_meta. What is a SQL I can run to delete all anonymous users and user meta older than today for last 3 hours?
One of my plugins was loading jquery and it was causing the conflict. The map is working now.
Thanks. They are not publicly available plugins and were built just for my use. Also my site is not online. Is there something I can look for that might be conflicting? I tried commenting out the jquery in the map’s code to see if I could get it to work. Maybe there are two scripts conflicting.
Forum: Plugins
In reply to: [WP eCommerce] Turn off E-check payment option at checkoutI am using version 2.9.7.7 of GoldCart and there is no option to turn off E-check. I have a local version using 2.9.7.5 and it has the option to check to display it.
Forum: Plugins
In reply to: [WP eCommerce] e-commerce adding hundreds of users to wp_users in WP dbForum: Plugins
In reply to: [WP eCommerce] Making changes to user IDsIt still is not clearing the users like it should. It might clear some. Then leave a few days worth and start again. Seems it never works on the weekend. I have no errors in error log. Also if there is a temporary user that buys something and becomes a user, it won’t delete that entire days worht of temp users. I have this in my config.
ini_set(“memory_limit”,”74M”);/* ADDED to increase memory WP can use */
define( ‘WPSC_CUSTOMER_DATA_EXPIRATION’, 2 * 3600 );Forum: Plugins
In reply to: [WP eCommerce] Google Analytics not workingSince my last post it did record the transaction with the code above. On my settings I have enable Google Analytics checked. I have tracking code present unchecked and advanced mode unchecked. Also have my Google ID in the box. I hope to have another transaction soon so that I know its working. How should I have it set up instead of adding this custom code? Also it recorded the transaction amounts double. I read that this happens sometimes if someone bookmarks the checkout page?
Forum: Plugins
In reply to: [WP eCommerce] Thousands of users in wp-admin, created by e-commerceTake a look at this thread http://wordpress.org/support/topic/spam-users-in-wp_users-after-wpsc-upgrade
Forum: Plugins
In reply to: [WP eCommerce] Google Analytics not workingI tried this approach described here and it doesn’t work. Has anyone got it working? In WPEC there are settings so this should work without manually adding all this code.
Forum: Plugins
In reply to: [Theme My Login] Getting redirect to log in after deleting pageI figured it out. I looked up the post ID and compared it to other pages and posts. The GUID field had an incorrect URL.
Forum: Plugins
In reply to: [WP eCommerce] Screen options on products page not savingI found a temporary fix. Seems like its an issue if you have drag and drop turned on. When you are on the products page it lists all the products because pagination is disabled. I added this function found here here and its working.
function wpsc_dnd_cat_only_option_filter( $option ) { global $wp_query, $current_screen; if ( is_admin() && $current_screen->id == 'edit-wpsc-product' ) { if ( !isset( $_GET['wpsc_product_category'] ) ) { $option = 'id'; } } return $option; } add_filter( 'option_wpsc_sort_by', 'wpsc_dnd_cat_only_option_filter' );Anyone know how to do this?
Forum: Plugins
In reply to: [WP eCommerce] Screen options on products page not savingI looked in the database and its updated in the meta_key:
edit_wpsc-product_per_pageForum: Plugins
In reply to: [WP eCommerce] Is there a list of theme files changedI have read that its rare that those core files change. In my advanced theme settings some of the files have check marks. I can’t uncheck these if I do and re-save they remain. All theme files are in my main theme folder and four files are in my child theme are checked.