bitkahuna
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Event Planner] /events url brokenok i appear to have fixed it by putting dates on the test event. (code should check for no meta data)
Forum: Plugins
In reply to: [Simple Event Planner] /events url brokeni turned on debug and get (folders obfuscated here):
Fatal error: Uncaught Exception: String could not be parsed as XML in /home/…./wp-content/plugins/simple-event-planner/public/partials/simple-event-planner-template-functions.php:147 Stack trace: #0 /home/…./wp-content/plugins/simple-event-planner/public/partials/simple-event-planner-template-functions.php(147): SimpleXMLElement->__construct() #1 /home/…./wp-content/plugins/simple-event-planner/public/partials/event-listing/event-start-date.php(16): sep_get_the_event_start_date() #2 /home/…./wp-content/plugins/simple-event-planner/public/partials/simple-event-planner-template-functions.php(31): include(‘/home/arnette/d…’) #3 /home/…./wp-content/plugins/simple-event-planner/public/partials/content-event-listing-list-view.php(38): get_simple_event_planner_template() #4 ….in?…./wp-content/plugins/simple-event-planner/public/partials/simple-event-planner-template-functions.php?on line?147
this was the css fix (thanks to generatepress support):
html {
overflow-x: hidden;
}thanks tor-bjorn, just saw your post. i removed the password from the page.
thanks about health check. the site is still under development and that’s a testing url, so not worried about visitors.
have cornered it to maybe having something to do with the mobile menu, however… on the contact page, we haven’t used any of the block css animations and there’s no issue.
thank you. i do understand about passwords, but that’s only for the front end, so no biggie.
not sure if you mean generatepress premium or generateblocks pro plugin, but i think disabling either will break the site.
have experienced no wp_users also on import and found a workaround.
so after FINISHING the whole duplicator installer.php steps (but not closing the page), i then get the sql file out of the package, open a new tab for phpmyadmin, drop all the tables in the database, and import the sql file directly. i then go to the installer tab and go ‘back’ in the browser so i can do the find/replace to make it match the new location.100% success so far.
the ‘issue’ is a bug somewhere in the reinstall / installer.php because the sql is fine.
in installer-log.txt i see these errors:
**ERROR** database error write ‘Invalid default value for ‘comment_date” – [sql=
CREATE TABLEwp_comments
(
comment_ID
bigint(20) unsigned NOT NULL A…]
**ERROR** database error write ‘Invalid default value for ‘created” – [sql=
CREATE TABLEwp_duplicator_packages
(
id
bigint(20) unsigned NOT NUL…]
**ERROR** database error write ‘Invalid default value for ‘link_updated” – [sql=
CREATE TABLEwp_links
(
link_id
bigint(20) unsigned NOT NULL AUTO_IN…]
**ERROR** database error write ‘Invalid default value for ‘post_date” – [sql=
CREATE TABLEwp_posts
(
ID
bigint(20) unsigned NOT NULL AUTO_INCREME…]
**ERROR** database error write ‘Invalid default value for ‘user_registered” – [sql=
CREATE TABLEwp_users
(
ID
bigint(20) unsigned NOT NULL AUTO_INCREME…]
**ERROR** database error write ‘Table ‘core.wp_comments’ doesn’t exist’ – [sql=Forum: Plugins
In reply to: [Easy Testimonials] format bugthis seems to fix it?
.cycle-slideshow {
overflow: visible !important;
}Thanks sjmlde – your workaround works.
Nick – my fix will work for you in the code. Here it is in context of your latest code:
line 37
if ( ( '12:00 am' == date( 'g:i a', $start_time ) ) && ( '12:00 am' == date( 'g:i a', $end_time ) ) ) { if( $end_time - $start_time > 86400 ) { $this->day_type = 'MWD'; $this->end_time -= 86400; // fix } else { $this->day_type = 'SWD'; } } else { $this->day_type = 'MPD'; }
Nick, no that didn’t fix it.
A multi-day event still shows the last day as the day beyond. It’s because Google considers the last day of the event to end at 12:00a.m. which is technically the ‘next day’.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] added filter_not option!you’re welcome tobias! least i can do, as your plugins helped me a lot.
see site in progress https://dev.mcbia.org – click any home page circle icon on right of slideshow to see filtered table. now i’ve got to get it cleaned up for mobile and have only just tried your responsive plugin but didn’t work right out of the box, but sure it will work out.
not seeing screenshot or the issue described at your link. ?
there’s only one mention of the 3/22 event on the sidebar.i fixed it.
in class-gce-event.php, line 37 is determining the type of event (single day, single part day, multiple whole day, etc.)
here’s the code and the fix.
if ( ( '12:00 am' == date( 'g:i a', $start_time ) ) && ( '12:00 am' == date( 'g:i a', $end_time ) ) ) { $this->day_type = 'MWD'; $this->end_time -= 86400; // fix! } else {
i defined the event in google calendar as from 3/14-3/29/15.
i THINK google says the multi-day event goes from:
3/14/15 12:00:00
to
3:30/15 12:00:00so the fact that it goes to the start of the first second of the day after the 29th is the problem. somehow you need a special case in there.
if multi day and end time is 0:0:0 then the last day is really the day before