WP CMS Ninja
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tickets and Registration] Fatal error taking memoryI had to modify my code snippet to the following but I was then able to get the backend of the website working again.
add_action( 'init', 'fix_events' , 1 );
function fix_events() {
delete_option( 'tribe_pue_key_notices' );
}Forum: Plugins
In reply to: [Simple Share Buttons Adder] X Icon Not Updated in ShortcodeI am seeing the exact same issue as you.
I am still seeing this as an issue. Any resolution for this issue? I see other people are posting about this as well.
PostSMTP responded with the following:
We have checked the Popup Builder version 4.3.2 and found that this includes a file named pluggable.php. wp_mail is a pluggable function and every SMTP plugin overrides it and it is WordPress standard, if any plugin includes this file before we override this function then plugin will not be able to send emails.
So what has changed with Popup Builder that is causing this issue that was not in 4.3.0? @callerpatty had a good response to this ticket but a moderator for some reason removed it thinking it was not the same issue.
- This reply was modified 9 months, 2 weeks ago by WP CMS Ninja. Reason: tense of a word
I had started a kind of duplicate ticket with Popup Builder as well. So it looks like it has to do with something they have done and hopefully they will work towards resolving this. Marking this ticket as resolved as I hope this issue should be resolved here: https://www.ads-software.com/support/topic/latest-version-throwing-wp_mail-issue/
I decided to test a clean WordPress install of 6.5.3. I then installed Post SMTP v 2.9.4 and Popup Builder v 4.3.2. Even without making any changes to the Post SMTP Settings area I am seeing the following error from Post SMTP.
Just to update you, even though there was no notation saying that the credentials were deactivated. After a 3rd time of recreating them, I was able to successfully get it to start sending back out again. Was a very frustrating issue that turned out to not even be related to the software. Thank you.
I took a look at the transcript and it ends with: SMTP ERROR: DATA END command failed: 554 Transaction failed: Missing start boundary SMTP Error: data not accepted.
and keep in mind I have tested on the same server with two different systems. One can send and one can not using the PostSMTP test Message.
Forum: Plugins
In reply to: [Disable Gutenberg] Unable to Upload PluginsSo I am now wondering if the issue arose from an improper PHP INI settings. Like the hosting account had an old PHP.INI file floating around within the hosting account where it was supposed to be getting set via the .htaccess file.
Sorry about that.
Just a FYI, My PHP version is 8.1.18.
So this checkbox seemed to have worked for me. Although it still makes me wonder why this is happening. Almost like the header is not encoding correctly or being applied on separate lines. I am just worried that having this checkbox enabled, if whatever is causing it is undone will it continue to send looking correctly or will it then break again?
Forum: Plugins
In reply to: [Redirection] 404 Log not deletingi didn’t think to check something as simple as to if the cron was firing. I will check that.
Forum: Plugins
In reply to: [Redirection] Custom Shortcode for Target URLI was able to accomplish the shortcode method by using the following code in my theme’s function file.
add_filter('redirection_shortcodes', function( $sc_array ) { $sc_array[] = 'ucase'; return $sc_array; } ); add_filter('redirection_url_transform', function( $nothing, $tag, $attrs, $content) { switch ( $tag ) { case 'ucase': $tmp_content = str_replace( [ '_', '-' ], ' ', $content ); $tmp_content = ucwords($tmp_content); $content = str_replace( [ ' ' ], '_', $tmp_content ); return $content; break; } },99,4 );
Using this I added the ucase shortcode to the list of available shortcodes, then added in my own url_transform switch based off of the tag.
Forum: Plugins
In reply to: [Redirection] Custom Shortcode for Target URLI think I found the way by tying in with the redirection_url_transform and redirection_shortcodes filters.
Forum: Plugins
In reply to: [Advanced Custom Fields: Font Awesome Field] Pro Icon Sets not ShowingYes that is correct, I am using FontAwesome 5.x icon set with pro enabled as we do have the pro css from our account. It appears to be working for 2 of the languages and also Post Types in all three languages. But on this options page it is only allowing 2 out of 3 of the languages to see all of the icon sets available and in the 3rd only the one regular icon set.