sparkweb
Forum Replies Created
-
Forum: Plugins
In reply to: [FoxyShop] The latest update of Foxycart is conflicting with SuperfishMake sure you upgrade to the latest version of Superfish. It’s likely a jQuery issue.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] BuddyPress 1.7 support ?Sorry, I don’t know much about how BuddyPress works. They may not be using the standard oEmbed. Might have to check with them.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Not working with 3.5This plugin has no effect on this usage. It only works when you are using oembed. Read about oembed here: http://codex.wordpress.org/Embeds#oEmbed
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Plugin Not workingThis is for oembedding. You can read about that here: http://codex.wordpress.org/Embeds
Make sure that the editor didn’t turn your url into a link.
Forum: Plugins
In reply to: [Hide YouTube Related Videos] Cache delete might not be necessaryHey Justin, just now saw this. Whoops!
Anyway, thanks for the code. Wouldn’t your code actually add the oembed twice? I didn’t realize there was an _html filter, but I’m a little leery about moving this direction without really testing it. And I’m not sure that there are really any benefits at this point. Your method may in fact be a little more efficient, but this is working well. If it stops working at some point I’ll probably re-evaluate at that point.
Thanks again for the code, I’ll certainly keep it handy for the future.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Posts are not saving new dataNot hearing back, I’m going to mark this as resolved. Please let me know if you need more support.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Posts are not saving new dataThis has me really confused. I’ve never heard of anything like this before – the field shows as updated in WordPress but isn’t actually until you save it? I’d recommend checking the database for the meta field and see what’s in the database. It’s also possible (maybe) that you are changing a revision? The database would probably tell the story a little clearer.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Not updating custom field unless category selectedMy bad, it should be “paged” =>
Ref: http://codex.wordpress.org/Function_Reference/WP_Query#Pagination_Parameters
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Not updating custom field unless category selected@pothe you are right, there’s not an easy way to do this right now. I’ll have to add some paging in the future. Right now, you’ll have to edit the plugin to get it to display differently. Look at custom-field-bulk-editor.php and see the $args around line 95. Change posts_per_page to 100 and add one:
"page" => isset($_GET['page']) ? (int)$_GET['page'] : 1,Then you can put &page=1 and &page=2 in your querystring.
Not tested, but that should work.
Forum: Plugins
In reply to: [Custom Field Bulk Editor] Not updating custom field unless category selectedI would break these down into smaller groups. I don’t think that you can do 1800 at once as you are probably hitting your browser buffer limit. Try 300 at once and see if that works.
Forum: Plugins
In reply to: [FoxyShop] Combining with AJAX Add To Cart(I worked with Chris over email on this project and we got it working great.)
For anyone else looking for the answer here, you use a combination of FoxyCart’s JSON capabilities with their native foxycart.js.
Refs:
http://wiki.foxycart.com/v/1.1/javascript
http://wiki.foxycart.com/v/1.1/jsonForum: Plugins
In reply to: [FoxyShop] Trade LoginHi Peter,
If you use capability-based pricing like this: http://www.foxy-shop.com/faqs/capability-based-pricing/ the dynamic pricing will show up on the product page as well as the cart.
Forum: Plugins
In reply to: [FoxyShop] Payment Methods and Gateways?Thanks @laughhearty for the clarification! 🙂
Forum: Plugins
In reply to: [FoxyShop] inventory level for product variationsYup, you need to set a unique code for each variation, then put an inventory entry in for each unique code. See the inventory section here http://www.foxy-shop.com/documentation/setting-up-products/
Forum: Plugins
In reply to: [FoxyShop] How do I add a view cart link??