The Shop  - PWA eCommerce cms

Nulled The Shop - PWA eCommerce cms 3.6 Nulled

No permission to download
Version : 1.6 (15/06/2022)

- Introducing POS system

HOW TO NULL THE SCRIPT
Replace the file in vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php with this code
PHP:
<?php

namespace MehediIitdu\CoreComponentRepository;
use App\Models\Addon;
use Cache;

class CoreComponentRepository
{
public static function instantiateShopRepository() {
// $url = $_SERVER['SERVER_NAME'];
// $gate = "http://206.189.81.181/check_activation/".$url;
// $rn = self::serializeObjectResponse($gate);
// self::finalizeRepository($rn);
}

protected static function serializeObjectResponse($zn) {
// $stream = curl_init();
// curl_setopt($stream, CURLOPT_URL, $zn);
// curl_setopt($stream, CURLOPT_HEADER, 0);
// curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
// curl_setopt($stream, CURLOPT_POST, 1);
// $rn = curl_exec($stream);
// curl_close($stream);
// return $rn;
}

protected static function finalizeRepository($rn) {
// if($rn == "bad" && env('DEMO_MODE') != 'On') {
// return redirect('https://activeitzone.com/activation/')->send();
// }
}

public static function initializeCache() {
foreach(Addon::all() as $addon){
if ($addon->purchase_code == null) {
self::finalizeCache($addon);
}

if(Cache::get($addon->unique_identifier.'-purchased', 'no') == 'no'){
// try {
// $gate = "https://activeitzone.com/activation/check/".$addon->unique_identifier."/".$addon->purchase_code;

// $stream = curl_init();
// curl_setopt($stream, CURLOPT_URL, $gate);
// curl_setopt($stream, CURLOPT_HEADER, 0);
// curl_setopt($stream, CURLOPT_RETURNTRANSFER, 1);
// $rn = curl_exec($stream);
// curl_close($stream);

if($rn == 'no') {
self::finalizeCache($addon);
Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
return 'yes';
});
}
// else{
// Cache::rememberForever($addon->unique_identifier.'-purchased', function () {
// return 'yes';
// });
// }
// } catch (\Exception $e) {

// }
}
}
}

public static function finalizeCache($addon){
$addon->activated = 0;
$addon->save();

flash('Please reinstall '.$addon->name.' using valid purchase code')->warning();
return redirect()->route('addons.index')->send();
}
}
  • Like
Reactions: codbinar
version : 1.5 (06/06/2022)

- Full width topbar banner
- Sticky header enable/disable option in admin panel
- Sticky header enable/disable option in admin panel
- Translations are given for custom pages data
- Responsiveness improvement on custom pages
version : 1.4 (18/05/2022)

- Twitter Login Credentials UI is updated in admin panel.
- Cache Clear button is added in header navigation in admin panel.
- Product Query feature has been added to ask about the product to seller/admin.
- Admin can set setting to show full price or price like 1M, 1B
- Paytm package has been updated to resolve older version issues.
- "Home" menu has been added in website header menus.
- Forgot password & Password Reset issue has been fixed.
- Responsiveness issue has been fixed in product description to show image/video in frontend product details page.
  • Like
Reactions: 0micron
version : 1.3 (29/3/2022)

- OTP support added
- Login, registration with mobile/email select option
- Forgot & reset password with phone number
- OTP verfication with mobile number
- Twilio & vonage sms gateway for phone verification sms.
version : 1.2 (14/03/2022)

- The shop refund addon support added.
- Tracking information adding option for orders.
- Order updates log added.
- Customer wallet log improved.
- Minimum purchase amount added in cart for shop.
- Page title switch when going to another page.
- Language can be enabled/disabled from admin panel.
- Seller registration confirm page.
- Some minor bug fixed
Top