Skip to content
View spasicm's full-sized avatar

Block or report spasicm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
spasicm/README.md
  • 👋 Hi, I’m @spasicm
  • 👀 I’m interested in WordPress, WooCommerce, PHP, MySQL, JavaScript, HTML, CSS.
  • 🌱 I’m currently learning Laravel & AngularJS.
  • 💞️ I’m looking to collaborate on custom WordPress & WooCommerce development.
  • 📫 You can reach me via email contact@milosspasic.com

Pinned Loading

  1. WooCoommerce Delete Expired Coupons ... WooCoommerce Delete Expired Coupons Automatically
    1
    <?php
    2
    /** WooCommerce automatically delete expired coupons */
    3
    
                  
    4
    // WP Crone adding new interval schedule
    5
    add_filter( 'cron_schedules', 'cron_add_custom_interval' );
  2. WooCommerce Brands - display brand i... WooCommerce Brands - display brand image on single product page
    1
    <?php
    2
    // This is add-on for official WooCommerce Brands plugin -> https://woocommerce.com/products/brands/
    3
    // To make this add-on to work, all code must be added to WP functionality plugin -> https://css-tricks.com/wordpress-functionality-plugins/
    4
    
                  
    5
    add_action( 'init', 'eworkshop_remove_actions' );
  3. Woocommerce append a text to total p... Woocommerce append a text to total price on the "Cart", "Check out", "Thank you" pages & "Order recived" email
    1
    <?php
    2
    // This code should be added to your WordPress child theme functions.php
    3
    
                  
    4
    // Woocommerce append a text to total price on the "Cart" & "Check out" page
    5
    add_filter( 'woocommerce_cart_totals_order_total_html', 'eworkshop_custom_total_message_html', 10, 1 );
  4. WordPress disable plugin on specific... WordPress disable plugin on specific page
    1
    <?php
    2
    // To make this plugin to work, you must put this file in "wp-content/mu-plugins" directory.
    3
    // You can read mora about WordPress MU (Must Use) Plugins on the link -> https://wordpress.org/support/article/must-use-plugins/
    4
    add_filter( 'option_active_plugins', 'disable_specific_plugin' );
    5
    function disable_specific_plugin($plugins){