railmedia
Forum Replies Created
-
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Add tip to printed receiptHi there mellow1,
What is the name of your print-plugin?
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] How can I edit the styling of the buttons?Hi there oliviertree,
You should be able to overwrite the styling from your theme’s CSS or by using the in-built WordPress Customizer.
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Filled fields that are deletedHi Damien,
Unfortunately yes, this may happen since when you add a tip, a page refresh is triggered. I will investigate it and get back to you with a possible fix.
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesHello Aaron,
Yes, I understand the problem. However, the plugin does not support at least at the moment WooCommerce Subscriptions or any other subscription based plugin.
I will, in any case, look into this matter and should there be a future release with subscriptions support, I will let you know.
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesHi there Aaron,
Let me get this straight. You are trying to use the Order tip with Subscriptions? As in adding a tip to each Subscription order automatically?
Do you have a staging area I could take a look at?
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesHi there Aaron,
What plugin for subscriptions is the website using?
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesHi there Aaron,
Let’s edit the remove_tip_on_order_placed() function once again as follows:
function remove_tip_on_order_placed( $orderid ) { if( $this->settings['wc_order_tip_remove_new_order'] ) { $wc_session = WC()->session; if( $wc_session ) { $tip_is_set = $wc_session->get( 'tip' ); if( $tip_is_set ) { $wc_session->__unset( 'tip' ); } } } }
Forum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesDear smys123,
If you can, please replace the entire function remove_tip_on_order_placed from the file /wp-content/plugins/order-tip-woo/frontend/controllers/main.class.php (line 120) with the following:
function remove_tip_on_order_placed( $orderid ) { if( $this->settings['wc_order_tip_remove_new_order'] ) { $wc_session = WC()->session; $tip_is_set = $wc_session->get( 'tip' ); if( $tip_is_set ) { $wc_session->__unset( 'tip' ); } } }
I will include this fix in the next release.
Please let me know how it went.
Regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Fatal Error causing issuesHi there smys123,
Thanks for reporting this. I’ll look into the issue and get back to you with a solution.
Best regards,
AdrianForum: Plugins
In reply to: [Order Tip for WooCommerce] Translating the buttonsHi there Wind of Change,
You’re most welcome. I’m glad you like the plugin.
Thank you for your suggestion on translating the buttons.
I’ll be releasing at some point next week version 1.1 of the plugin which would cover more placement positions on the cart and checkout page and will also include the translations for the buttons.
Best regards,
AdrianHi there ranch4695,
Many thanks for your feedback. I am glad you are enjoying and using the plugin.
I will release the feature you requested in the next version of the plugin + a few extra positions where the tip form could be added.
You can always drop a line at [email protected]
Best regards
Forum: Plugins
In reply to: [Order Tip for WooCommerce] no calcula bien los montos de propinaHola, buenas
Sí, tenía razon. Había un problema con el formato de la propina. Ahora está arreglado y muestra la cuantía correctamente.
Puede comprobar aquí si quiere: https://order-tip-for-woocommerce.tudorache.me/product/album/ – el producto tiene el precio de 15132, o puede renovar el plugin directamente a la versión 1.0.1
Muchas gracias por notificarlo.
Un saludo
Forum: Fixing WordPress
In reply to: Block editor no longer working: only shows HTMLHi all,
Try testing this with a different admin user. In my case it worked and I think it’s related to the problem spencerfcloud mentioned above.
To make sure, I recreated my admin user. Not from the DB, but by using a different admin user. This way you make sure all the user meta data is stored correctly. Probably it can also be done programatically by using the wp_insert_user() function.
Best of luck!
Forum: Fixing WordPress
In reply to: Domain gets rewritten in address barHi Tyler,
Thank you very much for your reply.
The .htaccess file I am using is the standard WP one:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress
The Site Address looks correct on /wp-admin/options-general.php – https://www.suremann-spenglerei.ch/wp-admin/options-permalink.php
The domain has used regular Cpanel hosting. Now it’s on wpengine.com – the problem persisted on both types of hosting.
Thank you!
[SOLVED] I think we can close this topic now.