migcoe
Forum Replies Created
-
Forum: Plugins
In reply to: [Moloni] Problema com outros cron jobsSem dúvida, está tudo ok agora!
Continua??o de bom trabalho.Forum: Plugins
In reply to: [Moloni] Problema com outros cron jobsAcabei de ver que esse problema foi resolvido no último update.
With wp control i cant see on cron Schedules, a schedule with “wpo_daily” in the name unfortenly.
On other hand the “wpo_reset_webp_conversion_test_result” hook shows at cron events with a unknow recurrence (since there is no wpo_daily). Then, when I try to edit or delete it, it shows this error: The event you are trying to edit does not exist.
the only way i managed to get this silent is really while using this code on my functions php:
add_action(“init”, “remove_cron_job”);
function remove_cron_job() {
wp_clear_scheduled_hook(“wpo_reset_webp_conversion_test_result”);
}Well even with all turn off besides your plugin the problem persists.
Hi Venkat and thank you for your reply.
Unfortenly i already tried before something like your suggestions and was not working, so i tried again and:
– Deactivating the plugin dont clean it, even if i reset it (but the spam stop while is deactivated).
– there is no “wpo_daily” schedule, neither any reference to “wpo_reset_webp_conversion_test_result” job… this is the weird part!For what i can see, any time a page is refreshed, no matter if backend or frontend, it fires that error.
Only way i managed to get rid of it is while using this action on my functions.php:add_action(“init”, “remove_cron_job”);
function remove_cron_job() {
wp_clear_scheduled_hook(“wpo_reset_webp_conversion_test_result”);
}Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] How to list all data from other PODHi Jory and sorry for the late reply of your answer.
Your suggestion gave me light for the right direction! I felt stupid to not think in using a relationship to solve this thing… was complicating something that Pods can just make it simple.
Basically I made a pod named showroom with a relationship to all cars and then made a pod template for the showroom archive and single and worked like a charm.
So now I have a interface to pick what car i want to make a presentation directly from the cars database with no visually or url relation with the cars website catalogue!Again, thank you for your tip, and thank you for all Pods team to keep alive such great plugin.