doeri
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Store Locator] The title of the Location stoped accepting html attributesThank you for the snippet!
One quick question, as I remember in the past there were a grouping marker clusters on the map, something like this https://snipboard.io/0pQfmY.jpg, am I wrong or the option has been removed in the current version?
- This reply was modified 1 week, 4 days ago by doeri.
Forum: Plugins
In reply to: [WP Store Locator] The title of the Location stoped accepting html attributesI used to use <strong></strong> HTML element in the title field in order to diffrentiate the title from the link, html example here:
<strong><a target="_blank" href="#"> <strong> Pharmacy Store </strong> – www.pharmacystore.gr</a></strong>Screenshot here: https://snipboard.io/9cJB4i.jpg
- This reply was modified 3 weeks, 2 days ago by doeri.
Solved.
At least is there a possibility to add an ID or Class _billing_vat to the VAT field of the order admin page?
Then I could try this function:
add_action( 'manage_shop_order_posts_custom_column', 'mb_icon_to_order_notes_column', 15, 1 );
function mb_icon_to_order_notes_column( $column ) {
global $post, $the_order;
if ( $column == 'order_notes' || $column == 'order_number' ) {
$order_id = method_exists( $the_order, 'get_id' ) ? $the_order->get_id() : $the_order->id;
$timologio = get_post_meta( $order_id, '_billing_vat', true );
if ( $timologio == '1' ) {
$style = $column == 'order_notes' ? 'style="margin-top:5px;" ' : 'style="margin-left:8px;padding:5px;"';
echo '<span class="dashicons dashicons-format-aside" '.$style.'title="'. __('INVOICE', TEXT_DOMAIN).'"></span>';
}
}
}In the Settings > Tax > VAT rates, I checked the “Select whether this tax rate is also applied to the shipment or not.”
I found the solution. Thank you anyway!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Tag TriggerI understand, Thank you!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Tag TriggerFor example obtaining consent after tracking those users? Is that possible?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Tag TriggerHello,
Regarding the large decreased number of users as described above, is there a way using Complianz to count all the incoming traffic with the Google consent?
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Tag TriggerI see that the Google consent is working correctly. The number of user though dropped significantly from 100 to 10 per 30 minutes, could these metrics be correct?
- This reply was modified 2 years, 3 months ago by doeri.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Tag TriggerI am using a pro version of the Complianz for 3 days. Is the plugin ready for Google Consent Mode V2? Do I need to make any updates regarding the Consent V2? I am using a “GTM4WP – A Google Tag Manager (GTM) plugin for WordPress” with the Complianz plugin.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz Prechecked CheckboxesI understand, Thank you for the explanation.
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Complianz GTM trigger file errorThank you!
- This reply was modified 2 years, 3 months ago by doeri.
Hello and thank you for the greate plugin! One question, is there a way to have brand logos thumbnail displayed in the A-Z Listing? Thank you!
Forum: Fixing WordPress
In reply to: Contact Form by BestWebSoft – I do not receive emailsThank you gnoric,
The form works now, it needed the SMTP setup, I used th WP-Mail-SMTP plugin for this issue.
Thank you again,
Dorothy