Our site gets dinged in accessibility audits because the <select> field for the month view in the calendar header.
The current markup looks like this:
<div class="mvSelectNavigation">
<select>
<option value="day">Day</option>
<option value="week">Week</option>
<option value="month" selected="">Month</option>
</select>
</div>
With a label it might look something like this:
<div class="mvSelectNavigation">
<label for="display-select">
Select a Calendar Display
</label>
<select id="display-select">
<option value="day">Day</option>
<option value="week">Week</option>
<option value="month" selected="">Month</option>
</select>
</div>
]]>
Is it possible to add weeknumbers into the calendar?
As an example, here the weeknumbers are placed in the most left column: https://www.ugekalender.com/
I have the most recent version of WordPress and CP Multi View Calendar (1.4.25). The calendar now only shows a blue line
]]>on my android telephone the calendar event only shows a blue line
computer , ipad and laptop it is working fine.
can somebody please tell me what i am doing wrong?
]]>A friend, a web host/developer, was helping me with some updates. One of our tasks is to update the version of PHP we’re running the site on.
Right now we cannot complete this step due to some deprecated PHP in use with this plugin. Is there an update available that will not prevent us from updating our PHP version?
The calendar is not public-facing, not that that has any bearing, but I didn’t see any point to linking to the site.
Hello, please tell me how to display a monthly calendar on a website for a specific month. By default, the current month is shown in the calendar, and I want to immediately display the calendar in December, when my events begin.
]]>Hi,
with the new version 1.4.22, when we create a new event we can’t no more type freely hours:minutes but we can only choose the time from a combobox where there are only half-hour entry.
Thanks
]]>Hello
Does anyone know how to get the calendar to load in a custom template without the header or footer
<?php /* Template Name: AIM Staff Calendar */ ?>
<?php
// get_header();
echo do_shortcode(‘[CPMV_CALENDAR view=”1″]’);
// get_footer();
?>
Many thanks
Jonathan
Can’t add details to an event. Keeps buffering when I try to edit the event.
]]>Dear support,
We upgraded to the latest version (ver. 4.1.17) and found out that, when you add a new event inside the calendar, in the “title” field the letter ‘ is replaced with \’. This change actually represents a problem for us in the appointment registration workflow.
If we restore the 4.1.06 version, the problem no longer occurs.
Is there any solution to this problem?
Thanks
kenaston.ca/calendar-2
PW: calendar
I had to manually delete the old folder because the update Version 1.4.16 failed – saying it could not delete the old folder. Then I reloaded the plug in. I had to redo some settings by default and it said it was creating calendar 4 on a new page, but I needed it to choose calendar 1 so I changed that in the ‘manage calendars’ panel. The old calendar data appears, but I cannot edit it. The page locks up on the save button and I have to exit the page to get out of that window.
There is one error on the ‘sample page’ – I’m not sure if this is relevant.
Parse error: syntax error, unexpected token “;”, expecting “)” in D:\Inetpub\vhosts\kenaston.ca\httpdocs\kenaston.ca\wp-content\plugins\cp-multi-view-calendar\help\samples.html on line 10
]]>Hi Team. I am unable to edit details while setting Subject, duration Date, Location and Remarks. Nothing happens when push Save button or Repeat/Edit action. Thanks in advance
]]>Can you please tell me how can I add another language? In my case, Romanian. Now, I have created a multiview_lang_ro_RO.js file, but I always have to delete it, so I can update, and re-create it after the update.
]]>Hello, I have the latest 1.4.15 version and get the “Sorry, could not load your data, please try again later”.
]]>Hi Team. Recently I’ve updated plugin CP Multi View Calendar to the latest version and faced two errors.
Issue One
I’m using the latest Enfold Theme. v1.4.15 is having trouble with the Enfold theme. Calendar renders, but won’t load data and won’t save event edits. Buttons don’t work. And the time boxes default to 00:00. Weird. See included images.
Issue Two
Also, the Customization Area in the Admin area disappeared and no longer applies previously entered CSS. Issue started some time after v1.4.06. See screen capture below.
]]>Logged in as a user adding events hangs with the message “The request is beeing processed…” and the event is not added.
Logged in as admin this error does not occur.
This fault has persisted since approximately end of September.
CPMV version: 1.4.10 (same problem with previous version)
WP version: 6.0.3 (same problem with 6.0.2)
Browsers tried: IOS Safari, Win10 Firefox, Win 10 Edge, Win 10 Chrome
Our problem is similar to this one but with version 1.4.10
https://www.ads-software.com/support/topic/cannot-add-events-after-plugin-upgrade/
When we try to add an event from a user with the role ‘member’ a small read box in the top of the calendar indicates processing of the request, but nothing happens.
Trying the same as an admin works without problems
Our other relevant plugins:
WBBruiser
Ultimate Member
Hello, I allow myself to open this subject because since the last update 1.4.07, I can no longer modify the color of a cell. I am using Elementor(3.7.7) plugin.
Is it possible to revert to an earlier version?
Thanks
Hi, for a while this plugin gives a PHP warning on PHP 8.1. The problem is in the file cp-multi-view-calendar/classes/cp-base-class.inc.php
.
In the variable there is only a key for path
if the website runs in a subdirectory like domain.com/directory/
. Running the website from the document root like domain.com/
will cause the key for path
to not exist and emit a warning.
These changes should fix the warning:
In the method get_site_url
Change
$url = parse_url($url);
return rtrim(@$url["path"],"/");
To
$url = parse_url($url);
if ( isset( $url["path"] ) ) {
return rtrim(@$url["path"],"/");
} else {
return "/";
}
In the method get_FULL_site_url
Change
$url = parse_url($url);
$url = rtrim($url["path"],"/");
To
$url = parse_url($url);
if ( isset( $url["path"] ) ) {
$url = rtrim($url["path"],"/");
} else {
$url = "/";
}
]]>
Hello, we use the plugin on the front-end of a private webpage for our staff.
It worked perfectly until the new upgrade, now we cannot enter any new info to the calendar, unless we are logged in to wordpress dashboard… which we don’t want all staff to have access to.
Hope you can help! Thanks!
Hi,
I already have 9 events entered on a certain day using the month view calender.
When I create a new event on that day it does not appear.
Are events limited to 9 per day?
Thank you for your help,
Angus Newton
Dear support,
after upgrade to Version 1.4.07 clicking “Edit details” in the calendar popup does nothing (no pop-up) and we can’t longer edit an existing calendar event.
Browser Firefox and Chrome;
WordPress 6.0.2
PHP 7.3.9
Restored the plugin file to the previous version (1.4.06) the edit function works.
Thanks for your support
]]>Hello,
I live in Europe and the format here is day/month/year. In the US the format is month/day/year. In the plugin the two formats are mixed up. If I make a new event it will automatically show the date US style. But when I change something like the background colour, it will tell me that the format is not correct and it needs to be adjusted to the Europe format. Would you be able to change this mix-up and choose for one or the other? Because now if I change an existing event, I have to change the dates every time to the Europe format and it is getting really annoying.
Thanks in advance.
Hi,
as registered user of your plugin (Version 9.11.27) I was wondering whether it’s possible to export al Cal Data to an ICS file, as you mention on your page: “Allows exporting data to iCal files.”
https://wordpress.dwbooster.com/calendars/cp-multi-view-calendar
I cannont find the “button” to doing that…
Like to import in Synology Calendar
]]>My disk error log is getting filled with this error:
Function create_function() is deprecated in /home/uesma/uesma.edu.ec/wp-content/plugins/cp-multi-view-calendar/cp-multi-view-calendar.php on line 31, referer: https://www.uesma.edu.ec/wp-admin/plugins.php?plugin_status=all&paged=1&s
to the point where the site stops working and I have to contact my hosts to truncate the log file.
Could this plugin be updated to fix this problem?
]]>When attempting to create an event, the event editor box is not fully drawing, and all buttons are non-functional.
Image:
Nothing is cached or minified, and we’ve tried using a default theme as well.
Any thoughts?
Thanks!
]]>Please make an option – users are able to add and see the their own events only.
]]>Hello, can you please tell me how can I translate the months and the days? I tried with Loco Translate, but I didn’t find any pot or mo/po files.
Thank you
I used to use a WP calendar called “Ajax Event Calendar” but it is not supported anymore, so I changed to this one because it is one of the few that does not treat new calendar entries like a WP post.
In that older calendar I used, it was possible to copy or duplicate an entry without having to use the “repeat” function. This would be useful if I wanted to put a duplicate entry somewhere else that did not fit into one of the “repeat” categories, like for instance in another month on a random day in that month.
Is it possible to work this into a future update, even if it were in only the commercial version? Thanks
]]>