fseydel
Forum Replies Created
-
Yes, tried this already, but 1.13 to 1.14 does seem to break things, as e.g. dateinput wouldn’t work anymore.
I’ll try to get the trac ticket bumped up, as OJones proposed in https://stackoverflow.com/questions/79480560/penetration-test-fails-for-wordpress-6-7-2-as-jquery-ui-1-13-3-reached-eol?noredirect=1#comment140172344_79480560
Forum: Plugins
In reply to: [Contact Form 7] No line breaks after update to 5.8.(1)So, I had the very same problem, but I couldn’t switch to non-html mails (I’m using html in mails).
Settingdefine( 'WPCF7_AUTOP', true );
solved the problem, but it’s pretty weird – I had it set tofalse
explicitly before, and up to 5.8.1 all linebreaks worked out as expected.
I hope AUTOP is not introducing additional problems – there probably was a reason I set it to false 8 years ago ??
@takayukister: So you definitly did change something in the parsing of the email form, right? Or is it some WordPress-change kicking in?Forum: Plugins
In reply to: [Newsletter Sign-Up for CleverReach] Critical Error after Upgrade to v2.3.1Again, I’m really not happy with support of CleverReach. It gave them all necessary steps to reproduce the issue, but they just asked for my FTP login via this foum and via support mail, without providing solutions at all.
Even a slack IM provoked no reaction.So I did the debugging myself, all issues are solved, solutions/workarounds provided in this thread and in https://www.ads-software.com/support/topic/print_cleverreach_form-functionality-broken-in-2-3-0-and-2-3-1/
As CleverReach seems not available to solve the “no links in privacy checkbox” issue, I digged into their code to solve this issue myself (again).
It seems CleverReach is overenthusiastic in escaping html. So the solution is:
In filecleverreach/resources/views/storefront/form.php
in line 41 change
echo esc_html( $attribute->label );
to
echo $attribute->label;
Forum: Plugins
In reply to: [Newsletter Sign-Up for CleverReach] Critical Error after Upgrade to v2.3.1Got it running at least in part, seems print_cleverreach_form functionality is broken, see here: https://www.ads-software.com/support/topic/print_cleverreach_form-functionality-broken-in-2-3-0-and-2-3-1/
Forum: Plugins
In reply to: [Newsletter Sign-Up for CleverReach] Critical Error after Upgrade to v2.3.1Downloading and re-uploading the file
wp-content/plugins/cleverreach/resources/views/admin/general/authenticate.php
solved the issue and I was able to reconnect.
But the plugin is still not working, it seems functionality was already broken in 2.3.0
It seems the API was thus heavily changed, that I have to do further changes, because now the plugin tells me (again in german):
In Ihrem CleverReach Konto gibt es keine Daten-Felder. Bitte legen Sie diese in der Empf?ngerliste unter Einstellungen in Ihrem CleverReach-Konto an und laden Sie die Listen auf der Seite Allgemeine Einstellungen des Plugins neu.
Our previous integration using
<?php if( function_exists( ‘print_cleverreach_form’ ) ) print_cleverreach_form(); ?>
simple displays NOTHING now.
Guys, if you change the plugin in such way, that currently working integrations do not work anymore, please tell your users about it!!!
What do I need to do to get the plugin up-and-running again?
Sorry, wrong plugin, recreated in https://www.ads-software.com/support/topic/critical-error-after-upgrade-to-v2-3-1-2/
Forum: Themes and Templates
In reply to: Unable to replace text in Services sectionNope, it’s just a dirty workaround, not using the excerpt here.
Thie trick is to show (and edit) “The Excerpt” on the edit page.
Check this out:
https://docs.famethemes.com/article/57-how-to-change-wordpress-page-excerpt-contentForum: Plugins
In reply to: [Qtranslate Slug] "Preview Changes" not workingIt seems it’s a bug in function filter_request, the “preview” parameter gets lost somehow.
Original code (preview changes broken):
function filter_request( $query ) { global $q_config, $wp_query, $wp; if (isset($wp->matched_query)) $query = wp_parse_args($wp->matched_query);
Modified code (preview changes working again):
function filter_request( $query ) { global $q_config, $wp_query, $wp; $is_preview = FALSE; if ( array_key_exists('preview', $query) && $query['preview'] == TRUE) $is_preview = TRUE; if (isset($wp->matched_query)) $query = wp_parse_args($wp->matched_query); if ($is_preview) $query['preview'] = TRUE;
Works like a charm ??