1

我需要 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. 给url传了个参数,输入的照片码是前8位
  5. 共享此按钮链接到不带参数的页面 url - 因此正在共享没有加载图像的空白页面。需要与独特的网址和照片分享页面。

社区活动照片表格使用两个页面:

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/照片.js

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

4

1 回答 1

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 参数设置为照片页面的 URL将您的标签设置为照片页面的 URL。

于 2013-10-15T18:12:53.210 回答