alexwbaumann
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] PHP Fatal error: Uncaught TypeError: trim()@takayukister I wanted to ensure that you saw my last response with a link to a site where this can be tested. Let me know if you have any other questions or if I can help any way with the error.
Forum: Plugins
In reply to: [Contact Form 7] PHP Fatal error: Uncaught TypeError: trim()I already rolled the other site back to php7.4 to keep it working. But I have setup https://cf7test.w101.betadp.com/ using the theme Twenty Twenty-Two and the only plugin installed is Contact Form 7. Once setting up a new application in Constant Contact and adding the API details to CF7, the same error ends up in the error log.
When submitting a test, the ajax call will return a 500 status code along with the “There has been a critical error on this website.” error that WordPress displays.
I’m using the Post Notifications emails with the “Automatic Latest Content” section provided with the plugin. So this is what is being pulled from the post that was created and included in the email.
Whoops. Turns out, while enabled in php configuration, the configs were not being loaded. Got that fixed and everything is working.
This happens in all email clients. I do not seem to have an option to upload a file, so I have uploaded one to https://ibb.co/DPX1Rsm
phpinfo shows –enable-mbstring=shared and –with-iconv=shared. Will head over to the link provided to open a ticket there.
Forum: Plugins
In reply to: [Social Slider Feed] Widget not working after updateCheck this other ticket.
Forum: Plugins
In reply to: [Social Slider Feed] Not working after updateIt looks like Instagram changed the json that is on the page that is being pulled.
If you edit the plugins file instaram_slider.php around line 297, you will find something that looks like:
$json = strstr( $json, '{"entry_data"' );
This is no longer found. I have gotten it to work replacing that one line of code with the following two lines of code.
$json = strstr( $json, 'window._sharedData = ' ); $json = str_replace('window._sharedData = ', '', $json);
Good luck.