piffpaffpuff
Forum Replies Created
-
those are browser settings. you need to set this up in your browser/os print window.
the paypal standard payment doesn’t support coupons. that’s why only the cart infow without any item info is transferred to paypal. there is no chance to change this, it is a paypal restriction.
this isn’t a bug of the plugin but of jquery ui. see the bug report here:
https://bugs.jqueryui.com/ticket/4765
maybe 1.9 will fix this. and it hopefully comes out before wordpress 3.4 is released so that they can include it. until then i would recommend you the following:
1. fix the jquery ui code
2. deregister the loaded jqueryui script and enqueue your own jqueryui file.thanks for reporting and sorry for the inconveniences. i will issue a new version as quick as possible.
Forum: Requests and Feedback
In reply to: wp.org plugin SVN: screenshots aren't updated on plugin websitethanks for the help but i need to apologize: i forgot that a tag of the current version was present in the tags folder. that’s why those screenshots never got updated. again, sorry for the useless post.
Forum: Requests and Feedback
In reply to: wp.org plugin SVN: screenshots aren't updated on plugin websiteok. it is now about 5 days. let’s wait another 2 days.
great to hear! i will update the plugin soon. use the second line until then.
you need to create a custom template. read the faq: https://www.ads-software.com/extend/plugins/woocommerce-delivery-notes/faq/
btw: please create the next time a new topic, because your issue is completely off-topic here.
thanks for testing. could you please test the second line too with the $_GET in it? if it doesn’t work revert back to this:
if (!current_user_can(‘manage_woocommerce_orders’) || empty($_REQUEST[‘order’]) || empty($_REQUEST[‘name’])) {
ok cool. but not really good for you or the plugin code. it could maybe be a server issue on your side. could you please help test something? replace the line with this:
if (!current_user_can(‘manage_woocommerce_orders’) || empty($_REQUEST[‘order’]) || empty($_REQUEST[‘name’])) {
and if it does work, try it with this:
if (!current_user_can(‘manage_woocommerce_orders’) || empty($_GET[‘order’]) || empty($_GET[‘name’])) {
thanks for testing.
btw: do you use the “print invoice” or “print delivery note” buttons to start the printing or do you have some custom code running?
ok then try to change the line to this:
if (!current_user_can(‘manage_options’)) {
and try again.
which woocommerce version do you use? your user profile needs to have ‘manage_woocommerce_orders’ capability. normally woocommerce adds this to the admin user. try to deactivate/activate woocommerce.
if this won’t help try the following and please report back:
1. open /wp-content/plugins//woocommerce-delivery-notes/woocommerce-delivery-notes-print.php in a text or code editor.
2. go to line 22 which looks like this:if (!current_user_can(‘manage_woocommerce_orders’) || empty($id) || empty($name)) {
and replace it with this:
if (!current_user_can(‘manage_options’) || empty($id) || empty($name)) {
3. save and upload the file and try to print again.
Forum: Plugins
In reply to: [Related Links] [Plugin: Related Links] More Features Please!i’m glad that you like the plugin and thanks for the suggestions. currently i do not plan to add much more features because i don’t have this much time.
1. this would mean that every custom link should be saved to a database. or at least every custom link should be added to the links database. i’m undecided if this would be cool especially because there wouldn’t be a way to delete them again.
2. yeah i can add a “Media” type in the settings. but all files will be in the same list as the posts, pages etc.
3. what you describe was the old interface for version 1.0. then i decided to go with the same interface as the wordpress editor when you insert a link. i think it will stay like that for now.
Forum: Plugins
In reply to: [Related Links] [Plugin: Related Links] Reciprocity of related links ?thanks, and i’m happy that you like the plugin.
well, the plugin isn’t working like that. and i hardly doubt that i will ever implement this feature. currently the related links are saved as custom meta in the post. to make your feature work you have two possibilities:
– when the post is saved, update all linked posts and set their related links too.
– when a post is loaded, check the database and meta query all posts that have the current post id set as related link. for this you would need to save all id’s as seperate meta.i would go with the first option. feel free to implement it and i will gladly put it into the code when you send me the changes.
thank you. in the meantime i’ve sent an email to david with a longer description of the issue and some files fix it.
this is a bug, thanks for finding it. it should be fixed in version 1.5.4