AddThis需要共享js生成的自定义URL

时间:2013-10-14 19:56:33

标签: javascript share addthis

我需要facebook / twitter / email按钮与加载的照片共享页面。照片形式的脚本是几年前由一位已经离开的同事写的,我得出的结论是,我无法自定义。我已经包含了尽可能多的信息。谢谢!

编辑:我可以为任何想要为我准备的人提供wp登录详细信息。非常感谢!

  1. 转到此页:etncal.staging.wpengine.com/community-event-photos /
  2. 输入ID#09070073,单击获取照片按钮
  3. 新页面加载并且网址将显示为:etncal.staging.wpengine.com/download-your-community-event-photos/?photo = 090700731381779074495
  4. 参数已传递到网址,输入的照片代码为前8位
  5. 分享此按钮链接到没有参数的页面网址 - 因此正在共享没有加载图像的空白页面。需要与独特的网址分享页面&照片。
  6. 社区活动照片表格使用两页:

    1]页面形式: etncal.staging.wpengine.com/community-event-photos /

    代码已添加到此页面正文:

    [js]varUnique=new Date().getTime() //will always be unique
    function CheckForm() {
    var photoID = document.photoForm.photoID.value;
    var numericExpression = /^[0-9]+$/;
    var eightdigit = /^\d{8}$/;
    if(photoID.match(eightdigit)) {
    var urlID = (photoID.concat(varUnique));
    var newURL = 'http://etncal.staging.wpengine.com/download-your-community-event-photos/?photo=';
    location.href=(newURL.concat(urlID));
    return false;
    } else {
    alert('Please enter the eight digit number for your photo ID.');
    return false;
    }
    }[/js]
    

    2]加载图片的页面: etncal.staging.wpengine.com/download-your-community-event-photos /

    代码已添加到此页面正文:

    <div class="clear-mg"></div>
    <div class="photo">[js]
    displayPhoto();
    [/js]</div>
    

    链接到以下js文件包含在同一个wordpress页面的标题中(单击添加媒体右侧的第二个按钮,使用插件添加): etncal.staging.wpengine.com/wp-content/themes/canvas_child/js/photos.js

    照片位于此处: etncal.staging.wpengine.com/wp-content/themes/canvas_child/images/community/photos /

1 个答案:

答案 0 :(得分:0)

问题是您将addthis:url参数设置为与地址栏不同的值。这是您网页上的代码:

<div addthis:url='http://etncal.staging.wpengine.com/download-your-community-event-photos/' addthis:title='Download Your Community Event Photo ' class="addthis_toolbox addthis_default_style addthis_32x32_style">
    <a class="addthis_button_facebook"></a>
    <a class="addthis_button_twitter"></a>
    <a class="addthis_button_email"></a>
</div>

您需要将addthis:url参数设置为照片页面的网址将标记设置为照片页面的网址。