exrecefe
Forum Replies Created
-
Forum: Plugins
In reply to: [Social Feed Gallery] SyntaxError: Unexpected tokenThank you! That was it. I was checking and one of my security plugins is blocking it. Do you know if the response of that json has sensitive information? I have noticed that some malicious IPs have been trying to make requests to the plugin directly, but if there is no sensitive information I can set an exception.
Forum: Plugins
In reply to: [Social Feed Gallery] SyntaxError: Unexpected tokenThank you for your response!
I tried to renew the token but the problem persists. The strange thing is that it does work fine on the desktop version. I have tried on mobile with different browsers and the problem persists. Is it possible that it is due to some particular code for mobiles?Forum: Fixing WordPress
In reply to: Site loads randomly with problemsAnd suddenly, without doing anything really significant, the problem stopped appearing. I didn’t update anything I didn’t do before, so it’s very likely that the problem was related to hosting or cloudflare, maybe with an old cache, it’s a rare case.
Anyway, I will try to contact the Theme support team to fix that error as well.
Thank you very much @danitatsan for your help and willingness.
Forum: Fixing WordPress
In reply to: Site loads randomly with problems@danitatsan Thank you for your response!
I went to check the error logs on the server and found a recurring one related to the issue. The curious thing is that the error occurs even when the theme is not active. Do you know if the inactive themes could still influence something like this?
This is the error:
[08-Aug-2023 16:25:06 UTC] PHP Fatal error: Uncaught Error: Call to a member function is_empty() on null in /home/XXXXX/holylemony/wp-content/themes/enzy/framework/woo_functions.php:67
Stack trace: 0 /home/XXXXX/holylemony/wp-content/themes/enzy/templates/headers/header-v1.php(58): enzy_tiny_cart() 1 /home/XXXXX/holylemony/wp-includes/template.php(785): require('/home/XXXXX/…') 2 /home/XXXXX/holylemony/wp-includes/template.php(718): load_template('/home/XXXXX/…', false, Array) 3 /home/XXXXX/holylemony/wp-includes/general-template.php(204): locate_template(Array, true, false, Array) 4 /home/XXXXX/holylemony/wp-content/themes/enzy/framework/theme_functions.php(903): get_template_part('templates/heade…', 'v1') 5 /home/XXXXX/holylemony/wp-content/themes/enzy/header.php(179): enzy_get_header_template() 6 /home/XXXXX/holylemony/wp-includes/template.php(783): require_once('/home/XXXXX/…') 7 /home/XXXXX/holylemony/wp-includes/template.php(718): load_template('/home/XXXXX/…', true, Array) 8 /home/busijqk in /home/XXXXX/holylemony/wp-content/themes/enzy/framework/woo_functions.php on line 67[08-Aug-2023 18:32:43 UTC] Cron reschedule event error for hook function: shopmagic/core/cron/daily, error code: invalid_schedule, error message: Event schedule does not exist, data: {"schedule":"shopmagic\/core\/cron\/daily","args":[],"interval":86400}
[09-Aug-2023 05:18:38 UTC] PHP Notice: Undefined offset: 1 in /home/XXXXX/holylemony/wp-content/plugins/themesky/widgets/instagram.php on line 369- This reply was modified 2 years, 10 months ago by exrecefe.
Forum: Plugins
In reply to: [Contact Form 7] Latest Update broke my siteThe same thing happened to me, it seems to be something related to Jquery or something that broke the file loading. I had to disable it urgently.
Forum: Plugins
In reply to: [Contact Form 7] Stretch of Contact formHi,
I still dont know why but the attribute
max-widthin thelabeltag of bootstrap is interfering with your css code. Just change the attribute towidthto make it works. To avoid altering bootstrap files I suggest do it in other stylesheet.Change:
label {max-width:100%;}to:
label {width:100%;}Hope it help.
Forum: Plugins
In reply to: [Contact Form 7] How to catch event response messageThanks for the answer!
It works now, this is the final code:
$('.wpcf7').on('wpcf7invalid wpcf7spam wpcf7mailsent wpcf7mailfailed wpcf7submit', function(event){ $('.backpanel .popup').html(event.detail.apiResponse.message); });PD: Would be nice if you add that event property to the website’s event properties list