اشتراک گذاری لینک کوتاه محصول با استفاده از شورت کات – چهارمین تکنیک افزایش فروش آنلاین
ارسال سریع لینک کوتاه محصول به شبکه های اجتماعی توسط کاربران سایت تاثیری شگفت انگیز در افزایش فروش شما خواهد داشت، با یک کد ساده این تکنیک را امتحان کنید و شگفت زده شوید این کد را باید در انتهای فایل فانکشن خود قرار داده و آن را ذخیره کنید سپس شورت کات [shortlink_share_button] در هرجای صفحه محصول می خواهید قرار دهید.
مشاهده سایر روش های افزایش درآمد فروشگاه آنلاین
// Register the shortcode
add_shortcode('shortlink_share_button', 'shortlink_share_button_shortcode');
function shortlink_share_button_shortcode() {
if (is_product()) {
global $product;
// Get the product permalink
$permalink = wp_get_shortlink($product->get_id());
// Output the shortlink and share button HTML
ob_start();
?>
<div class="shortlink-share" style="margin-top: 10px;">
<p>Link: <input type="text" value="<?php echo esc_attr($permalink); ?>" readonly="readonly" onclick="this.select();" class="shortlink-input"/></p>
<button onclick="shareProductLink('<?php echo esc_js($permalink); ?>')" class="share-button">Send</button>
</div>
<?php
return ob_get_clean();
}
}
// Add the JavaScript for the share button functionality
add_action('wp_footer', 'add_share_button_script');
function add_share_button_script() {
if (is_product()) {
?>
<script type="text/javascript">
function shareProductLink(link) {
if (navigator.share) {
navigator.share({
title: document.title,
url: link
}).then(() => {
console.log('Thanks for sharing!');
}).catch(console.error);
} else {
// Fallback for browsers that do not support the Web Share API
window.open('https://t.me/share/url?url=' + encodeURIComponent(link), '_blank');
}
}
</script>
<?php
}
}
Amazing here. I’m very happy to see your article. Thanks so much