sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [FoxyShop] Adding Variation Descriptions to SearchTheoretically this should work, but as I did some test code, I found that it was doing AND instead of OR with traditional meta queries. I haven’t been able to figure out how to change that.
Additionally, all the variation data is stored in separate fields so it would be a large query to search through them all. I’m afraid I don’t have a very good solution at this point.
Sorry….
Forum: Plugins
In reply to: [FoxyShop] Accessing Categories and ProductsYou want to be able to order each SKU as a separate product? If you want the SKU to be product code, you can only have one per product. If you have multiple products to add to cart at once, you can add them through bundling. If you want to add multiple products to the cart based on variations, this might need a custom solution. Pretty dang complicated.
Forum: Plugins
In reply to: [FoxyShop] Adding Variation Descriptions to SearchThis isn’t handled natively by WP at all, but there’s some good tips here: http://wordpress.org/support/topic/include-custom-field-values-in-search?replies=16
You can edit the search query in the template file: foxyshop-search.php
Forum: Plugins
In reply to: [FoxyShop] Accessing Categories and ProductsI can’t think of a great way of doing this. I think that might need to consider Setting the variations up with the SKU’s in the name. So it would look like:
Eye End
3/4 tube (83921)
7/8 tube (83920)Or, you could set them up as bundled products, that sounds pretty complicated as well if you have tons of products.
Forum: Plugins
In reply to: [FoxyShop] Adding product categories to main navigationThere’s a function you can use called
foxyshop_simple_category_children()which will show a list of categories. Read about it here: http://www.foxy-shop.com/2011/06/version-2-7-variation-upgrades-and-other-tweaks/Forum: Plugins
In reply to: [FoxyShop] WYSIWYG editing for category descriptionThis plugin might do the trick. http://wordpress.org/extend/plugins/rich-text-tags/
Forum: Plugins
In reply to: [FoxyShop] Can't Login into Upload ProcessTalked to Drew over email and it seems his server was possibly asking for further authentication. He got it sorted out.
Forum: Plugins
In reply to: [FoxyShop] Recents updates to foxyshopYes, you can do a print_r($product[‘inventory_levels’]) and that will show you a PHP array with all the inventory levels for the product (this is just for reference). If you aren’t doing variations (much easier) you can just do this:
echo $product['inventory_levels'][$product['code']]['count'];Forum: Plugins
In reply to: [FoxyShop] Recents updates to foxyshopI haven’t seen this behavior before. But from looking around it seems that it has a lot more to do with some change in WP 3.2 than anything foxyshop-related. Let’s see how this plays out in the WP discussion.
Forum: Plugins
In reply to: can't find uploadify pluginI think it’s likely that this plugin got pulled due to upload security issues.
Forum: Plugins
In reply to: [FoxyShop] foxyshop_stock_alertSo it turns out that @eddiejanzer did uncover a bug in the inventory alert thing. If there weren’t any variations, the default product code wasn’t firing off any updates. So…. this has been corrected in 2.7.1 which will drop pretty soon.
Forum: Plugins
In reply to: [FoxyShop] Quick Study Needs Quick Start….HelpNick,
Make sure you reset your permalinks again – looks like the products themselves aren’t showing up yet. Just go to Permalinks and hit Save.
You have a weird CSS issue, where the div “section all-medium clearfix” is being set with strange positioning and is over top of your other content so it can’t be clicked on. You’re going to have to spend a little time working on your CSS to get that squared away. There’s weird theme stuff going on.
To get your products in one row, that’s more CSS that needs to be done. It’s not too complicated, you just need to adjust your li’s. If you aren’t using Firebug for FireFox, give it a try. Really makes CSS work a lot easier.
Hope that helps pushes you in the right direction. And if CSS really isn’t your thing, I do provide installation services where I can style your store to match your theme nicely for you. If you are interested, hit me up on the contact form at foxy-shop.com.
David
Forum: Plugins
In reply to: [FoxyShop] Quick Study Needs Quick Start….HelpA couple things on this:
1. Make sure you change your permalinks to Month and Name.
2. Your inventory will be viewable at http://adwebsite.us/PowerHouseWP/products/
3. You can change the products to something else if you want. See http://wordpress.org/extend/plugins/foxyshop/faq/ for more details
4. See #1 on the link above for details on editing FoxyShop theme files to achieve the exact look you want.
David
Forum: Plugins
In reply to: [FoxyShop] [Plugin: FoxyShop] Easier Upgrade Process?Good questions. It is for this reason that I always recommend you make NO changes whatsoever to any core FoxyShop files. You can do anything you need to do in external css files and external template files — that is css and php files that live in your theme’s directory, not the plugin directory.
If you do edit core files you will be in exactly this problem.
Read this for a description of how to properly edit your foxyshop theme files and CSS files: http://www.foxy-shop.com/documentation/#customization
Forum: Hacks
In reply to: can't commit to plugin repository anymoreDetails at http://wpdevel.wordpress.com/2011/06/22/commit-access-has-been-restored-for-plugins-if/ and http://wpdevel.wordpress.com/2011/06/22/plugin-committers-now-receive-svn-notify-emails-with/ but it looks like we are back in business.
Thanks WordPress admin people for all you do.