SeKra
Forum Replies Created
-
I wrote an email to [email protected] in order to create a ticket. If I want to create a ticket here https://jetpack.com/contact-support/?rel=support I get redirected to this support forum where I also create a ticket. Where can I create a ticket? It seems like Jetpack does over complicate the support form on purpose in order to get less support tickets π€
Where can I create a ticket? @erania-pinnera
Thank you.
Is there any Support here? We are a paying for this plugin and there are 4 days of no answer! Come on guys, you can do better.
Best, Sebastian
Forum: Plugins
In reply to: [Simple Local Avatars] Php Error after updatePHP version 8.1.14 π
Forum: Plugins
In reply to: [Simple Local Avatars] Php Error after updateHey @dkotter , thank you for following up. I just realized the bug is simple π The domain has been removed but not the comma “,” after the string you want to translate. So simple remove the commas after the translation string.
// Just change this 'G' => __( 'G β Suitable for all audiences', ) // to this 'G' => __( 'G β Suitable for all audiences' )Simply remove the commas after the translation strings and the error will be gone. Please note there are 4 occurrences in your code. For G, PG, R and X.
Hope that helps π
Best, Sebastian
- This reply was modified 3 years, 4 months ago by SeKra.
Forum: Plugins
In reply to: [Simple Local Avatars] Php Error after updateHey @dkotter , thank you for addressing this issue. As @patrixer mentioned, the problem is originated by the missing domain for the gettext function __().
I’m using version 2.7.3 and there is still and issue. I had to edit the main plugin file (what I normally not do!) to get rid of this.
The file that the error occurs is /wp-content/plugins/simple-local-avatars/includes/class-simple-local-avatars.php lines 527 – 533
Just add the domain to the __() function and it should be fixed.
Thank you, greetings from Germany π
Sebastian
Forum: Plugins
In reply to: [Simple Local Avatars] Php Error after updateSame here β
Forum: Plugins
In reply to: [Contact Form 7] Error with ReCaptchaV3Hi Takayuki,
thank you for your feedback. But if I disable the plugin the error is gone π So I suppose the error comes from the plugin.
Maybe this helps to identify the issue.
Thank you.
Forum: Plugins
In reply to: [Redirection] No automatic redirectsBelow the title of a post there is a input for permalink. How could I change it any other way? π
Thanks
Forum: Plugins
In reply to: [Enhanced Category Pages] Conditional on category.phpThat would be great! Is it already updated and the possibility available to make it conditional?
Thank you!
SebastianForum: Plugins
In reply to: [Custom Post Type Permalinks] 404 file not foundSame problem here! /%post_id%/ is not working (404) – only thing that works is /%postname%/ – but I need post_id :/
What about the autor of this plugin? Thank you for reply π
Greetings.
Forum: Plugins
In reply to: [WooCommerce] Get quantity of each item in an orderI solved it by myself. For all of you having the same issue here is my solution:
Instead of
global $woocommerce; $order = new WC_Order( $order_id ); foreach ($items as $key => $product ) { $product['quantity']; }you should use
global $woocommerce; $order = new WC_Order( $order_id ); foreach ($items as $key => $product ) { $product['qty']; }In words: Instead of quantity use qty as key π
Hope that helps somebody.
Cheers Sekra.