Neverlands
Forum Replies Created
-
Helo mbrsolution,
all features are enabled (Screenshot)
I use the standard “My Account” page that comes with the WooCommerce plugin. The only entry there is [woocommerce_my_account].
Should I better get in contact with the authors of WooCommerce?
Best regards,
NeverlandsHello mbrsolution, thanks for the quick reply!
I did as you said, deactivated all plugins but yours and switched to the Twenty Sixteen theme.
The captcha worked perfectly.
After activating any plugin one by one I found the “quilty”:
“WooCommerce My Account Widget” Version 0.5.0.
This is no big problem because I don’t use this widget anyway.Thanks for your help!
Hi, I have exactely the same issue – as long as username and password are correct I can enter the backend no matter if the captcha field is left blank or incorrectly filled.
Plugin Version : 4.1.4
WP Version : 4.5.3
WPMU: No
MySQL Version : 5.5.50
PHP Version : 5.6.24-0+deb8u1Many thanks, this works perfectly!
I also added the delivery time:
add_action( 'wpo_wcpdf_after_order_data', 'wpo_wcpdf_delivery_date', 10, 2 ); function wpo_wcpdf_delivery_date ($template_type, $order) { ?> <tr class="delivery-date"> <th>Lieferdatum:</th> <td><?php echo date_i18n( get_option( 'date_format' ), $order->delivery_date ); ?></td> </tr> <?php } add_action( 'wpo_wcpdf_after_order_data', 'wpo_wcpdf_delivery_time', 10, 2 ); function wpo_wcpdf_delivery_time ($template_type, $order) { ?> <tr class="delivery_time"> <th>Lieferzeit:</th> <td><?php echo $order->delivery_time; ?> Uhr</td> </tr> <?php }
Hello I have a similar question: I use WooCommerce PDF Invoices & Packing Slips Version 1.5.36 with WooCommerce Delivery Time Slots Version 1.0.2.
I put the code you provided at https://docs.wpovernight.com/woocommerce-pdf-invoices-packing-slips/pdf-template-action-hooks/#example-1-print-a-delivery-date-on-the-packing-slip (Example 1) into the functions.php of my child theme (/wp-content/themes/enfold-child).
Unfortunately the delivery time and date are still not showing up.
I also use a copy of the pdf folder: /wp-content/themes/enfold-child/woocommerce/pdf/enfold-child
If I try the Example 2 all is working correctly.
I installed the WooCommerce Store Toolkit und took a look at the hidden custom fields. Screenshot is here: ScreenshotSo the key would be: _delivery_date 1471188175
I tried to change the line
<td><?php $wpo_wcpdf->custom_field(‘delivery_date’); ?></td>to
<td><?php $wpo_wcpdf->custom_field(‘_delivery_date’); ?></td>but with no success.
Help is very apreciated!