我需要facebook / twitter / email按钮与加载的照片共享页面。照片形式的脚本是几年前由一位已经离开的同事写的,我得出的结论是,我无法自定义。我已经包含了尽可能多的信息。谢谢!
编辑:我可以为任何想要为我准备的人提供wp登录详细信息。非常感谢!
社区活动照片表格使用两页:
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 /
答案 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参数设置为照片页面的网址或将标记设置为照片页面的网址。