Jon Wadsworth
Forum Replies Created
-
Forum: Plugins
In reply to: [Live Edit] LiveEdit panel width doesn't reset on closeI can confirm this as well. For now, a simple fix is to add this to your css somewhere:
#live-edit-iframe { max-width: 100% !important; }
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Daily Specials Broken with WP 3.7.1/ACF 4.3Also, I missed the sort() warning. I’ll make that fix in the next update.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Daily Specials Broken with WP 3.7.1/ACF 4.3This should be fixed now. It looks like it was a dependency error on the part of the plugin. It needed to load ACF first, and for whatever reason, it wasn’t. Now it is. Let me know if 1.5.2 fixes the issue.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Display special based on dayHmm…. I must have forgotten to do this. I’ll look into making this an option. I just don’t know when I’ll get to it. (Free plugins get really hard to support).
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Fatal ErrorAre you still getting this error with version 1.5.2 of the Daily Specials plugin?
Forum: Plugins
In reply to: [JRWDEV Daily Specials] CrashingShould be working now. Update to 1.5.2
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Font ColorThere are no font colors applied in the plugin. You set those in the css files for your theme.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Daily Specials Broken with WP 3.7.1/ACF 4.3I released an update. Follow the instructions in the readme.txt and you should be up and running again. Thanks for the heads up.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Print hardcopy of specialsOk. I’ve finally got it working in version 1.5. I just updated the plugin again tonight, so hopefully this will have what you need.
You’ll likely have to do some of your own styling to the page, or override the page with your own template (create a template file called archive-daily_specials.php in your theme folder). You may have to visit your permalinks settings page to refresh your permalinks to get the archives page to work correctly (navigate to Settings > Permalinks and click save).
Let me know if this is what you need to be able to print all the specials. I hope you like it!
Forum: Plugins
In reply to: [JRWDEV Daily Specials] HTML code?I’ve finally gotten around to adding the html edit mode as well as the media uploader for your request. Sorry it took so long.
Forum: Plugins
In reply to: [JRWDEV Daily Specials] Print hardcopy of specialsThis request was quite a bit harder than I thought it was going to be. I’m still working on it though. I just released a minor updated that added a few smaller features, but hopefully, the ability to see an archive-like page for the daily specials will be coming soon. It is in the pipeline. I promise. I’ve worked on it a bunch tonight, but it still has a long way left to go. I haven’t forgotten about you. ??
Forum: Plugins
In reply to: Modify Widget Titlestry this:
add_filter('widget_title', 'custom_widget_title', 10, 1); function custom_widget_title($title){ $title_array = explode(" ", $title); $count = count($title_array); if($count==1){ $title = '<span class="home_widget">' . $title . '</span>'; } elseif($count==2){ $title = '<span class="home_widget"><span class="home_widget_lc">' . $title_array[0] . '</span> ' . $title_array[1] . '</span>'; } elseif($count==3){ $title = '<span class="home_widget"><span class="home_widget_lc">' . $title_array[0] . ' ' . $title_array[1] . '</span> ' . $title_array[2] . '</span>'; } elseif($count>=4){ foreach($title_array as $word_number => $word){ if($word_number <= 1){continue;} $remaining_words .= ' ' . $word; } $title = '<span class="home_widget"><span class="home_widget_lc">' . $title_array[0] . ' ' . $title_array[1] . '</span>' . $remaining_words . '</span>'; } return $title; }
Forum: Plugins
In reply to: [JRWDEV Daily Specials] HTML code?Looks like you have 3 major questions/concerns here that I will try to address.
1. HTML code instead of formatted text in the description box
– I will modify the box so it allows for HTML input in the next update (probably within a week)
2. Add an image thumbnail
– This will take me a bit longer since I have to decide the best route for implementation, so I’d guess that this will be added on the next major iteration of this plugin (i.e. 1.5) which probably won’t be until the end of June. Until then, the minor update adding the HTML functionality should hold you over.
3. Display only specials for a particular day
– Currently there is nothing built in to specifically allow this functionality. You could play with the categories feature to get something close to this, but this exact feature is not built in yet. I’ll go ahead and throw this on the to-do list for 1.5.Forum: Plugins
In reply to: [JRWDEV Daily Specials] Print hardcopy of specialsI’m working on this for you. I’ll probably be finished with it by the end of May. The next update will include a custom page template for the daily specials archive. You’ll be able to view all of your specials on a single page. You’ll also be able to override the template in your theme files and create your own template if you wish.
Wish granted. Check out version 1.4.1. (If you happen to see my other update, v1.4 fixed some bugs and added some features. v1.4.1 adds your requested feature.)