Christian Leuenberg
Forum Replies Created
-
Forum: Plugins
In reply to: [Compact WP Audio Player] Error!I did a rollback to version 1.9.9 which works just fine. Hope you can fix the issue in order to be able to update the plugin to it’s latest version again …
Thanks in advance!
- This reply was modified 9 months, 3 weeks ago by Christian Leuenberg.
Forum: Plugins
In reply to: [Compact WP Audio Player] Error!@mra13 Thanks for updating the plugin. Unfortunately I am still having this issue while calling the shortcode within my PHP function:
do_shortcode('[sc_embed_player fileurl="'.$attr_audio_01['src'].'"]')
When the file name contains Umlauts (?, ?, ü) or any other non-latin character (e. g. Hebrew) I still get this error message:
Compact Audio Player Error! The mp3 file URL that you entered in the “fileurl” parameter looks to be invalid. Please enter a valid URL of the audio file.
Two examples for non working files:
tausendkind-TV-Spot-2017-Herbst-Winter-Kinderm?bel-YouTube-720p-1.mp3
????????-20-?????.mp3
Hope you can take a further look into this issue. Thanks in advance!
Forum: Plugins
In reply to: [Compact WP Audio Player] Error!I do currently experience the same issue: Files containing non-latin characters (e.g. ????????-20-?????.mp3) are causing the player shortcode to output this error message. I would appreciate fixing this soon!
Forum: Plugins
In reply to: [Really Disable Emojis] Disable emojis in customer notesOk, I tested it. It is not translating any
:-)
etc. into emojis by default. But of course users are able to insert actual unicode in this comment field. That’s a different topic and currently not covered by my plugin. I will keep this request on my list for possible future updates.Forum: Plugins
In reply to: [Really Disable Emojis] Disable emojis in customer notesHi @isaakgeo !
Where exactly do these emojis show up to you? In the WooCommerce orders pages?
Greetings, Christian
Forum: Reviews
In reply to: [Really Disable Emojis] Works well, but not on mobileThanks for your review and feedback. Do you have an example website URL of where you experience this behaviour on mobile device?
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Podcast feed author line appends angle bracketThanks @keleigh824 for the hotfix! ??
I found the problem: In your function
ssp_get_the_feed_item_content
you are using theparse_blocks
function and then building up the feed summary. But I am not using the Gutenberg Blocks. I now manually added the following quick-and-dirty lines of code in your file php/includes/ssp-functions.php:function ssp_get_the_feed_item_content() { $content = get_the_content(); $blocks = parse_blocks( $content ); // new line: $is_gutenberg_page = ( ! empty( $blocks ) && '' !== $blocks[0]['blockName'] ); // changed following if clause: // old: if ( $blocks and is_array( $blocks ) ) { // new: if ( !$is_gutenberg_page ) { […]
I would be really happy if you could consider checking if Blocks are enabled or not in order to get the summary back into the feed.
Thanks in advance!
Forum: Plugins
In reply to: [WooCommerce] Sort product attributes by their labels including Umlauts@sohanhossain Thanks, I already tried using the
sorttype
parameter:3 = SORT_LOCALE_STRING
seemed to be the proper one but none of those parameters is sorting the correct way. I also tried in combination with settingsetlocale( LC_ALL, 'de_DE' )
within the template file in case of having issues with the correct locale. Any further ideas? ??Hi @podcastmotor, thanks for the fast reply. I did setup my podcast with your plugin back in 2019. I am not 100% sure if I saved the series’ feeds at least once … It could be that I actually never saved them because their default settings were just fine.
Forum: Plugins
In reply to: [Extra Conditional Logic for Beaver Builder] Checking URL part or parameterHey @sethstevenson, I made some changes in your plugin code to get my feature request done. Would you be so kind to consider this for an update of your plugin?
added to rules.js:
// URL addRuleType( 'extra-conditional-logic-for-bb/url', { label: __( 'URL Fragment' ), category: 'browser', form: { operator: { type: 'operator', operators: [ 'equals', 'does_not_equal', 'starts_with', 'ends_with', 'contains', 'does_not_contain', ], }, value: { type: 'text', defaultValue: '/', }, }, });
added to rules.php:
'extra-conditional-logic-for-bb/url' => array($this, 'url_evaluation'), //as a new rule, line 18
/** * URL Evaluation * * @param [type] $rule * @return void * @since 1.0.1 */ public function url_evaluation( $rule ) { $url = $_SERVER['REQUEST_URI']; // Evaluate the rule compared to the current page and return a boolean return BB_Logic_Rules::evaluate_rule( array( 'value' => $url, 'operator' => $rule->operator, 'compare' => $rule->value, ) ); }
Thanks @podcastmotor for your reply! I cannot switch to a standard theme because some settings might get screwed. But indeed the Astra Theme settings (Customizer) limit the excerpt count to 55 for Blog archive. I think this is affecting your feed. Is there any chance of using a filter in my functions.php to solve this issue? Or is this something I need to address to the Astra developers?
Forum: Plugins
In reply to: [Restrict Anonymous Access] The plugin not workingHi Ania,
I have checked the plugin with WordPress 5.5.1 and it is working with no problems. Could you please describe the issue in more detail and list all your active plugins and the theme you are using?
Best regards,
ChristianForum: Plugins
In reply to: [Restrict Anonymous Access] The plugin not workingHi Ania,
thanks for your report. I will check this and get back to you soon!
Regards,
Christian- This reply was modified 4 years, 2 months ago by Christian Leuenberg.