如何在wordpress主题中获取此功能,这将直接打开新选项卡中的链接

时间:2014-04-19 10:17:52

标签: wordpress

两个都有相同的wordpress主题,但有一个差异优惠券应该被复制,应该在新标签打开没有弹出窗口应该打开询问开放网站我的链接是

enter code here http://couponsgrabber.in/coupon/rs-300-purchase-rs-2499/

并希望这样

http://www.bigrockcouponcodes.in

3 个答案:

答案 0 :(得分:0)

如果您可以更改某些代码,那么这很容易。

首先:你需要改变css类

a.coupon-code-link {
    background: url("images/bg-coupon-code-left.gif") no-repeat scroll left top rgba(0, 0, 0, 0);
    display: block;
    margin: 0;
    position: relative;
    text-decoration: none;
    z-index: 1;
}

更改为

a.coupon-code-link1 {
    background: url("images/bg-coupon-code-left.gif") no-repeat scroll left top rgba(0, 0, 0, 0);
    display: block;
    margin: 0;
    position: relative;
    text-decoration: none;
    z-index: 1;
}

第二:

You can need find correct file where add this class [coupon-code-link]

coupon-code-link class change in to  coupon-code-link1


<a data-clipboard-text="NTCV7WCSVH" target="_blank" class="coupon-code-link" id="coupon-link-94" href="http://coupons.amazkart.in/view-coupon/rs-300-purchase-rs-2499/94"><span>Show Coupon Code</span></a>
                    </div>

改为

<div class="link-holder">
                                                <a data-clipboard-text="NTCV7WCSVH" target="_blank" class="coupon-code-link1" id="coupon-link-94" href="http://coupons.amazkart.in/view-coupon/rs-300-purchase-rs-2499/94"><span>Show Coupon Code</span></a>
                    </div>

它会正常工作。

希望这有帮助!

你可以尝试

吗?

答案 1 :(得分:0)

我已根据更改附上截图,请检查

please check before changes

please check after changes

答案 2 :(得分:0)

请在js文件中更改此代码

jQuery(".coupon-code-link1").zclip({
    copy: jQuery(this).data('clipboard-text'),
    afterCopy:function(){
//
}


});

jQuery( document ).on('click', '.coupon_type-coupon-code a.coupon-code-link1', function() {
            var couponcode = jQuery(this).data('clipboard-text');
            var linkID = jQuery(this).attr('id');

            jQuery(this).fadeOut('fast').html('<span>' + couponcode + '</span>').fadeIn('fast');



            jQuery(this).parent().next().hide();



            /*jQuery.colorbox({
                href: clipper_params.ajax_url + "?action=coupon-code-popup&id=" + linkID,
                transition:'fade',
                maxWidth:'100%',
                onLoad: function() {
                    if ( clipper_params.is_mobile ) {
                        jQuery('#cboxOverlay, #wrapper').hide();
                    }
                },
                onComplete: function() {
                    ZeroClipboard.config( { moviePath: clipper_params.templateurl + '/includes/js/zeroclipboard/ZeroClipboard.swf' } );
                    var clip = new ZeroClipboard( jQuery('#copy-button') );
                    clip.on( 'complete', function( client, args ) {
                        jQuery("#copy-button").html(clipper_params.text_copied);
                    });
                    clip.on( 'mouseover', function( client ) {
                        jQuery("#copy-button").addClass('hover');
                    });
                    clip.on( 'mouseout', function( client ) {
                        jQuery("#copy-button").removeClass('hover');
                    });
                    clip.on( 'noflash', function( client ) {
                        jQuery("#copy-button").remove();
                    });
                    clip.on( 'wrongflash', function( client ) {
                        jQuery("#copy-button").remove();
                    });
                },
                onCleanup: function() {
                    ZeroClipboard.destroy();
                    if ( clipper_params.is_mobile ) {
                        jQuery('#wrapper').show();
                    }
                }
            });
            return false;*/
        });

    }

请尝试..