Forum Replies Created

Viewing 15 replies - 226 through 240 (of 326 total)
  • thanks for looking into it. there are also some other issues that need to be fixed. in the next days i have fortunately some freetime to work on the plugin.

    this plugin doesn’t send any e-mail. you are talking about a woocommerce feature. you can’t directly add a link to the invoice inside an emai because of 2 reasons:

    1. it isn’t programmed. 🙂
    2. with the current security settings of the plugin, only allow shop owners and admins can print orders.

    Forum: Plugins
    In reply to: [Related Links] Meta box
    Plugin Author piffpaffpuff

    (@chabis)

    the related links function returns an array. every array item also includes the post_id. just make a meta-query with this post_id and the meta-name.

    @toherangi thanks for your help, but i think that editing source files isn’t very update-proof. i think the following should work instead (not tested but should work): just add the code below to your theme functions.php.

    function change_invoice_title($title) {
    return 'Tax invoice';
    }
    add_filter('wcdn_template_title', 'change_invoice_title');

    @meevi please be more precise. what exactly isn’t working? please provide a step by step description. and what is your os version, browser version, woocommerce version?

    i can’t reporduce the issue. what wocommerce and plugin version do you use, what browser? did you already update to 2.0.1? does it still not work?

    thanks for the feedback. the issue should be fixed in 2.0.1. i will mark it as resolved, please report back if it isn’t. and please don’t forget your wordpress version, plugin version, os name, os version, browser name and browser version when your report back.

    indeed the plugin was never tested in ie10. i’ve updated it to 2.0.1 please test it and report back if it works.

    thanks for the feedback. the issue should be fixed in 2.0.1. i will mark it as resolved, please report back if it isn’t. and please don’t forget your wordpress version, plugin version, os name, os version, browser name and browser version when your report an issue.

    thanks for the report. i switched back to the date when the order was created. that’s the sole date woocommerce generates. please update to 2.0.1

    to add your phone number you may want to use the following code in your functions.php (not tested):

    add_filter('wcdn_billing_address', 'my_filter_function');
    add_filter('wcdn_shipping_address', 'my_filter_function');
    
    function my_filter_function($address) {
    global $wcdn;
    return $address . '<br/><br/>' . $wcdn->print->get_order()->billing_phone . '<br/>' . $wcdn->print->get_order()->billing_email;
    }

    @arnan de Gans yeah, please help developing it. as i can see you have some nice plugins, please fork it on github if you like, you’re welcome. and as you know yourself: this plugin is open source, everyone can work on it, and nobody earns anything from it, except some respect.

    besides that, thanks for the feedback. the issue should be fixed in 2.0.1. i will mark it as resolved, please report back if it isn’t. and please don’t forget your os name, os version, browser name and browser version when your report an issue.

    thanks for the feedback. the issue should be fixed in 2.0.1. i will mark it as resolved, please report back if it isn’t. and please don’t forget your os name, os version, browser name and browser version when your report an issue.

    fixed on github please check if it works. a new version will be released here on wordpress in a few weeks when the translations are ready.

    it will be fixed in the next version

    chabis, thank you for taking the time during the hectic holiday season to consider my request (ref your email dated 2012-12-29). I did experiment with your css modifications but alas this doesn’t really help. Your css modification merely removes everything except the recipient name and address and leaves everything else as before. As mentioned before, I want to keep all data on the current delivery note but change placement of the sender to top left and increase the font of the recipient to allow the delivery note to have a dual function as a mailing label by appropriate folding. Your suggestion to copy and paste the recipient info into a label app is certainly workable but printing on my consumer-level printer one label at a time is not really viable whereas printing an 8.5x 11 sheet delivery note is practical. I hope you and your fellow developers will not let this request lapse and put yourselves in the shoes of the user who not only needs to print a delivery note but also ship the product. All of the ingredients are there within the data but I don’t have the skill to mix them to suit my needs. I hope you will take another look at this request.

    sorry, i misunderstood you then. i thought you want to print mailing labels. try this instead:

    /* Simple CSS Reset and Print options
    ------------------------------------------*/
    
    html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, table, ol, ul, dl, li, dt, dd {
    	border: 0 none;
    	font: inherit;
    	margin: 0;
    	padding: 0;
    	vertical-align: baseline;
    }
    
    body {
    	line-height: 1;
    }
    
    ol,
    ul {
    	list-style: none;
    }
    
    table {
    	border-collapse: collapse;
    	border-spacing: 0;
    }
    
    /* Template Page Layout
    ------------------------------------------*/
    
    /* Main Body */
    body {
    	background: #fff;
    	color: #000;
    	font-family: "HelveticaNeue", Helvetica, Arial, sans-serif;
    	font-size: 0.875em;
    	line-height: 125%;
    }
    
    h1,
    h2,
    h3,
    h4 {
    	font-weight: bold;
    }
    
    li,
    ul {
    	margin-bottom: 1.25em;
    }
    
    p + p {
    	margin-top: 1.25em;
    }
    
    /* Basic Table Styling */
    table {
    	page-break-inside: auto;
    }
    
    tr {
    	border-top: 1px #ccc solid;
    	border-bottom: 1px #ccc solid;
    	page-break-inside: avoid;
    	page-break-after: auto;
    }
    
    td,
    th {
    	border-left: 1px #ccc solid;
    	border-right: 1px #ccc solid;
    	padding: 0.375em;
    	vertical-align: middle;
    }
    
    th {
    	color: #000;
    	font-weight: bold;
    	text-align: left;
    }
    
    /* Special Margin & Overflow Stylings */
    #page {
    	margin-left: auto;
    	margin-right: auto;
    	padding-top: 5%;
    	padding-bottom: 5%;
    	padding-left: 10%;
    	padding-right: 10%;
    	text-align: left;
    	page-break-after: always;
    }
    
    #letter-header,
    #order-items,
    #order-summary,
    #order-notes {
    	margin-bottom: 3em;
    }
    
    #order-info,
    #order-summary {
    	margin-bottom: 6em;
    }
    
    #page,
    #letter-header,
    #order-listing,
    #order-summary,
    #order-notes,
    #letter-footer {
    	overflow: hidden;
    }
    
    #order-items,
    #order-summary,
    #order-notes,
    #letter-footer {
    	page-break-before: auto;
    	page-break-after: auto;
    }
    
    /* Delivery Notes Head */
    #letter-header {
    	float: right;
    	width: 50%;
    }
    
    #letter-header .heading {
    	font-weight: bold;
    	font-size: 2em;
    	line-height: 125%;
    }
    
    #letter-header .company-name {
    	font-weight: bold;
    }
    
    #letter-header .company-info {
    	margin-top: 0.45em;
    }
    
    /* Order Listing - #order-listing */
    #order-listing {
    	margin-bottom: 6em;
    	float: right;
    	width: 50%;
    	font-size: 1.5em;
    	line-height: 125%;
    }
    
    /* Order Info - #order-info */
    #order-info {
    	float: left;
    	width: 50%;
    }
    
    /* Order Items - #order-items */
    #order-items {
    	clear: both;
    }
    
    #order-items table {
    	width: 100%;
    }
    
    #order-items .description {
    	width: 50%;
    }
    
    #order-items .price {
    	width: 25%;
    }
    
    #order-items dl {
    	display: inline;
    	margin-bottom: 0;
    	color: #666;
    }
    
    #order-items dt,
    #order-items dd {
    	display: inline;
    	margin-bottom: 0;
    	font-size: 0.75em;
    }
    #order-items dt {
    	margin-left: 0.75em;
    }
    
    #order-items dd {
    	margin-left: 0.2em;
    }
    
    /* Order Summary - #order-summary */
    #order-summary {
    	float: right;
    	width: 50%;
    }
    
    #order-summary table {
    	width: 100%;
    	page-break-inside: avoid;
    }
    
    #order-summary .price {
    	width: 50%;
    }
    
    #order-summary tr:last-child {
    	border-top: 2px solid #000;
    	border-bottom: 2px solid #000;
    	font-weight: bold;
    }
    
    #order-summary small {
    	font-size: 0.75em;
    	color: #666;
    }
    
    /* Order Notes - #order-notes */
    #order-notes {
    	clear: both;
    }
    #order-notes .notes-shipping {
    	float: left;
    	width: 50%;
    }
    #order-notes .notes-personal {
    	float: right;
    	width: 50%;
    	font-weight: bold;
    }
    
    /* Footer Imprint */
    #letter-footer {
    	border-top: 1px solid #ccc;
    	padding-top: 1em;
    	color: #666;
    	font-size: 0.75em;
    }
    
    #letter-footer p + p {
    	margin-top: 1em;
    }
    
    #letter-footer .policies,
    #letter-footer .imprint {
    	margin-bottom: 1em;
    }
    
    /* CSS Media Queries for Print
    ------------------------------------------*/
    
    @media print {
    	body {
    		font-size: 8pt;
    	}
    }
Viewing 15 replies - 226 through 240 (of 326 total)