Viewing 12 replies - 1 through 12 (of 12 total)
  • Plugin Support Saurabh – WPMU DEV Support

    (@wpmudev-support7)

    Hey Loralee,

    Is the sale price option still enabled in the Course setup page?

    Make sure it is still checked off on the actual product page too for that Course. It’s possible that when you re-enabled it and saved settings it created a new course product for it depending which settings you change ??

    Look forward to hearing back on this and thanks for letting us know!

    Cheers,
    Tyler

    Thread Starter Loralee_H

    (@loralee_h)

    The check mark doesn’t stay checked after saving. It’s similar to the other issues I’m having with content (I’m sure you’ll see the video file shortly). Sorry for sending so many messages. I just really want to resolve these techy things so I can focus on helping the students get through the remaining 13 days of the program.

    Thanks again for your help.

    Loralee

    Thread Starter Loralee_H

    (@loralee_h)

    Here’s a quick video of what’s I’m experiencing with the Sale Price function

    https://screencast.com/t/Mdp5eWWVD

    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi Loralee,

    Thank you for your detailed reply.

    I could reproduce this issue on my test site using latest version of CoursePress plugin.

    The course option “Enabled Sale Price” is not getting saved and the Sale Price is not getting displayed in the front end.

    I have notified the plugin developer to fix this issue.

    In the meanwhile to fix this issue try editing the following CoursePress plugin files.

    CoursePress plugin file:

    coursepress/includes/admin-pages/courses-details-overview.php

    Edit this file on line number 1110

    Before Editing:

    <div class="course-sale-price">
    <p><input type="checkbox" id="mp_is_sale" name="mp_is_sale" value="<?php
    	if ( isset( $mp_product_details ) && !empty( $mp_product_details[ "mp_is_sale" ] ) ) {
    		checked( $mp_product_details[ "mp_is_sale" ][ 0 ], '1' );
    	}
    	?>" <?php echo $input_state; ?>  />
    	<?php _e( 'Enabled Sale Price', 'cp' ); ?></p>


    After Editing:

    <div class="course-sale-price">
    <p><input type="checkbox" id="mp_is_sale" name="mp_is_sale" <?php
    	if ( isset( $mp_product_details ) && !empty( $mp_product_details[ "mp_is_sale" ] ) ) {
    		checked( $mp_product_details[ "mp_is_sale" ][ 0 ], '1' );
    	}
    	?> value="<?php echo $mp_product_details[ "mp_is_sale" ][ 0 ]; ?>"  />
    	<?php _e( 'Enabled Sale Price', 'cp' ); ?></p>

    CoursePress plugin file:
    coursepress/includes/wordpress-ecommerce/marketpress-includes/template-functions.php

    Edit this file on line number 2220

    Before Editing:

    if ($meta["mp_is_sale"]) {

    After Editing:

    if ( $meta["mp_sale_price"][0]) {

    Thanks,
    WPMU DEV

    Hi Loralee,

    could you please try does it work for you with the most recent version we just uploaded.

    Thanks,
    Marko

    Sale doesn’t stay picked for me. CoursePress 1.2.2.3

    Plugin Support Saurabh – WPMU DEV Support

    (@wpmudev-support7)

    Hey freebird,

    I’ve just tested this out with 1.2.2.3 and is it not staying saved on the actual product itself?

    When the box is checked then you save it, it should reflect on the actual product in the MP product listing too. Is it staying saved there? ??

    Look forward to hearing back!

    Cheers,
    Tyler

    Click sale price enabled in Step 6 of Coursepress (Enrolment) and then Update and Done. Screen moves to next screen.
    When you re-visit step 6 the sale price enabled is unticked.
    Same as reported a month further up thread.
    I don’t see where this is reflected or not in MP?

    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi @thefreebird,

    I could confirm the issue in the latest version of CoursePress plugin and notified again the developer to fix it.

    In the meanwhile you can use the custom solution posted in the following reply to fix this issue.

    https://www.ads-software.com/support/topic/sale-price-isnt-working?replies=9#post-6140558

    The line number posted in the above solution is changed in the latest CoursePress plugin version. It’s now 1140 and not 1110.

    Also now you don’t need to make changes in the plugin file template-functions.php mentioned in the above reply as this file is from MarketPress plugin which is removed from the CoursePress plugin in the recent versions.

    Regards,
    WPMU DEV

    Plugin Support Predrag – WPMU DEV Support

    (@wpmudev-support1)

    Hi there,

    Just want to notify you here that we have fixed this issue in the plugin and the updated plugin version containing this fix will be released shortly.

    Cheers,
    WPMU DEV

    Thanks

    Plugin Support Saurabh – WPMU DEV Support

    (@wpmudev-support7)

    Glad this got all sorted freebird ??

    Hope you’re enjoying your weekend!

    Cheers,
    Tyler

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Sale price isn't working’ is closed to new replies.