iftomkins
Forum Replies Created
-
I did find the option “redirect to Cart page” after adding to cart. But for the Cart widget, how do I set it to only display when there are items in the cart?
Thanks!
I understand that WooCommerce can’t be compatible with all themes. Just noting that it really threw off the formatting of Elegant Theme’s “Polished” theme, too. It looked like there were div tags left open, with the sidebar thrown down below and everything. I’m only using it to display a couple products, and the individual product shortcode works fine, to I’ll keep on using. π
Forum: Fixing WordPress
In reply to: jQuery UI tabsthanks! it seems to be loading the libraries properly, but still no dice on making it work. Nothing I can do. Just to be sure, it’s correct that I put this script just before the closing /head tag, right?
<script> $(function() { $( "#datepicker" ).datepicker(); }); </script>thanks!
Forum: Fixing WordPress
In reply to: jQuery UI tabsthanks pkwooster. though i don’t follow why it would be dependent on !is_admin. doesn’t that mean that if I’m logged in as an administrator it would not perform the following lines of code?
Also, I’m using the buddypress default theme, so I would put this in that theme file, right? Would there be any functionality difference? Thanks!
Forum: Fixing WordPress
In reply to: jQuery UI tabsnice work! some of your code got lost, could you repost it? i think they want you to use pastebin. thanks!
Forum: Fixing WordPress
In reply to: jQuery UI tabsI’ve been trying to use the Jquery UI tabs but can’t get it to work. I think there’s a javascript conflict with the wordpress native jquery libraries? If you figure it out, let me know!!
Forum: Plugins
In reply to: jQuery UI Datepicker does not work with jQuery provided by WordPressI’m having the same problem. I feel like maybe the wordpress jquery doesn’t have the datepicker function? But I’ve also tried calling the Jquery UI library directly from the CDN, and that doesn’t work either. Perhaps because of a JS conflict? I’m starting a new thread!
Forum: Themes and Templates
In reply to: How do I enqueue jQuery in my theme?Same for me! I can’t enqueue for the life of me. Maybe it has to do with Buddypress or Bbpress?
Forum: Plugins
In reply to: [bbPress] How do I Add Custom Fields to bbPress TopicsHey cparkinson! I did find a plugin, but it’s a pay plugin, and I haven’t tested it yet. I set up a demo of it with the owner, and I’ll let you know how it goes and if it’s worth it.
Cheers!
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Proceed to Checkout Button Not ShowingThanks Ruffhouse! I was using the Add Link to Facebook plugin, which is indispensable for me. BUT I downloaded the latest version of the plugin and the button magically reappeared. Thanks!
Forum: Plugins
In reply to: Visual Editor for XML CodeSame here. I want a client to be able to edit her product listings directly into the XML, but have it look a little more friendly. I haven’t found any solution yet.
Still having challenges. Anyone else?
Forum: Plugins
In reply to: Twitter Tools not pushing blog posts to twitterI’m using WP to Twitter now, and it works great!
Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Alternative to using the WordPress Featured Image?Nevermind! The code doesn’t quite work. It does not cycle through all the wordpress posts, it just used the custom field value from the first post. I guess you’d have to do a for each scenario on it? I’m not sure how eshop-base-feed.php loops through the products. Rich, would you have any suggestions? This is what I have now for defining the variables $imagelink and $brand. I guess it’s not a constant variable, it needs to be an array of products, but I can’t figure out how to insert this whole mess inside the<item> template you’ve laid out.
global $wp_query; $postid = $wp_query->post->ID; $imagelink = get_post_meta($postid, 'Thumbnail', true); global $wp_query; $postid = $wp_query->post->ID; $brand = get_post_meta($postid, 'brand', true);Forum: Plugins
In reply to: [eShop] [Plugin: eShop] Alternative to using the WordPress Featured Image?Ok, got it! So, here are instructions to add a custom field value to the eShop Google base feed: (I’ll be using it to add an image link, and to add a different brand for each item)
1. Open eshop-base-feed.php.
2. Up top somewhere, add this code:
global $wp_query; $postid = $wp_query->post->ID; $imagelinkcustom = get_post_meta($postid, 'Thumbnail', true);It defines the variable $imagelinkcustom from the custom field βThumbnailβ. Replace “Thumbnail” with the name of the custom field you want to grab.
3. Replace lines 107-111 with this:
<item> <link>'.eshoprssfilter($baselink).'</link> <title>'.eshoprssfilter($basetitle).'</title> <description>'.eshoprssfilter($basedescription).'</description> <g:id>'.eshoprssfilter($baseid).'</g:id> <g:image_link>'.$imagelinkcustom.'</g:image_link>';The key part of the above code is this line:
<g:image_link>'.$imagelinkalan.'</g:image_link>But itβs a little tricky to get the apostrophes right, so you can just paste the whole thing. π