Chris Runnells
Forum Replies Created
-
Forum: Plugins
In reply to: [Shopp Image Tools] Aug 23, 2016 – This Plugin still works!Yep! The core functionality hasn’t changed in Shopp, so this should continue to work for the foreseeable future. I’ll get around to updating the “works with” tag before too long! I also want to add a feature that cleans up orphan images that are left over in file storage after you delete a product.
Forum: Plugins
In reply to: [Shopp] Hook to listen to coupon code appliedMarking this issue resolved.
Forum: Plugins
In reply to: [Shopp] Hook to listen to coupon code appliedThere’s no need for a hook since it’s just a post variable. Just hook a function to the ‘shopp_cart_request’ action, and check for the presence of $_REQUEST[‘discount’]. Then check the discount code entered against your specific discount code, and do the product swap from there.
Forum: Plugins
In reply to: [Shopp Admin Extras] Status Change Not SavingIt’s actually meant to link to the next (and previous) pending orders, to help with processing new orders. I could change it (or make an option page) to cycle through all orders instead. What do you think?
Forum: Plugins
In reply to: [Shopp Admin Extras] Status Change Not SavingHey Jackson, thanks for the report. I fixed the problem and 1.0.1 should be coming down the pipeline momentarily!
Forum: Plugins
In reply to: [Shopp Minimum Order] Getting error message even when over the minimumLuckily someone else reported the issue yesterday, and I finally got a chance to sit down and fix it. Thanks for using my plugin!
Forum: Plugins
In reply to: [Shopp Minimum Order] Getting error message even when over the minimumHey Morgan, I just pushed a fix (1.3.1) that resolves this problem. Sorry for the hassle but it should work now 🙂
Forum: Plugins
In reply to: [Shopp] Looking for an option in a pluginYes, Shopp supports product variations and options that should be able to get you this kind of functionality.
Forum: Plugins
In reply to: [Shopp] Shop iMAGESAlexandru, yeah should be possible. All of the images that *are* used in Shopp are stored in the wp_shopp_meta table. It would take a custom script, but basically you’d want to make a list of all of the files in that folder, then remove the images that are being used by Shopp (found in wp_shopp_meta, use this SQL: SELECT * FROM
wp_shopp_metaWHERE type=”image”) then delete the rest. Obviously, you’ll want to backup your files first, but that’s the way to get rid of them.Forum: Plugins
In reply to: [Widget Context] Strange Things Are Happening to Me…What’s even more unfortunate is that I think it’s a simple fix. When I have some time I’ll look into it.
FYI – there’s another thread in the support forums by the author with a new alpha 1.0 version, but I haven’t looked into it and frankly I don’t like using beta software on client sites unless I’m actively working on the site. It’s entirely possible that this new version addresses this problem, but I don’t know for sure. The thread is here:
http://ww.wp.xz.cn/support/topic/beta-testers-wanted-for-widget-context-10?replies=12
Forum: Plugins
In reply to: [Widget Context] Strange Things Are Happening to Me…I’ll be looking. I’m disappointed because this is the best one I’ve used so far, but you can’t use a broken plugin on a client web site.
Forum: Plugins
In reply to: [Widget Context] Strange Things Are Happening to Me…Same here, but it seems like the author isn’t working on the plugin anymore. There’s a report on this same issue from a year ago, and it hasn’t been resolved in that time.
Forum: Plugins
In reply to: [WP-Filebase Download Manager] WP Filebase Breaks SSLI removed the filters from the content on my e-commerce pages:
add_action( 'loop_start', 'remove_unneeded_filters', 999 ); function remove_unneeded_filters() { if ( is_shopp_page() ){ remove_filter( 'the_content', 'WPFB_Core::ContentFilter', 10 ); remove_filter( 'the_content', 'FPTMain::OutputToContent', 10 ); } }I hope this helps someone. I’d still like to see the folder icons use SSL urls properly.
Forum: Plugins
In reply to: [Shopp Minimum Order] Maximum?Hey Dave,
Yeah, actually fairly easily. I may have to change the name of the plugin tho!
All joking aside, I will likely add this functionality in sometime soon. Otherwise, it’s possible to add some code into your theme’s functions.php file that will do the same thing if you need it done sooner than later.
-Chris
Forum: Plugins
In reply to: [Shopp Minimum Order] [Plugin: Shopp Minimum Order] Error messageI just uploaded a new version with the fix to the WordPress plugins directory. If you check your WP install, it should prompt you to update the plugin in a few minutes.
Please let me know if you still encounter problems. Thanks!