Title: doeri's Replies | WordPress.org

---

# doeri

  [  ](https://wordpress.org/support/users/doeri/)

 *   [Profile](https://wordpress.org/support/users/doeri/)
 *   [Topics Started](https://wordpress.org/support/users/doeri/topics/)
 *   [Replies Created](https://wordpress.org/support/users/doeri/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/doeri/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/doeri/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/doeri/engagements/)
 *   [Favorites](https://wordpress.org/support/users/doeri/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/users/doeri/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/doeri/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] The title of the Location stoped accepting html attributes](https://wordpress.org/support/topic/the-title-of-the-location-stoped-accepting-html-attributes/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [3 weeks, 2 days ago](https://wordpress.org/support/topic/the-title-of-the-location-stoped-accepting-html-attributes/#post-18919122)
 * Thank 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](https://snipboard.io/0pQfmY.jpg),
   am I wrong or the option has been removed in the current version?
    -  This reply was modified 3 weeks, 2 days ago by [doeri](https://wordpress.org/support/users/doeri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Store Locator] The title of the Location stoped accepting html attributes](https://wordpress.org/support/topic/the-title-of-the-location-stoped-accepting-html-attributes/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [1 month ago](https://wordpress.org/support/topic/the-title-of-the-location-stoped-accepting-html-attributes/#post-18907702)
 * I used to use **<strong></strong>** HTML element in the title field in order 
   to diffrentiate the title from the link, html example here:
 *     ```wp-block-code
       <strong><a target="_blank" href="#"> <strong> Pharmacy Store </strong> – www.pharmacystore.gr</a></strong> 
       ```
   
 * Screenshot here: [https://snipboard.io/9cJB4i.jpg](https://snipboard.io/9cJB4i.jpg)
    -  This reply was modified 1 month ago by [doeri](https://wordpress.org/support/users/doeri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GTM4WP - A Google Tag Manager (GTM) plugin for WordPress] Issue with Preview debug in Google Tag Manager](https://wordpress.org/support/topic/issue-with-preview-debug-in-google-tag-manager/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 months, 1 week ago](https://wordpress.org/support/topic/issue-with-preview-debug-in-google-tag-manager/#post-18872906)
 * Solved.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Checkout Field Editor (Checkout Manager) for WooCommerce] Invoice Icon in orders with VAT number in woocommerce order admin page](https://wordpress.org/support/topic/invoice-icon-in-orders-with-vat-number-in-woocommerce-order-admin-page/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/invoice-icon-in-orders-with-vat-number-in-woocommerce-order-admin-page/#post-18019776)
 * 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:
 *     ```wp-block-code
       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>';        }    }}
       ```
   
    -  This reply was modified 1 year, 9 months ago by [doeri](https://wordpress.org/support/users/doeri/).
    -  This reply was modified 1 year, 9 months ago by [doeri](https://wordpress.org/support/users/doeri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Weight Based Shipping for WooCommerce] Tax not calculated in WooCommerce Weight Based Shipping Plugin](https://wordpress.org/support/topic/tax-not-calculated-in-woocommerce-weight-based-shipping-plugin/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [1 year, 9 months ago](https://wordpress.org/support/topic/tax-not-calculated-in-woocommerce-weight-based-shipping-plugin/#post-18019739)
 * In the Settings > Tax > VAT rates, I checked the “Select whether this tax rate
   is also applied to the shipment or not.”
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Weight Based Shipping for WooCommerce] Tax not calculated in WooCommerce Weight Based Shipping Plugin](https://wordpress.org/support/topic/tax-not-calculated-in-woocommerce-weight-based-shipping-plugin/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [1 year, 10 months ago](https://wordpress.org/support/topic/tax-not-calculated-in-woocommerce-weight-based-shipping-plugin/#post-17961454)
 * I found the solution. Thank you anyway!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Tag Trigger](https://wordpress.org/support/topic/tag-trigger/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/tag-trigger/#post-17445436)
 * I understand, Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Tag Trigger](https://wordpress.org/support/topic/tag-trigger/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/tag-trigger/#post-17445324)
 * For example obtaining consent **after** tracking those users? Is that possible?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Tag Trigger](https://wordpress.org/support/topic/tag-trigger/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/tag-trigger/#post-17445208)
 * Hello,
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Tag Trigger](https://wordpress.org/support/topic/tag-trigger/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/tag-trigger/#post-17439845)
 * I 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](https://wordpress.org/support/users/doeri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Tag Trigger](https://wordpress.org/support/topic/tag-trigger/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/tag-trigger/#post-17431180)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Complianz Prechecked Checkboxes](https://wordpress.org/support/topic/complianz-prechecked-checkboxes/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/complianz-prechecked-checkboxes/#post-17428124)
 * I understand, Thank you for the explanation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Complianz - GDPR/CCPA Cookie Consent] Complianz GTM trigger file error](https://wordpress.org/support/topic/complianz-gtm-trigger-files-error/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/complianz-gtm-trigger-files-error/#post-17427899)
 * Thank you!
    -  This reply was modified 2 years, 4 months ago by [doeri](https://wordpress.org/support/users/doeri/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Perfect Brands for WooCommerce] not show brand name or image after shop loop title](https://wordpress.org/support/topic/not-show-brand-name-or-image-after-shop-loop-title/)
 *  [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/not-show-brand-name-or-image-after-shop-loop-title/#post-16644085)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Contact Form by BestWebSoft – I do not receive emails](https://wordpress.org/support/topic/contact-form-by-bestwebsoft-i-do-not-receive-emails/)
 *  Thread Starter [doeri](https://wordpress.org/support/users/doeri/)
 * (@doeri)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/contact-form-by-bestwebsoft-i-do-not-receive-emails/#post-8737610)
 * Thank 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

Viewing 15 replies - 1 through 15 (of 29 total)

1 [2](https://wordpress.org/support/users/doeri/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/doeri/replies/page/2/?output_format=md)