Reply to: tickets(371584)

Current PHP Memory Limit is 512 MB, but it needs more than 540MB. Could you increase it to 768MB?

Reply to: tickets(371531)

Could you check and make sure that the same issue happens with your shortcodes on our test site:

https://dev2.myeventon.com/test-742/

Reply to: tickets(371652)

Hello,

Please check now. I changed Feature image display style, saved Settings, changed it back and it seems to be working now.

Reply to: tickets(371660)

Hello,

I fixed the issue by following “EventON > EventCard > open Designer and save > now save EventON Settings”.

Please check and let me know.

Reply to: tickets(371662)

Hello,

I cannot find the full plugin on your server, only EventON Lite. This forum is for the full version, I am afraid.

Could you create a new ticket on 

https://wordpress.org/support/plugin/eventon-lite/

Reply to: tickets(371580)

Please take a look at FullCal add-on:

https://www.myeventon.com/addons/full-cal/

Try [add_eventon_fc hover=”numname” style=”names”] on

https://dev.myeventon.com/wp-admin/

Should look like this:

https://dev2.myeventon.com/test-741/

Reply to: tickets(371464)

Best i could do was sanitize. But when its done, and other dat eos picked, it removes other one

// Função para limpar e ajustar o valor da data
function formatValue(value) {
if (!value) return value; // Retorna o valor original se estiver vazio

// Remove barras invertidas e o que está dentro delas
let formatted = value.replace(/w+/g, “”).trim();

// Corrige o formato para “dia de mês de ano”
formatted = formatted.replace(/b(d+)s+es+(w+)s+es+(d{4})b/g, “$1 de $2 de $3”);

// Remove espaços extras
formatted = formatted.replace(/s+/g, ” “).trim();

return formatted;
}

// Função para sanitizar um campo de forma independente
function setupSanitization(inputSelector) {
const input = document.querySelector(inputSelector);
if (!input) return; // Se o campo não existir, encerra a função

// Manipulador de evento específico para este campo
function handleInput(event) {
event.target.value = formatValue(event.target.value);
}

// Remove eventos duplicados antes de adicionar novos
input.removeEventListener(“input”, handleInput);
input.removeEventListener(“change”, handleInput);

// Adiciona eventos para correção dinâmica
input.addEventListener(“input”, handleInput);
input.addEventListener(“change”, handleInput);

// Aplica a formatação inicial ao carregar
input.value = formatValue(input.value);
}

// Executa ao carregar a página
document.addEventListener(“DOMContentLoaded”, () => {
// Configura sanitização para os dois campos de forma totalmente isolada
setupSanitization(“.datepickerstartdate”); // Campo de início
setupSanitization(“.datepickerenddate”); // Campo de término

// Observa mudanças no DOM e reaplica as configurações
const observer = new MutationObserver(() => {
setupSanitization(“.datepickerstartdate”);
setupSanitization(“.datepickerenddate”);
});

observer.observe(document.body, { childList: true, subtree: true });
});