drreeder
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Adamos] 'Read More…' link is not displayedGreat! Thank you. I modified the two files with your code and now the “READ MORE–>” shows up perfectly.
Forum: Themes and Templates
In reply to: [Adamos] 'Read More…' link is not displayedI think I have figured out a solution, but I don’t like it very much. In both the style.css and the rtl.css files for the theme are these lines:
.entry-content a.more-link, .entry-content a.more-link:visited{ color: #FFF; }Since #FFF is white, you don’t see white letters on a white background. If I change the hex value to “color: #FF0000;” I get a red “READ MORE–>” showing up on the post. I need to figure out how to make a child theme so I don’t modify any of the theme’s core code (unless you see this as a bug fix).
The URL is lapoa.org.
Forum: Themes and Templates
In reply to: [Adamos] 'Read More…' link is not displayedBump.
With Adamos, the hotspot is there because you can see the cursor change and the URL is displayed in the lower left corner of the browser, but there is no “more…” or “Continue reading…” displayed.
Forum: Themes and Templates
In reply to: [Adamos] 'Read More…' link is not displayedI tried changing to the Twenty Ten, Twenty Twelve, Twenty Thirteen and Twenty Fourteen themes, and they all display the “Continue reading…” link.
Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventMarked topic as resolved.
Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventHi Stephen,
Just a follow-up to close the loop on this, at least from my perspective.
I got my localhost upgraded to PHP 5.3.8 and now that
date_create_from_format()is being called (in theifstatement) instead ofstrptimebeing called (in theelsestatement), I can create, publish and update events just fine.I think the fact that the plugin uses a call to a function (
strptime) that is not implemented on Windows platforms is still a problem, but the workaround for me was to upgrade to PHP 5.3.x.Thanks for your help!
Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventStephen, I have looked into
function eo_check_datetime()and with a little debugging, I find that I get into the else portion of the if…else statement (php 5.2.9), but everything fails with the call tostrptime(line 580).As I mentioned, I am developing on localhost using XAMPP for Windows 1.7.1. Checking the PHP manual, I find that
strptimeis not implemented on Windows platforms. I think my next step will be to migrate to php 5.3.Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventI use XAMPP for Windows 1.7.1 and it reports php 5.2.9. I will dig into some of your suggestions. Thanks.
Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventThe same thing also happens with the Preview and Save Draft buttons.
Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventI set
define('WP_DEBUG_LOG', true);and reedited the event, but no debug.log file got created in /wp-content/. I’m probably doing something wrong. I’m a retired programming manager, but I’m new to WP and php…still have a lot to learn.Forum: Plugins
In reply to: [Event Organiser] Problem adding new eventI enabled debug mode in wp-config.php, but no WP errors were displayed. After clicking the Publish/Update button and the blank page displays as noted in my original post, Firebug shows “NetworkError: 500 Internal Server Error – http://localhost/lapoa/wp-admin/post.php”.
The event is actually saved, but the start and end date and time are apparently not. The Events page in Dashboard displays the old events fine, but for the new events, Start Date/Time and End Date/Time are both blank. When I reopen the new event to edit, the dates and times are set to the current date and time.