• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

Financity - Business / Financial / Finance WordPress Theme

Financity - Business / Financial / Finance WordPress Theme v1.3.3

No permission to download

Babak

Well-known member
Staff member
Administrator
May 24, 2018
81,086
150,599
120
33
Babak submitted a new resource:

Financity - Business / Financial / Finance WordPress Theme - Download Free Financity - Business / Financial / Finance WordPress Theme Nulled ThemeForest 20757434

11586
Download Free Financity - Business / Financial / Finance WordPress Theme Nulled ThemeForest 20757434
Financity is a powerful responsive business & financial WordPress theme. It’s suitable for many corporate website such as Financial Service, Finance Company, Financial Advisor, Accountant, Law Firm, Wealth Advisor, Investment and general corporate website.

Financity – finance WordPress Theme comes with the 3rd version of super powerful &...

Read more about this resource...
 
Babak updated Financity - Business / Financial / Finance WordPress Theme with a new update entry:

Financity v1.2.3

Download Financity v1.2.3 - Business / Financial / Finance WordPress Theme Nulled Free
===v1.2.3== 14/10/2019

Update revolution slider (6.1.3)
Update goodlayers core (1.5.7)
Update goodlayers core portfolio (1.2.5)
Update goodlayers core personnel (1.1.9)

minor adjustment
– include/include-script.php

add more option for custom uploaded font
– include/goodlayers-core-filter.php
– include/options/typography.php

add support for another icon font
– include/option/plugin-settings.php
–...

Read the rest of this update entry...
 
Babak updated Financity - Business / Financial / Finance WordPress Theme with a new update entry:

Financity v1.2.4

Download Financity v1.2.4 - Business / Financial / Finance WordPress Theme Nulled Free
v1.2.4 = 26/11/2019


fix gallery compatibility with wp 5.3
– style-core.css

remove Snazzy Maps from tgmpa
goodlayers core 1.6.0
goodlayers core personnel 1.2.0
goodlayers core portfolio 1.2.6
revolution slider 6.1.5

GoodLayers Core plugin, view changelog here : https://support.goodlayers.com/document/changelog-goodlayers-core-plugin/

Read the rest of this update entry...
 
Babak updated Financity - Business / Financial / Finance WordPress Theme with a new update entry:

Financity Theme v1.2.5

Download Financity v1.2.5 - Business / Financial / Finance WordPress Theme Nulled Free
=== v1.2.5 == 15/05/2020

Update goodlayers core 1.7.0
Update goodlayers core portfolio 1.3.0
Update goodlayers core personnel 1.2.3
Update goodlayers core twitter 1.0.3
Envato market 2.0.3
Revolution Slider 6.2.6

Update WooCommerce template
woocommerce folder

GoodLayers Core plugin, view changelog here : https://support.goodlayers.com/document/changelog-goodlayers-core-plugin/...

Read the rest of this update entry...
 
admin/installer/verification.php

Change this file for bypass verification.But I can't import demo still





Code:
<?php

    define('FINANCITY_ITEM_ID', 20757434);
    define('FINANCITY_PURCHASE_VERFIY_URL', 'https://goodlayers.com/licenses/wp-json/verify/purchase_code');
    define('FINANCITY_PLUGIN_VERSION_URL', 'https://goodlayers.com/licenses/wp-json/version/plugin');
    define('FINANCITY_PLUGIN_UPDATE_URL', 'https://goodlayers.com/licenses/wp-content/plugins/goodlayers-verification/download/');
   
    if( !function_exists('financity_is_purchase_verified') ){
        function financity_is_purchase_verified(){
            $purchase_code = financity_get_purchase_code();
            return empty($purchase_code)? false: true;
        }
    }
    if( !function_exists('financity_get_purchase_code') ){
        function financity_get_purchase_code(){
            return get_option('envato_purchase_code_' . FINANCITY_ITEM_ID, '');
        }
    }
    if( !function_exists('financity_get_download_url') ){
        function financity_get_download_url($file){
            $download_key = get_option('financity_download_key', '');
            $purchase_code = financity_get_purchase_code();
            if( empty($download_key) ) return false;

            return add_query_arg(array(
                'purchase_code' => $purchase_code,
                'download_key' => $download_key,
                'file' => $file
            ), FINANCITY_PLUGIN_UPDATE_URL);
        }
    }

    # delete_option('envato_purchase_code_' . FINANCITY_ITEM_ID);
    # delete_option('financity_download_key');
    if( !function_exists('financity_verify_purchase') ){
        function financity_verify_purchase($purchase_code, $register){
            $response = wp_remote_post(FINANCITY_PURCHASE_VERFIY_URL, array(
                'body' => array(
                    'register' => $register,
                    'item_id' => FINANCITY_ITEM_ID,
                    'website' => get_site_url(),
                    'purchase_code' => $purchase_code
                )
            ));

            if( is_wp_error($response) || wp_remote_retrieve_response_code($response) != 200 ){
                throw new Exception(wp_remote_retrieve_response_message($response));
            }

            $data = json_decode(wp_remote_retrieve_body($response), true);
            if( $data['status'] == 'success' ){
                update_option('envato_purchase_code_' . FINANCITY_ITEM_ID, $purchase_code);
                update_option('financity_download_key', $data['download_key']);
                return true;
            }else{
                update_option('envato_purchase_code_' . FINANCITY_ITEM_ID, $purchase_code);
                update_option('financity_download_key', $data['download_key']);
                return true;

                if( !empty($data['message']) ){
                    throw new Exception($data['message']);
                }else{
                    throw new Exception(esc_html__('Unknown Error', 'financity'));
                }
               
            }

        } // financity_verify_purchase
    }

    // delete_option('financity_daily_schedule');
    // delete_option('financity-plugins-version');
    add_action('init', 'financity_admin_schedule');
    if( !function_exists('financity_admin_schedule') ){
        function financity_admin_schedule(){
            if( !is_admin() ) return;

            $current_date = date('Y-m-d');
            $daily_schedule = get_option('financity_daily_schedule', '');
            if( $daily_schedule != $current_date ){
                update_option('financity_daily_schedule', $current_date);
                do_action('financity_daily_schedule');
            }
        }
    }

    # update version from server
    add_action('financity_daily_schedule', 'financity_plugin_version_update');
    if( !function_exists('financity_plugin_version_update') ){
        function financity_plugin_version_update(){
            $response = wp_remote_get(FINANCITY_PLUGIN_VERSION_URL);

            if( !is_wp_error($response) && !empty($response['body']) ){
                update_option('financity-plugins-version', json_decode($response['body'], true));
            }
        }
    }
Manual demo import:
admin/function/files/ .xml files in there
 
Last edited:
==v1.3.5== 30/07/2023

GoodLayers Core plugin, view changelog here : https://support.goodlayers.com/document/changelog-goodlayers-core-plugin

Revolution Slider Updated

remove google plus
– content/content-single.php
– content/single-magazine.php
– content/single-style-1.php
– content/single-style-2.php
– content/single-style-3.php
– content/single-style-4.php
– header/header-social.php
– include/options/general.php
– include/pb/blog-style.php
– woocommerce/single-product/meta.php

add tiktok social icon
– header/header-social.php
– header/header-settings.php
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock