• Resolved aramidth

    (@aramidth)


    The affiliate plugin installed has feature to track sales of affiliated when checkout using woocommerce, where each affiliate gets their unqiue link with UTM like sitename.com/?abc=1 where this UTM would track the traffic and when customer clicks checkout pays and completes order it should auto credit affiliate balance with commission but since at checkout page that is sitename.com/checkout it simply overwrites UTM and at end page after payment it becomes like?https://sitename.com/checkout/order-received/427999/?key=wc_order_WPTn5WSPKv9Kg?which then again double overwrites any UTM if got to that point. Which i think might be main reason why affiliates sales are not getting auto credited with commission??

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    Thank you for explaining the issue in detail. Please note that we only provide support if woocommerce core plugins settings or functionality are not working properly. Since the plugin you are using generating unique link. I would suggest you contact the pliugin provider and Verify if the affiliate plugin you’re using has settings to preserve query parameters throughout the checkout process. Some plugins have built-in methods to handle such scenarios.

    Please create a support ticket with the plugin provider, as they will be able to help you resolve this issue.
    Thank you

    Thread Starter aramidth

    (@aramidth)

    How remove author info and date class using functions.php?

    For example if you want to Hide related products @ single product page then this is the code;

    add_action( ‘woocommerce_after_single_product_summary’, ‘bbloomer_hide_related_checkbox_products’, 1 );

    function bbloomer_hide_related_checkbox_products() {

    global $product;

    if ( ! empty ( get_post_meta( $product->get_id(), ‘hide_related’, true ) ) ) {

    remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 20 );

    }

    so like above what is code for remove author info and date? The classes called as blog-meta–date and blog-meta due to child theme being active

    Plugin Support ckadenge (woo-hc)

    (@ckadenge)

    Hello ?? @aramidth,

    Helping out with custom coding of this nature is outside the scope of support we can help out with here, although I would recommend the following:

    1. Running the exact question you’re asking, along with the code provided, through an AI platform like ChatGPT for recommendations/changes to your code;
    2. Checking whether there are existing plugins in the WordPress plugin repository that might be doing that already.
    3. Joining our WooCommerce Slack community (it does have a developer channel where you can ask coding questions): https://woo.com/community-slack/

    Hope it helps!

    Thread Starter aramidth

    (@aramidth)

    The solution to this problem is if you are using a child theme then go to theme editor under appearance tab or go to the place you have all those theme related php files using file manager via hosting provider. And then once you are there inside related theme folder check for php files under catergory or name called template-parts.php and it is like a drop down under that once click you should see some php files like post meta.php inside that u should cut off code which calls author info and date.

    Besides that I have following problem that need be solved;

    How to run a JS SDK API payment gateway on WordPress Woocommerce?

    The payment gateway provider has a wordpress plugin but it does not have all the gateway functions built in and also they have a seperate portal made available to merchants to get following data;

    Merchant ID : API Key : Merchant Secret Key : Confirmation Endpoint Endpoint

    Private key

    Download Server Public key

    Download Public key

    Download

    Their most uptodate plugin can be downloaded here;?npmjs.com/package/directpay-ipg-js

    IPG User Wise Card Management API Documentation?justpaste.it/7w34p

    IPG Integration Payment Link V1.0.1 Integration document?justpaste.it/gj7ny

    To access above links pls copy it and remove the space between the dot

    I need support to help setup all this on wordpress explain steps need to setup as If I know nothing about JS, HTML, CSS or APIs

    Installed plugin provided by them and researched all options inside their merchant portal but those functions provided by sdk seem to have no GUI to be easily accessed and edited

    Plugin Support ckadenge (woo-hc)

    (@ckadenge)

    Hi @aramidt,

    The solution to this problem is if you are using a child theme then go to theme editor under appearance tab or go to the place you have all those theme related php files using file manager via hosting provider.?

    Glad to hear you were able to solve the issue from your end, and thank you for sharing the solution with the community.

    How to run a JS SDK API payment gateway on WordPress Woocommerce?

    For reference, this particular forum is meant for general support with the core functionality of WooCommerce itself. For assistance with running an API payment gateway, I recommend reaching out to their support team for further assistance with this.

    I hope this helps.

    Thread Starter aramidth

    (@aramidth)

    The above API needs to integrate with Woocommerce checkout so need you all to tell me how to set it up from beggining onwards

    Plugin Support shahzeen(woo-hc)

    (@shahzeenfarooq)

    Hi there!

    I understand your concern. As my colleague mentioned, we only provide general support for the core functionality of WooCommerce. If there are issues with the default features of WooCommerce not working properly, we can assist you in resolving those

    However we do not provider support for customization. For a step-by-step guide, I recommend reaching out to the payment gateway provider’s support or a developer who can assist with the integration process.

    If you need more in-depth support from us or want to consider professional assistance for customization, I can recommend?WooExperts?and?Codeable.io?as options for getting professional help. Alternatively, you can also ask your development questions in the??WooCommerce Community Slack?as custom code falls outside our usual?scope of support.

    Thank you for your cooperation and understanding.

Viewing 7 replies - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.