mickwall
Forum Replies Created
-
See my post above guys, I can help you fix this. post the errors and I’ll provide the fix.
Hi
I was hoping the developer would chip in here. I know how to fix this but would either need access to your site or talk you through how to fix each error.
This issue has been cause because Simple Calendar used to cause conflicts with many other plugins that used the google toolkit. It was me that provided the fix for this for the main simple calendar but I did warn that it would break the pro plugins – now if you have a subscription that’s fine bacause they have released fixed versions of those, if you haven’t then it will break.
So if I take the error posted above, it caused becauise “carbon” has not been prefixed with a unique namespace – this is how we keep this version seperated to others using the same code. this fix is to edit that file and replace Carbon\Carbon with
use SimpleCalendar\plugin_deps\Carbon\Carbon;
There will be many similar errors that can be fixed the same way – keep posting errors and I’ll reply
OK guys, is your pro addons licence still valid? I am not sure you have the very latest versions, I am not the developer of these so cant be certain.
I would raise a ticket on the pro addon site
Hi, can you check that you got updates for Simple Calendar and the Pro plugins? I know there are changes in this version that mean you need to update everything at the same time!
- This reply was modified 5 years, 3 months ago by mickwall.
Forum: Plugins
In reply to: [ICS Calendar] eventdesc does not seem to restrict number of wordsThats great, thanks
Forum: Plugins
In reply to: [ICS Calendar] eventdesc does not seem to restrict number of wordsOK, yes I had read that but assumed it was list view on a mobile! Don’t suppose there is a way to change it for small screen but leave as hover for larger screens?
Thanks, yes all reporting OK this morning
Last fully synced 10 hours ago
Even the debug tool is working now.
Cheers
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] End of backup email not workingThanks.
There are a few others so it’s been easier for me to move to a different backup solution.
It’s weird that the actual backup to a google drive worked and it was just the email that was failing.
Many thanks for getting back to me.
Thanks
I have managed to use “composer” to update the google api used by the google calendar plugin and this has solved this for now.
For anyone else, I used this command
composer require google/apiclient
from the google calendar plugin directory.
Many thanks.
Mick
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] Paypal Transaction DescriptionThanks Joe, I can wait for a filter – not sure what I will do with that, but I assume it will make it easier!
Cheers
Mick
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PHP warningThanks for adding a fix to the latest update.
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PHP warningHi
I did a bit more tidying!
function mt_set_user_unique_id() {
if (( defined( ‘DOING_CRON’ ) AND DOING_CRON) == false)
{
$unique_id = ( isset( $_COOKIE[‘mt_unique_id’] ) ) ? $_COOKIE[‘mt_unique_id’] : false;
if ( ! $unique_id )
{
$unique_id = mt_generate_unique_id();
setcookie( ‘mt_unique_id’, $unique_id, time() + 60 * 60 * 24 * 7, COOKIEPATH, COOKIE_DOMAIN, true, true );
}
}
}I can see the cookie being created when I refresh a page event in the back office. I assume this is meant to check / create the cookie every time a page is loaded?
I am a develper but not wordpress / php!
Love the plugin by the way, simple to use and just works!
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PHP warningHi Joe
I have done lots of debugging including using troubleshooting mode with no plugins enabled and the twenty nineteen theme, the error still occured!
I am wondering if this error could be being created by cron jobs, I have added the following to your code and the error has stopped. I am not sure if this is right or even makes sense.
function mt_set_user_unique_id() {
$unique_id = ( isset( $_COOKIE[‘mt_unique_id’] ) ) ? $_COOKIE[‘mt_unique_id’] : false;
if ( ! $unique_id ) {
if ( !defined( ‘DOING_CRON’ ) )
{
$unique_id = mt_generate_unique_id();
setcookie( ‘mt_unique_id’, $unique_id, time() + 60 * 60 * 24 * 7, COOKIEPATH, COOKIE_DOMAIN, true, true );
}
}
}Apologies if this is wasting your time!
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] PHP warningOK Joe, Thanks. Any tips on working it out?
Hi Suzanne
I had a similar issue.
If you go to your Customixer and add this additional css
.simcal-icon-left
{
color: red!important;}
.simcal-icon-right
{
color: red!important;}
It should fix your issue.