uebersax
Forum Replies Created
-
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Error Backup UploadsHi,
It worked. The plugin was able to back up the “upload” folder.
What is the reason behind this? It did work before with 400MB.Thank you.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Error Backup UploadsHi,
I am only receiving an email when it was a successful backup.
Otherwise, it just keeps trying to finish it.I realized that the problem is only the folder uploads.
There is no error code.
I did several things such as:
Updated to the newest version.
Changed the folder on the FTP Server.
Checked the FTP connection.Everything seems ok.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Error Backup UploadsHi,
thanks for the answer.
I attached the file here
DropboxI only changed the domain and the name of our foundation for security reasons.
Regards
Forum: Networking WordPress
In reply to: How to hide subfolder in URL on multisiteanyone out there who knows the answer?
Hi Ewout,
thank you for your help. In case I need assistence I`ll contact you on support.
Where can I mention you for your help?
Best, Samuel
I found the mistake. Everything works so far. Thank you!
I am trying to hide it now if there is no content in the custom field.
It would also be handy to have the custom field only by certain products.—–
add_action( 'wpo_wcpdf_before_order_data', 'wpo_wcpdf_custom_text', 10, 2 ); function wpo_wcpdf_custom_text ($template_type, $order) { global $wpo_wcpdf; if ($template_type == 'invoice' ) $product = get_custom_field( $product->id, '_wcpdf_custom_text', true ); { echo '<h4>' . __( 'Hinweis:' ) . ' (' . $custom_field . ')</h4>'; ?> <tr class="hinweis"> <th>Hinweis:</th> <td><?php $wpo_wcpdf->custom_field('Hinweis'); ?></td> </tr> <?php } }——
awesome it`s already displaying the label: Hinweis
Unfortunately I am not able to see the content (text) I filled in the text field.Do I need any command like: get_custom_field?
Hi Ewout,
thanks for the links. I`ve tried it this way before. But I am stuck somewhere.
I used this code snippet:
add_action( ‘wpo_wcpdf_after_order_data’, ‘wpo_wcpdf_custom_text’, 10, 2 );
function wpo_wcpdf_custom_text ($template_type, $order) {
global $wpo_wcpdf;
if ($template_type == ‘invoice’) {
?>
<tr class=Hinweis:</th>
<td><?php $wpo_wcpdf->hinweis(‘hinweis’); ?></td>
</tr>
<?php
}
}The custom fileds name is: hinweis
And it should only appear on the invoice.thank you.
Samuel