Plugin Directory

Changeset 3115266


Ignore:
Timestamp:
07/10/2024 05:33:41 AM (20 months ago)
Author:
cedcommerce
Message:

v-1.1,13

Location:
one-click-order-reorder/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • one-click-order-reorder/trunk/includes/class-basket-order.php

    r3110914 r3115266  
    473473public function ced_ocor_save_general_setting() {
    474474
     475    $settings = get_option( 'ced_ocor_general_settings', false );
    475476    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    476477        return;
     
    750751public function ced_ocor_add_to_basket() {
    751752
     753    $settings = get_option( 'ced_ocor_general_settings', false );
     754
    752755    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    753756            return;
     
    815818public function ced_ocor_remove_from_basket() {
    816819
     820    $settings = get_option( 'ced_ocor_general_settings', false );
    817821    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    818822        return;
     
    986990public function ced_ocor_add_basket_items_to_cart() {
    987991
     992    $settings = get_option( 'ced_ocor_general_settings', false );
    988993    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    989994        return;
     
    10871092public function ced_ocor_get_basket_items() {
    10881093
     1094    $settings = get_option( 'ced_ocor_general_settings', false );
    10891095    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    10901096        return;
     
    11891195public function ced_ocor_get_attchment_icon_info() {
    11901196
     1197    $settings = get_option( 'ced_ocor_general_settings', false );
    11911198    if ( empty( $settings[ 'selectedUsers' ] ) and ! current_user_can( 'administrator' ) ) {
    11921199        return;
  • one-click-order-reorder/trunk/readme.txt

    r3110934 r3115266  
    104104
    105105== Changelog ==
     106= 1.1.13 =
     107* Compatible with updated WooCommerce and bug fix
    106108
    107109= 1.1.10 =
Note: See TracChangeset for help on using the changeset viewer.