robbinjo
Forum Replies Created
-
Hi Janneke, have you got any idea when you can release an update that fixes this issue?
Forum: Plugins
In reply to: [Invoices for WooCommerce] Feedback on new versionI had the same problem with the sequential order number. There is a simple fix for this.
I fixed it by moving a line of code in the file includes/class-invoice.php
The parameter $order_number (used on line 59) is not known untill line 77.
Copy line 78 ($order_number = str_replace(“#”, “”, $order->get_order_number());)
Paste on line 57 (inside the if statement)Forum: Plugins
In reply to: [Invoices for WooCommerce] Sequential invoice number stays on 0000I found the issue myself ?? I fixed it by moving a line of code in the file includes/class-invoice.php
The parameter $order_number (used on line 59) is not known untill line 77.
Copy line 78 ($order_number = str_replace(“#”, “”, $order->get_order_number());)
Paste on line 57 (inside the if statement)Forum: Plugins
In reply to: [Rename wp-login.php] reset password link (?action=rp) shows blank pageI’m using a custom built theme. I guess something I wrote conflicts with the plugin. I’ll look into it soon. Thanks for the quick reply. I’ll post a comment if it’s needed when I find the problem. For now this is resolved.
I tried to explain it in this image: link to image
As you can see in the first screenshot the page that is highlighted is “Agenda” and the content is the list view of the event manager. This is correct.
In the second screenshot you see a single event shown. The highlighted page is “Vacatures”. This should be “Agenda” instead, because the single event is a child of “Agenda”. So the wrong page is highlighted.
The “Vacatures” page is setup as the “posts page” in “settings -> reading” in wordpress (this is the last screenshot). Also the template in which the single event is shown is the same as the one used by the “Vacature” page (blog page).
The site i’m working on is installed in Dutch. So I hope the images make everything clear for you.
My question is: I want the single event page to be shown as a child of “Agenda” and preferably without the sidebar.
Thanks in advance for the effort and your time ??
Robbin