eric3d
Forum Replies Created
-
Forum: Plugins
In reply to: [Crop-Thumbnails] Not cropping featured imageThe plugin only works for image sizes that are set with hard crop mode (for details, read this). Those sizes are defined in your theme.
If you’re using a custom theme, you can add thumbnail sizes in the functions.php file. If you’re using a pre-built theme, look for a plugin that allows you to add thumbnail sizes (like this one, which I have not tested).
Forum: Plugins
In reply to: [List category posts] Remove UnderlinesThat would be a CSS change. Adding something like the style rule below would do the trick.
.lcp_catlist a { text-decoration: none; }Where to add the code will depend on your setup. If you use a custom theme or child theme, simply add it to the style sheet. Otherwise, look for a custom CSS plugin.
Forum: Plugins
In reply to: [StageShow] SS+ update failedWorks great. Thanks.
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Site default timezone ignoredThanks. Since the workaround (changing the time zone) worked, I haven’t looked further into it. But there’s still a 4 hour difference between “Site Default (America/New York)” and “Custom -> New York”, which is a bit strange.
Forum: Plugins
In reply to: [StageShow] Stageshow donation reportThanks Malcolm. In the meantime, where’s the OFX export?
Forum: Plugins
In reply to: [List category posts] include date of post?See https://wordpress.org/plugins/list-category-posts/other_notes/
date – Display post’s date next to the title. Default is ‘no’, use date=yes to activate it. You can set a css class and an html tag to wrap the date in with date_class and date_tag…
The option below should accommodate both needs and be backwards compatible.
In Grouped Calendar tab, add one line with 2 radio buttons:
Get Template From (-) Individual calendars (•) GroupThe first option will be selected by default to avoid breaking existing calendars. This would also make it clear to the user which template is used.
Eventually, we could add a third option that completely separates templates from calendar feed.
…or simply add a checkbox in the grouped calendar panel “Use group template instead of individual calendar template”, unchecked by default for compatibility.
This is so much more cumbersome than the old version. I have 3 feeds with 4 different presentations (minimal grid, detailed grid, minimal list, detailed list). With the old system, I only needed to create a few calendars and used shortcode for the additional parameters. Now I have to create 12 individual calendars plus a number of grouped calendars.
Any option to either separate the feed from the presentation or allow multiple feeds in one calendar instead of the convoluted grouped calendar?
Forum: Hacks
In reply to: Prevent   characters from getting removed by the visual editorNice solution. In your example, it may be better to write
<span class="nowrap">South Australia</span>with the style.nowrap{white-space: nowrap;}.But there are situations where preserving nbsp is necessary.
Forum: Plugins
In reply to: [Media Library Folders] MLP Pro modal window display issuesDone.
Forum: Plugins
In reply to: [Media Library Folders] Media Library Plus Pro featuresThanks. I didn’t scroll down far enough. Great plugin by the way!
Forum: Plugins
In reply to: [StageShow] Expiration time off by 6 hoursI monitored the box office page on my phone, refreshing the page roughly every half hour. That day’s show was still available at 16:00 (5 hours after expiration) and was gone when I checked a little after 17:00 (6 hours after expiration).
The phone was not logged into WordPress and no items were in the trolley.
Forum: Plugins
In reply to: [StageShow] Reservation Form problemsUpdate: adding a recurring check until the input is created works. Not the most elegant solution though.
function stageshowCustom_OnLoadSubmitDetailsForm() { //console.log("detail form launched"); var checkExist = setInterval(function() { var countryInput = document.getElementById('checkoutdetails-salePPCountry'); if (typeof(countryInput) !== 'undefined' && countryInput !== null) { //console.log("countryInput exists!"); countryInput.value = 'United States'; clearInterval(checkExist); } }, 100); // check every 100ms }Forum: Plugins
In reply to: [StageShow] Reservation Form problemsThanks for the prompt fix. I tried adding the following function, which is properly called but the input value is not changed. I suspect the function is called before the form is created.
function stageshowCustom_OnLoadSubmitDetailsForm() { console.log("detail form launched"); document.getElementById('checkoutdetails-salePPCountry').value = 'United States'; }Anything I do with stageshow_OnClickReserve() seems to bypass verification altogether. I also noticed that function is defined twice.