Title: shaikh441's Replies | WordPress.org

---

# shaikh441

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

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

 Search replies:

## Forum Replies Created

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

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Colour code management dates](https://wordpress.org/support/topic/colour-code-management-dates/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/colour-code-management-dates/#post-16012404)
 * I have run it through some testing and found I needed to remove the “public” 
   parameter from the function for it to work correctly.
 * I see the script adds a new column which is fine, however if I wanted to use 
   the existing columns (e.g Date Due) and add the relevant colours with the dates
   already listed there (still calculating due within 30 days etc), is this something
   that needs to be done differently with different hooks?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Colour code management dates](https://wordpress.org/support/topic/colour-code-management-dates/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/colour-code-management-dates/#post-16009079)
 * Brilliant, thanks very much for your prompt support! One of the many reasons 
   I continue to utilise this plugin 🙂
 * I will run this through a test environment and give it a go
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Colour code management dates](https://wordpress.org/support/topic/colour-code-management-dates/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 8 months ago](https://wordpress.org/support/topic/colour-code-management-dates/#post-16008624)
 * Thanks for your quick response.
 * How would I utilise the “manage_key_date_posts_custom_column”? Is it done through
   a “Code Snippets” plugin?
 * Below is the code added to the email template to colour code the dates:
 *     ```
       $schedule_start_date = new DateTime($start_date);
       $interval = $schedule_start_date->diff($due_date);
       if ( $interval->format('%R%a') <= 30 && $interval->format('%R%a') > 15 )
       {
           // due in 30 days - green
           $details = '<span style="color:#090">' . __( 'Due', 'propertyhive' ) . ' ' . $due_date->format('jS M') . '</span>';
       }
       elseif ( $interval->format('%R%a') <= 15 && $interval->format('%R%a') >= 0 )
       {
           // due in 15 days - yellow
           $details = '<span style="color:#FFFF00">' . __( 'Due', 'propertyhive' ) . ' ' . $due_date->format('jS M') . '</span>';
       }
       elseif ( $due_date < $schedule_start_date )
       {
           // was due in the past - red
           $details = '<span style="color:#900">' . __( 'Originally due on', 'propertyhive' ) . ' ' . $due_date->format('jS M') . '</span>';
       }
       ```
   
 * Can something to the same effect be used to achieve the same results on the dashboard
   management page?
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Email not sent to other users](https://wordpress.org/support/topic/email-not-sent-to-other-users/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/email-not-sent-to-other-users/#post-15923333)
 * Right ok, I understand.
 * In that case, where do I add the staff email addresses who need to get these 
   emails? I initially thought adding them as a WordPress user would suffice.
 * So for example, 3 staff work for the company administering this property portal,
   and all of them need to be emailed the daily schedule for key dates etc so they
   can then make the necessary arrangements etc.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Email not sent to other users](https://wordpress.org/support/topic/email-not-sent-to-other-users/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/email-not-sent-to-other-users/#post-15920162)
 * Hi,
    Thanks for your reply.
 * So currently I am using the email add-on to send key dates to the landlords. 
   So I have some test properties in there with some dummy key dates, and want these
   to be emailed to the landlord.
 * Does this mean I need to associate users/landlords with the properties I have
   set-up rather than WordPress users, so the relevant key dates for those properties
   will go to those users? If so, is this done under the “Property Owner/Landlord”
   section when editing a property?
 * To answer your questions:
    1) Have you checked the users’ spam folders? – Yes
   2) Do you use any kind of SMTP plugin on your site? And does that have an email
   log where you can see what emails are sent? – No, but I do have an email log 
   plugin which didn’t record any emails sent to other WordPress users 3) Are you
   able to provide any screenshots or examples? – I will need to now wait until 
   tomorrow for the email to trigger again (I assume no way to manually trigger 
   emails for the Daily Email Schedule add-on?) and then I can send some screenshots.
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Change colours in email template](https://wordpress.org/support/topic/change-colours-in-email-template/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/change-colours-in-email-template/#post-15835351)
 * Awesome! Will give that a test run.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Property Hive] Elementor theme builder not loading after update](https://wordpress.org/support/topic/elementor-theme-builder-not-loading-after-update/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [4 years ago](https://wordpress.org/support/topic/elementor-theme-builder-not-loading-after-update/#post-15684635)
 * Hi Steve,
    Thanks for your reply. I have de-selected it and it is now working.
 * However, how would I configure the search results page if I select a different
   page to be used in “Search Results Page” settings?
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Geolocation for virtual products/services](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/#post-15467783)
 * Thanks for the reply! I will probably go with that, using either of the plugins
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Geolocation for virtual products/services](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/#post-15467671)
 * Also, is it the LocoTranslate plugin needed to achieve the above or the more 
   advanced plugin PoEdit for custom text?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Geolocation for virtual products/services](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [4 years, 2 months ago](https://wordpress.org/support/topic/geolocation-for-virtual-products-services/#post-15467649)
 * Thanks for getting back to me [@rainfallnixfig](https://wordpress.org/support/users/rainfallnixfig/)
 * Would an easier & quicker solution be to change the product type to a physical
   product, so shipping options become available, and then restrict shipping to 
   zip codes as that is already supported?
 * Also on the back of that, can the shipping text on the checkout page be changed
   with either custom code or using the above Loco Translate plugin to say something
   like “Call Out Fee” rather then “Shipping Fee”?
 * My thinking behind this is that the customer would enter details into checkout,
   WooCommerce detects address is not part of allowed shipping zone and instead 
   of bringing up the default message of “No shipping options available”, it would
   say something like “No Call Out options available”?
 * Thanks
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] php error](https://wordpress.org/support/topic/php-error-199/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/php-error-199/#post-7648837)
 * Documentation followed and now maps are displaying correctly!.
 * Now when I add the event shortcode to my homepage to display an event banner,
   it is being cut off slightly at the bottom even though there is enough space 
   in the column…Was not doing this before I did the map fix which seems weird…
 * Any ideas?
    Many thanks for all your help so far
 * Regards
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] php error](https://wordpress.org/support/topic/php-error-199/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/php-error-199/#post-7648816)
 * Ok. I have renamed the template file and the error has gone and events are now
   displaying.
    However, on the event page, I get “map unavailable” error, although
   I selected a location which automatically came down on the dropdown menu when
   entering an address. No map displays on the event manager dashboard next to the
   adddress either. Also, on the events listing page, the field which where you 
   can enter a location to find an event near it, greys out after a few seconds 
   displaying “oops something must have gone wrong”…..?
 * Any solutions please?
    Thanks for your help!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts] php conflict](https://wordpress.org/support/topic/php-conflict/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/php-conflict/#post-7666901)
 * Thanks for your response.
    I checked the logs and found that the page was trying
   to pull the wordpress info (wp_posts etc) from the new database I had created
   for my php code and obviously not finding the tables needed. I have now moved
   my table into the original wordpress db with the relevant name and the issue 
   is now fixed.
 * Thanks again
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] php error](https://wordpress.org/support/topic/php-error-199/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/php-error-199/#post-7648794)
 * Hi,
    Sorry for the delayed reply. I have only renamed a purchased theme, haven’t
   really customized it. Did you mean completely remove the template from the plugin
   theme folder?..Wouldn’t that break it?
 * Please let me know and I will remove it if so.
 * Thanks for the help
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Woocommerce variation image speed](https://wordpress.org/support/topic/woocommerce-variation-image-speed/)
 *  Thread Starter [shaikh441](https://wordpress.org/support/users/shaikh441/)
 * (@shaikh441)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-variation-image-speed/#post-7324883)
 * This worked perfectly! Thanks!
 * Also, I have added some more variations but with different prices. As woocommerce
   now displays variable prices as a range (min-max), I need to only display the
   minimum price.(there is a lot of topics on this so I can figure this out)
    But
   also when the selection is chosen by the customer, I need the price under the
   title to change rather than the price which is by the Add To Cart button. The
   price by the cart button needs to be removed completely.
 * Sorry to be a pain, would appreciate any help on this also.
    Thanks again

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

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