自定义rehub主题插件相关 VPN主机¶
自定义相关图标和字体尺寸¶
Rehub theme: helper_functions.php (functions/helper_functions.php)
# 1717行 店铺字体偏小 xqgl
# \themes\rehub-theme\functions\helper_functions.php (匹配2次)
# .offer_grid h3 { height: 36px; font-size: 15px; line-height:18px; font-weight:normal !important }
.offer_grid h3 { height: 22px; font-size: 22px; line-height:22px; font-weight:normal !important }
#1706行
.offer_act_enabled.col_item{padding-bottom: 53px}
# 461行 修改目录图标为盾牌监管 {/rehub-theme/style.css}
span.admin_meta:before{ font-size: 3px;line-height: 12px;vertical-align: middle; padding-right: 5px; content: "\f2f7"; font-style:normal;}
ContentEGG与AffiliateEGG的PRO版破解记录¶
ContentEGG RPO¶
1.content-egg/application/admin/LicConfig.php¶
public function licFormat($value)
{
return true;
}
public function activatingLicense($value)
{
return true;
}
2.content-egg/application/components/LManager.php¶
3. content-egg/templates/block_price_comparison_card.php:43¶
<?php foreach ($all_items as $key => $item): ?>
<a<?php TemplateHelper::printRel(); ?> class="list-group-item" target="_blank" href="<?php echo esc_url_raw($item['url']); ?>">
<img src="https://laowei8.com/favicon/get.php?url=https://<?php echo \esc_html(TemplateHelper::getMerhantName($item)); ?>" height="16" width="16">
<?php echo \esc_html(TemplateHelper::getMerhantName($item)); ?>
<?php if ($item['price']): ?>
<span<?php if ($item['stock_status'] != -1) echo ' style="background-color: ' . esc_attr(TemplateHelper::getPriceColor()) . '"'; ?> class="cegg-price-badge"><?php echo esc_html(TemplateHelper::formatPriceCurrency($item['price'], $item['currencyCode'])); ?></span>
<?php endif; ?>
</a>
<?php endforeach; ?>
content-egg/templates/block_top_listing.php:53¶
<div class="cegg-no-top-margin cegg-list-logo-title">
<img src="https://laowei8.com/favicon/get.php?url=https://<?php echo \esc_html(TemplateHelper::getMerhantName($item)); ?>" height="16" width="16">
<a<?php TemplateHelper::printRel(); ?> target="_blank" href="<?php echo esc_url_raw($item['url']); ?>"><?php echo \esc_html(TemplateHelper::truncate($item['title'], 100)); ?></a>
</div>
AffiliateEGG PRO¶
1 affiliate-egg/application/admin/LicConfig.php¶
public function licFormat($value)
{
if (preg_match('/[^0-9a-zA-Z_~\-]/', $value))
return false;
if (strlen($value) !== 32 && !preg_match('/^\w{8}-\w{4}-\w{4}-\w{4}-\w{12}$/', $value))
return false;
return true;
}
public function activatingLicense($value)
{
return true;
$response = AffiliateEgg::apiRequest(array('method' => 'POST', 'timeout' => 15, 'httpversion' => '1.0', 'blocking' => true, 'headers' => array(), 'body' => array('cmd' => 'activate', 'key' => $value, 'd' => parse_url(site_url(), PHP_URL_HOST), 'p' => AffiliateEgg::product_id, 'v' => AffiliateEgg::version()), 'cookies' => array()));
if (!$response)
return false;
$result = json_decode(\wp_remote_retrieve_body($response), true);
if ($result && !empty($result['status']) && $result['status'] === 'valid')
return true;
else
return false;
}
public function licFormat($value)
{
return true;
}
public function activatingLicense($value)
{
return true;
}
2. affiliate-egg/application/admin/LManager.php¶
public static function isNulled()
{
$l = LicConfig::getInstance()->option('license_key');
if (!$l && Plugin::isEnvato())
return false;
if (!LManager::isValidLicFormat($l))
return true;
if (in_array(md5($l), LManager::getNulledLics()))
return true;
return false;
}
阿里OSS静态存储-删除js/css外所有格式文件¶
win+R -> cmd -> cd C:\Users\hank\OneDrive - teleworm\桌面\img
del /a /f /s /q "*.DS_Store"
del /a /f /s /q "*.editorconfig"
del /a /f /s /q "*.gitattributes"
del /a /f /s /q "*.gitignore"
del /a /f /s /q "*.gitkeep"
del /a /f /s /q "*.gitmodules"
del /a /f /s /q "*.htaccess"
del /a /f /s /q "*.jsdtscope"
del /a /f /s /q "*.project"
del /a /f /s /q "*.yml"
del /a /f /s /q "*.xlsx"
del /a /f /s /q "*.xls"
del /a /f /s /q "*.html"
del /a /f /s /q "*.phtml"
del /a /f /s /q "*.po"
del /a /f /s /q "*.mo"
del /a /f /s /q "*.pot"
del /a /f /s /q "*.mo"
del /a /f /s /q "*.serialized"
del /a /f /s /q "*.ico"
del /a /f /s /q "*.ts"
del /a /f /s /q "*.sql"
del /a /f /s /q "*.cd"
del /a /f /s /q "*.csproj"
del /a /f /s /q "*.zip"
del /a /f /s /q "*.gz"
del /a /f /s /q "*.sh"
del /a /f /s /q "*.pem"
del /a /f /s /q "*.crt"
del /a /f /s /q "*.user"
del /a /f /s /q "*.sln"
del /a /f /s /q "*.lock"
del /a /f /s /q "*.m4"
del /a /f /s /q "config"
del /a /f /s /q "*.rb"
del /a /f /s /q "*.w32"
del /a /f /s /q "*.ini"
del /a /f /s /q "*Dockerfile"
del /a /f /s /q "*.mp3"
del /a /f /s /q "*.html_gzip"
del /a /f /s /q "*LICENCE"
del /a /f /s /q "*.xml"
del /a /f /s /q "*.woff"
del /a /f /s /q "*.ttf"
del /a /f /s /q "*.eot"
del /a /f /s /q "*.php"
del /a /f /s /q "*.png"
del /a /f /s /q "*.jpg"
del /a /f /s /q "*.jpeg"
del /a /f /s /q "*.svg"
del /a /f /s /q "*.webp"
del /a /f /s /q "*.gif"
del /a /f /s /q "*.swf"
del /a /f /s /q "*.babelrc"
del /a /f /s /q "*.buildpath"
del /a /f /s /q "*cleanup"
del /a /f /s /q "*COPYING"
del /a /f /s /q "*create-pear"
del /a /f /s /q "*create-phar"
del /a /f /s /q "*.po~"
del /a /f /s /q "*.csv"
del /a /f /s /q "*.psd"
del /a /f /s /q "*functions"
del /a /f /s /q "*.woff2"
del /a /f /s /q "*LICENSE"
del /a /f /s /q "*.conf"
del /a /f /s /q "*.iml"
thrive插件的下载更新¶
# thrive leads
http://download.thrivethemes.com/thrive-leads-3.6.zip
# thrive-architect
http://download.thrivethemes.com/thrive-architect-3.8.zip
Thrive Plugins Package Nulled - April 6, 2022
Thrive Automator v0.9
Thrive Optimize v2.6
Thrive Comments v2.6
Thrive Clever Widgets v2.9.1
Thrive Headline Optimizer v2.3.1
Thrive Ovation v3.6
Thrive Leads v3.6
Thrive Ultimatum v3.6
Thrive Quiz Builder v3.6
Thrive Apprentice v4.2
Thrive Architect v3.8
VPN主机¶
- MT4账户:30013631
- 服务器:GoldwellCapital-Live3
- 查看密码:abc123
跟单托管¶
每单都有止损 最大风控10%,月化收益10-20% 为防止软件跟单,北京时间22:00-3:00关闭查看密码 3000美金起步合作,客户盈利分成50%,操盘方50%;资金超过2万美金,客户盈利分成60%,操盘方40%。 只要收益超过10%,就可以每两个星期结算一次收益。不限平台合作,客户可以自己选择交易平台。目前我们合作平台有瑞讯银行,icmarkets,tickmill,exness