stonefree
Forum Replies Created
-
Hi Otto or djbrock,
I’m having the same issues with PIN as djbrock, but I’m not seeing a Callback URL field anywhere. Can you elaborate?
To summarize :
1) I click “Sign in with Twitter” on your plugin (0.15) settings page
2) The “Authorize App” screen comes up
3) After clicking authorize it gives me a PINForum: Plugins
In reply to: [plugin: Simple Facebook Connect] Breaks wp e-commerceAfter a couple hours or research I found a solution. Apparently the problem affects a few other plugins as well. Not sure the exact problem, but it seems to have something to do with plugins that alter the main database query. See here for a detailed discussion between Otto and another plugin developer.
Anyways, to fix the issue with WPEC, go to sfc-base.php and look for function sfc_base_meta. This is where the problems are happening. Look for if (is_singular()) {
global $wp_the_query;After this I included
if ($wp_the_query->query_vars['pagename'] == 'store' || $wp_the_query->query_vars['post_type'] == 'wpsc-product') return;
You may have to modify this a bit depending on how your store is set up and the complexity of it, but this seemed to do the trick for me. Basically, it ends the function if I’m on the “Store” page (for wpsc-products_page.php) or if I’m on a single product.
There’s still the minor issue of the Publisher module causing a fatal error (“Fatal error: Call to a member function get() on a non-object in /wp-includes/query.php” ) when trying to Edit Page for “Store”, but that’s not something you’ll likely need, and can always disable the Publisher module if needed.
Hope this helps!
shadyvb, thank you for your very timely reply. I was just wrestling with the issue and your reply was the only info I found. Posted mere hours before I had the issue too!
it parses the content for [jwplayer] tags and converts them,using regex.. i wonder why anyone would do that!
According to the comments on JWShortcode.php –
Re-implementation of the WordPress functionality was necessary as it did not support ‘.’
What a hassle! I don’t get why period support is an issue though. Why does JW Player need that?
Forum: Plugins
In reply to: 1 Pixel Audio Player doesn’t work in WP E-Commerce product descriptionHi supertheman7,
That’s a great tip for adding HTML and JS, but it didn’t work for me with the Audio Player’s shortcode.
Forum: Fixing WordPress
In reply to: problems importing MySQL databaseHere’s a bit of additional info-
A second site, that was much simpler in content, imported fine. I was also able to import an earlier version of the problem site fine a couple months ago. Unfortunately I don’t have that earlier sql file to test again.