Jon Wadsworth
Forum Replies Created
-
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Specials Rotating in Strange SequenceWow. I’m so sorry this has taken me so long to fix. I’m really swamped with my business, and free plugins tend to get left behind. I finally addressed the sorting/ordering issues in the latest release. Not only does it order correctly now, but you can choose to order by day of the week or by custom menu order (using something like Post Types Order to order them). I also added a few other features and fixed a few small bugs. Hopefully this new release will meet your needs better. Again, I apologize for the delayed response.
Forum: Plugins
In reply to: [WooCommerce] Multiple Product IMagesIt’s much more difficult now that wordpress 3.5 is out.
if you click on add media, above the main description field, and then use the dropdown in the upper left corner of the main window
change it to “uploaded to this post” you’ll see what is associated with this product
to add more, just upload pictures to the media library from this window and you will see them show up under the “uploaded to this post” section
then they should show up as gallery images for the productI’m hoping that the developers of woo-commerce will recognize the poor setup here for the new version of wordpress and will build us a way to create a gallery in the product fields.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Specials Rotating in Strange SequenceI’ll take a look at it this weekend. Sorry about the slow reply. This has had to take a back burner since I started my own business.
Fixed.
Hmm…both of these situations seem to solve themselves via the description field. The price for the “percentage off” would be the price after the percentage has been taken off (e.g. 20% off 4.95 — Special Price $3.96). You could explain that it’s 20% off the original $4.95 in the description.
The buy one get one free idea works the same way…you put the price of the one meal in the special but make it clear in the title and the description that you get another free.If you can think of a better way to do that (more options in the Daily Specials post-type??), let me know, and I’ll surely work on getting it in there. I just can’t think of a better way to do that.
Ah…I think I know now what the problem is. This plugin requires you to install the advanced custom fields plugin by Elliot Condon. https://advancedcustomfields.com
His plugin makes it easy for the fields to show up correctly on the Daily Specials post-type, and for the custom options page.
You can download it here, or you can search for advanced custom fields in the plugins section of wordpress.
I’ll add some clearer documentation to that effect. Thanks for the feedback!
I just installed a fresh copy of WP 3.4.1 and Daily Specials 1.1. I also purchased the Genesis Framework 1.8.2 and activated that theme. So far, I haven’t found any errors or issues. The widget seems to work fine in the primary sidebar. you can see it in action here. Can you send me a link to your site so I can see the issue?
hmm…sounds like a php error. Could you turn on wordpress debugging? In wp-config.php, change the line that says define(‘WP_DEBUG’, false); change false to true and see if any errors show up on the page. That will help me track down the issue on your site. Thanks.
Forum: Fixing WordPress
In reply to: Screen Layout Hackadd this to your functions.php file in your theme:
function change_dashboard_layout() { return 1; } add_filter( 'get_user_option_screen_layout_dashboard', 'change_dashboard_layout' );