Forum Replies Created

Viewing 15 replies - 1 through 15 (of 20 total)
  • Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    Awesome! Will give that a test run.

    Thanks!

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    Thanks for the reply! I will probably go with that, using either of the plugins

    Thread Starter shaikh441

    (@shaikh441)

    Also, is it the LocoTranslate plugin needed to achieve the above or the more advanced plugin PoEdit for custom text?

    Thread Starter shaikh441

    (@shaikh441)

    Thanks for getting back to me @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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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!

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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

    Thread Starter shaikh441

    (@shaikh441)

    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)