Title: Is the Developer Documentation Still Current?
Last modified: August 18, 2025

---

# Is the Developer Documentation Still Current?

 *  [neikoloves](https://wordpress.org/support/users/neikoloves/)
 * (@neikoloves)
 * [8 months ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/)
 * I’m currently working on integrating a retail price starting point, but I’m having
   some difficulty navigating your Developer Documentation and wondering if it’s
   still valid, I have tried all MRSP / RRP plugins and nothing seems to override
   your plugin or works with it. Your plugin seem to always look the standard sales
   price or a toggle to “**If enabled, the plugin will always use the regular price
   to calculate percentage discounts. By default, the plugin uses the sale price
   if it exists**“. 
   _I’m thinking that is where I could override this? Like always
   use retail price to calculate percentage discounts_Specifically, I can’t seem
   to find the right hook yet, to track all the discounts effectively from the retail
   price. My goal is to add a new price field and have the plugin reference that
   for total savings instead of using the standard price as the starting point.
 * Any guidance you could provide would be greatly appreciated!
 * Thank you!
 * REF: [https://tiered-pricing.com/documentation/developer-documentation/](https://tiered-pricing.com/documentation/developer-documentation/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  Plugin Author [Mykola Lukin](https://wordpress.org/support/users/bycrik/)
 * (@bycrik)
 * [8 months ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18604896)
 * Hello [@neikoloves](https://wordpress.org/support/users/neikoloves/),
 * The documentation is valid, but it covers only basic concepts and does not include
   all available hooks.
 * Unfortunately, the plugin does not have a hook to substitute price is used for
   calculating discounts. Here is the code that is responsible for that part (tier-
   pricing-table/PriceManager.php line 145):
 * ![](https://i0.wp.com/i.ibb.co/PG7hK31w/image.png?ssl=1)
 * As you can see, it uses ->get_price() or ->get_regular_price() from a WooCommerce
   $product object. Technically, you can utilize the “woocommerce_product_get_price”
   hook to adjust it at the WooCommerce level, but that will change it everywhere
   on the site.
 * I hope this helps.
 *  Thread Starter [neikoloves](https://wordpress.org/support/users/neikoloves/)
 * (@neikoloves)
 * [8 months ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18605239)
 * Hello [@bycrik](https://wordpress.org/support/users/bycrik/),
   Is that the only
   place to control this globally, as I dig into your code I find the call for **
   get_regular_price **all over and still unsure how to make this work globally 
   in a clean and consistent manner to do the following.
 * Maybe there is a better way, we just want to add an extra price field and have
   it follow that price field used in all the views and then have discounts broken
   down with the correct displays. We are also using our own shortcode version to
   create a message for the end results output on each view, that was fairly easy
   to control.
 * ![](https://i0.wp.com/gcdnb.pbrd.co/images/Zi5AczBkpTFF.png?ssl=1)
 * We also found no other plugin that supports retails price to be compatible with
   your plugin at all, they just conflict with each other and no simple way yet 
   to make them work as they both seems to be competing for control, not to mention
   not programmed the same way.
   It will be a mess to keep them working together 
   when things change all the time, so we are forced to do it by hand to keep it
   clean or deal with so many nested conflicts of bad programming styles, so many
   plugins are not worth even using. **Yours is, it’s fairly well throughout, clean
   and simple, not a bloated ad laden, tracking mess, I just need to tweak it to
   make it work for my needs. 🙂Thank you and best regards.
 *  Thread Starter [neikoloves](https://wordpress.org/support/users/neikoloves/)
 * (@neikoloves)
 * [7 months, 4 weeks ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18610763)
 * Hello [@bycrik](https://wordpress.org/support/users/bycrik/),
 * I’ve successfully gained control over many elements of the standard pricing overrides.
   However, I had to create a JavaScript for the tiered pricing, which isn’t ideal,
   as it appears that the standard price is hard-coded throughout the system without
   a centralized global control.
 * Currently, I’m facing a significant challenge with the cart pricing controls.
   While I can manage some aspects, there are others that seem to be prioritized
   too highly for me to override, regardless of my attempts. Is there a global control
   that governs the standard pricing?
 * As I explore the software further, it’s evident that it must have taken considerable
   time to develop, given the multitude of switches and controls involved. I feel
   like I’m navigating a complex maze of logic that only you are familiar with, 
   and it will take me a while to fully understand it.
 * Could you please direct me to the master control or indicate where we need to
   make changes to adjust the standard pricing globally? I want to ensure we’re 
   not encountering inconsistent data across different views.
 * I truly appreciate your assistance and the hard work you’ve already put into 
   this.
 * Thank you!
 *  Plugin Author [Mykola Lukin](https://wordpress.org/support/users/bycrik/)
 * (@bycrik)
 * [7 months, 3 weeks ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18614165)
 * Hello [@neikoloves](https://wordpress.org/support/users/neikoloves/)
 * Unfortunately, you’re correct, and there is no single place where you can substitute
   product price as the plugin relies on the WooCommerce $product object and its-
   >get_price() option, which has its own hook.
 * When it comes to the cart, tiered pricing plugin provides the “tiered_pricing_table/
   cart/product_cart_price” hook, which you can use to control end price calculated
   for cart items (it is used for different integrations, like product addons or
   multicurrency)
 * I hope this helps.
 *  Thread Starter [neikoloves](https://wordpress.org/support/users/neikoloves/)
 * (@neikoloves)
 * [6 months, 3 weeks ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18658275)
 * [@bycrik](https://wordpress.org/support/users/bycrik/)
 * Thank you for your direction and help, after months of effort, we now have full
   override control of the plugin. A single injected file now overrides many of 
   the files and sits above the plugin’s original code.
 * My primary concern is update management now: we are close to forking this plugin
   to introduce additional new rules and related features.
 * I need to decide how to proceed from here, since the direction of your future
   changes could really intersect with or conflict with our changes.
 * Do you have any thoughts or an open road map of future plans?
 *  Plugin Author [Mykola Lukin](https://wordpress.org/support/users/bycrik/)
 * (@bycrik)
 * [6 months, 2 weeks ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18669340)
 * Hello [@neikoloves](https://wordpress.org/support/users/neikoloves/),
 * The most effective way to customize the plugin’s functionality is by using its
   available hooks. This approach ensures your changes remain update-safe.
 * If your solution requires additional hooks to work as a third-party add-on, we
   can consider adding them in future releases.
 * However, if your customization involves extensive modifications beyond what hooks
   can handle, you’ll need to maintain your own version of the plugin.

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Is the Developer Documentation Still Current?’ is closed to new replies.

 * ![](https://ps.w.org/tier-pricing-table/assets/icon-256x256.gif?rev=3025448)
 * [Tiered Pricing Table for WooCommerce](https://wordpress.org/plugins/tier-pricing-table/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/tier-pricing-table/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/tier-pricing-table/)
 * [Active Topics](https://wordpress.org/support/plugin/tier-pricing-table/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/tier-pricing-table/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/tier-pricing-table/reviews/)

 * 6 replies
 * 2 participants
 * Last reply from: [Mykola Lukin](https://wordpress.org/support/users/bycrik/)
 * Last activity: [6 months, 2 weeks ago](https://wordpress.org/support/topic/is-the-developer-documentation-still-current/#post-18669340)
 * Status: not resolved