Skip to content
View rafiahmedd's full-sized avatar
💻
def code:
💻
def code:

Block or report rafiahmedd

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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

Pinned Loading

  1. wp-rest-to-jsonorcsv wp-rest-to-jsonorcsv Public

    A python program to download WP post via REST API & store it into JSON or CSV file as per user selection.

    Python

  2. debug-digger debug-digger Public

    A WP Plugin for development.

    PHP

  3. debug-logger-desktop-app debug-logger-desktop-app Public

    Monitor your debug log file with NativePHP desktop app

    PHP

  4. Email to Admin After User Unsubscrib... Email to Admin After User Unsubscribe From CRM With Unsubscribe Reason
    1
    add_action('fluentcrm_subscriber_status_to_unsubscribed', 'emailAfterUnsubscribed', 10, 2);
    2
    function emailAfterUnsubscribed($subscriber, $oldStatus){
    3
        $req = FluentCrm('request');
    4
        $reason = sanitize_text_field($req->get('reason'));
    5
        if ($reason == 'other') {
  5. Block-WpPayForm-submission-if-maximu... Block-WpPayForm-submission-if-maximum-quantity-limit-reached.php
    1
    <?php
    2
    add_filter('wppayform/validate_data_on_submission_item_quantity',function( $error, $elementId, $element, $form_data){
    3
    	global $wpdb;
    4
    	$formId = 46; //Please Add Your Form ID here
    5
    	$transactions = $wpdb->get_results( "SELECT * FROM {$wpdb->prefix}wpf_order_transactions WHERE form_id = {$formId}" );
  6. Add users to a list or tag who subsc... Add users to a list or tag who subscribe last week from today in CRM and trigger an email automation
    1
    /**
    2
     * Please use this code inside the theme function.php file
    3
     * or it can throw error on your site
    4
     */
    5