Forum Replies Created

Viewing 15 replies - 1 through 15 (of 24 total)
  • Thread Starter WebHippo

    (@jandard)

    Thank you.

    I posted a question on Slack.

    But this support community could know how to retrieve the order’s information.

    This should be my last issue to be solved as for the custom code, I know what to do. I did it already on receipt of the PayPal IPN for a PP donation button.

    All issues I have are due to WC rerouting the IPN message to their code instead allowing the IPN to reach my listener URL.

    Cheers

    Thread Starter WebHippo

    (@jandard)

    Hello Xue

    Thanks a lot, it help.

    The post is very clear but the modifications explained are only text oriented.
    There is a link in the post to “hooks” that explains how to trig my code inside functions.php.

    Great.

    My last question ?? is : how to retrieve the data (name of purchaser, his/her full address, amount spent …) as my order oriented code will not linked to the current order (right ?). So I need to get a pointer to the order and methods to retrieve what I need.

    Do you know where to read an example of this ? Code sample helps me to understand as I’m not professional.

    Thanks a lot

    Thread Starter WebHippo

    (@jandard)

    Hello Rick

    Thanks for your answer.
    I had to find quickly a solution, so I stopped using the GiveWP plugin.
    I’m using back old style “donate with Paypal” buttons.

    Cheers

    Thread Starter WebHippo

    (@jandard)

    hello

    Sorry, I apologize not coming back to you.

    The configuration of the browser on my iPad, did not upload all data. After days I realize that I had to click on 2 links to upload the reste of the message.

    The bug was between the chair and the keyboard !
    Thanks for answering my stupid questions.

    Cheers

    Thread Starter WebHippo

    (@jandard)

    Glad to help.
    Thumb up for your support.

    Regards

    Thread Starter WebHippo

    (@jandard)

    Hello Rose

    I really appreciate all the efforts you are involving to answer my request.
    I don’t want to concentrate all your energy on this but, there is a “trick”.
    I made progress in fincing the issue.

    1) your video shows a test with a tablet, so the menu is poping in the middle of the screen, and you click in the middle of the item bar. Make a try yourself, click on the border where USD is written. It will not work.

    2) if found the reason (see the attached link at imgur https://imgur.com/U5z3dj7). The item bar is divided into 3 zones (1,2 and 3). Only zone 2 is addressed by your href code (say “pound sterling”), so the user has to click on zone #2 to change the currency.

    When I discovered the issur, I was clicking on the 3 letters in zone 1 (GBP) and that was the reason of the issue.

    I would suggest that you add a class with a specific color nuance, to clearly shows the active zone2. With some slow PC, we can see a delay in color changing between Zone1+3 and zone2.

    I agree this is very tricky, but I’m facing users that are complaining when the user experience is not easy (straithforward).

    Feel free to make a try on my page and you will see the trick : https://www.savethehippos.info/product/horatio/?wmc-currency=USD

    Again, great support and thank you.
    Cheers

    Thread Starter WebHippo

    (@jandard)

    Hi Rose

    I build a new site from scratch (wordpress 5.7.1). with Woocommerce (5.2.2) and your multi currency plugin.
    I create one product, 2 currencies ($ and £).
    The collapse menu appears on the right side but is doing nothing.
    The country flags shosw up over the price and is functionnal. The price and currency are changing each time I change flags.

    What I see, is the item selected on the collapsed menu does work.

    ——– some time later —

    I’ve found the “bug”. Once could say the bug is between the chair and the keyboard.

    But, maybe not.

    I found that the pointer (mouse) SHOULD BE EXACTLY in the middle of the item. During my tests, I should have the habit to center my clicking, then I opted for the border and get lost.

    here is the screenshot : https://imgur.com/Qe7qeYF

    could you please increase the zone to the all lign ?

    tanks a lot for your help.

    Thread Starter WebHippo

    (@jandard)

    Hello Mattheus

    I have solve to make First Name & Last Name and Email address as optional using snipets derived from the github repository.

    function give_dont_require_fields( $required_fields, $form_id ) {
    if(isset($required_fields[‘give_email’])) {
    unset($required_fields[‘give_email’]);
    }
    if(isset($required_fields[‘give_first’])) {
    unset($required_fields[‘give_first’]);
    }
    return $required_fields;
    }

    add_filter( ‘give_donation_form_required_fields’, ‘give_dont_require_fields’, 10, 2 );`

    I need to change the text of associated tooltips. I found the content of tooltips are located in Give/includes/forms/template.php

    <?php echo Give()->tooltips->render_help( __( ‘First Name is optional, only used to personalize your donation receipt mail.’, ‘give’ ) ); ?>

    It works fine.

    Last issue is my modified ‘template.php’ because it is replaced at each plugin update.

    Like for other plugins (woo), I have stored the template.php into my child-theme (child-theme/give/includes/forms/template.php

    Unfortunately, Give plugin continues to use its original template.php.

    Any idea to make my changes reusable after each update ?
    Is “render_help( __( string ” will use the translator ? in that case, I could change the translation providing that english to english uses the service !

    Thanks for any help, suggestion.

    Cheers

    Thread Starter WebHippo

    (@jandard)

    Donny

    Your CSS proposal works perfectly.
    Thanks a lot.
    regards

    Thread Starter WebHippo

    (@jandard)

    Thank you.
    I’m using Antispam Bee plugin.
    Looking to the settings, I don’t find any parameter to set avoiding to bar an IP.
    I will ask the plugin support and forum.

    Cheers

    Thread Starter WebHippo

    (@jandard)

    Hello Riaan

    Thanks for your answer. I already was thinking to that solution, BUT , as non professional (i’m a volunteer webmaster) I haven’t the right knowledge to understand the code to write.

    My knwoledge will permit to store data of the order into a json file and to use these data to build my own treatment, outside wordpress triggered by a cron searching a dedicted reportory.

    I looked at the file customer-completed-email.php but my first concern was that I didn’t understand how works do_action( 'woocommerce_email_order_details', $order, $sent_to_admin, $plain_text, $email ); and what I can do with it.

    This certainly the right place to grab the information sent into the mail, but looking at add_action, I still don’t understand what to do.

    What I need is just to store the information of the order (number, name, email, product…) in a json file and I will do the rest.

    Thanks

    Regards

    Thread Starter WebHippo

    (@jandard)

    James

    I have restored my dev platform and updated WP and the theme.
    The issue was coming from the theme itself.
    ET has some stuffs deprecated in WP4.4 if I had correctly understood.

    I will check all my modified php and will upgrade my site.
    Thanks.

    Thread Starter WebHippo

    (@jandard)

    James

    I have issues with my local dev server, so I need to reinsatll it.
    I will not be able to change the online web site as it needs to saty operational.

    The single-page blog is formatted by the ET theme. So, it should be something wrong with the theme.

    I will see with ET and will come back on this forum when i will find the solution.

    Thanks for helping.

    Cheers.

    Thread Starter WebHippo

    (@jandard)

    here is the link : https://www.savethehippos.info/category/blog/karen-blog/

    I’m using Elegantthemes’s Deep Focus that was working correctly under WP4.4

    thanks.

    Thread Starter WebHippo

    (@jandard)

    Thanks James

    Sorry, it was the syntax of this support post that was wrong !!

    I have inserted the tag using the rignt button and the tag inserted into my post is : <!–more–>

    The important thing is : before the upgrade, the split of the text was correct, without the tag. In fact, it was cut with the default size.

    After the upgrade, the text is far too big.

    I suspect that 4.4.1 needs the tag, so I inserted the tag, no effect.

    All previous posts exercpts are now very long.

    that’s why I modestly suggest the idea of a bug ??

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