Template error, template file not found

[wordpress插件] Authors Autocomplete Meta Box作者自动完成元框

评分100描述Replaces the default WordPress Author meta box (that has an author dropdown) with a meta box that allows you to select the ...
继续阅读 »
评分
100
描述

Replaces the default WordPress Author meta box (that has an author dropdown) with a meta box that allows you to select the post’s, or page’s, author via Autocomplete.

将默认的WordPress作者meta框(带有作者下拉列表)替换为允许您通过自动完成功能选择帖子或页面作者的meta框。

Can really come in handy if you have a lot of authors and are tired of scrolling through that long author dropdown.

如果您有很多作者,并且厌倦了浏览冗长的作者下拉列表,则可以派上用场。

Credits

积分

Big shoutout to ereleases.com for commissioning this plugin and letting me share it with the community.

大声喊着 ereleases.com 来调试此插件并让我与社区分享。

Thanks, guys.

谢谢你们。

You rock!

你真摇滚!

Lots of thanks to Andrew Kurtis from WebHostingHub Support for providing the Spanish translation.

非常感谢WebHostingHub支持小组的Andrew Kurtis提供西班牙语翻译。

Filters

过滤器

Filters can really come in handy to nail down specific customizations on a site by site basis.

过滤器确实可以派上用场,以逐个站点确定特定的自定义项。

I am what you would consider a power user so I’m a big fan of actions and filters and try to incorporate them into my plugins as much as possible.

我是您会认为是高级用户的人,因此我非常喜欢操作和过滤器,并尝试将它们尽可能地整合到我的插件中。

Here are some pretty helpful filters to get your authors autocomplete meta box working just the way you like.

这里有一些非常有用的过滤器,可以使您的作者自动完成元框按照您喜欢的方式工作。

authors_autocomplete_mb_allow_user_id

authors_autocomplete_mb_allow_user_id

This filter allows you to block users from the autocomplete results according to user id.

通过该过滤器,您可以根据用户ID阻止用户使用自动填充结果。

Return true to allow and false to deny.

返回 true 允许并返回 false 拒绝。

It passes the user id, along with the post ID and post type.

它传递用户ID,以及帖子ID和帖子类型。

Don’t forget: when using a filter, you MUST return something.

别忘了::使用过滤器时,您必须退货。

Here’s an example to help you get started:

这是一个帮助您入门的示例:

  <?php

// return *true* to allow the user and *false* to deny the user from autocomplete results

//返回* true *以允许用户,并返回* false *从自动完成结果中拒绝用户

add_filter( 'authors_autocomplete_mb_allow_user_id', 'filter_authors_autocomplete_mb_allow_user_id', 1, 4 );

add_filter('authors_autocomplete_mb_allow_user_id','filter_authors_autocomplete_mb_allow_user_id',1,4);

function filter_authors_autocomplete_mb_allow_user_id( $allow_user_id, $user_id, $post_id, $post_type ) {    

函数filter_authors_autocomplete_mb_allow_user_id($ allow_user_id,$ user_id,$ post_id,$ post_type){    

if ( $user_id == 4 )        

如果($ user_id == 4)        

return false;    

返回false;    

return $allow_user_id;

返回$ allow_user_id;

}

}

?>

?>

authors_autocomplete_mb_allow_user_role

authors_autocomplete_mb_allow_user_role

This filter allows you to block users from the autocomplete results according to user role.

此过滤器使您可以根据用户角色阻止用户访问自动完成结果。

Return true to allow and false to deny.

返回 true 允许并返回 false 拒绝。

It passes the user role, along with the post ID and post type.

它传递用户角色以及帖子ID和帖子类型。

Don’t forget: when using a filter, you MUST return something.

别忘了::使用过滤器时,您必须退货。

Here’s an example to help you get started:

这是一个帮助您入门的示例:

  <?php

// return *true* to allow the user and *false* to deny the user from autocomplete results

//返回* true *以允许用户,并返回* false *从自动完成结果中拒绝用户

add_filter( 'authors_autocomplete_mb_allow_user_role', 'filter_authors_autocomplete_mb_allow_user_role', 1, 4 );

add_filter('authors_autocomplete_mb_allow_user_role','filter_authors_autocomplete_mb_allow_user_role',1,4);

function filter_authors_autocomplete_mb_allow_user_role( $allow_user_role, $user_role, $post_id, $post_type ) {    

函数filter_authors_autocomplete_mb_allow_user_role($ allow_user_role,$ user_role,$ post_id,$ post_type){    

if ( $user_role == 'administrator' )        

如果($ user_role =='administrator')        

return false;    

返回false;    

return $allow_user_role;

返回$ allow_user_role;

}

}

?>

?>

authors_autocomplete_mb_author_capability

authors_autocomplete_mb_author_capability

When checking to see if a user has author privileges, and should therefore be included in the autocomplete results, the plugin checks the user’s capabilities.

在检查用户是否具有作者特权并因此应将其包括在自动完成结果中时,该插件会检查用户的功能。

If the user is editing a page, then the user is added if they have the capability to edit_pages, otherwise the user is added if they have the capability to edit_posts.

如果用户正在编辑页面,则如果他们具有 edit_pages 的能力,则添加该用户;否则,如果他们具有 edit_posts 的能力,则添加该用户。

p>

>

If you would like to change the author privilege capability, then this filter is for you.

如果您想更改作者特权功能,那么此过滤器适合您。

It passes the default capability, along with the post ID and post type.

它传递默认功能以及帖子ID和帖子类型。

Don’t forget: when using a filter, you MUST return something.

别忘了::使用过滤器时,您必须退货。

Here’s an example to help you get started:

这是一个帮助您入门的示例:

  <?php

// changing the author capability according to post type

//根据帖子类型更改作者功能

add_filter( 'authors_autocomplete_mb_author_capability', 'filter_authors_autocomplete_mb_author_capability', 1, 3 );

add_filter('authors_autocomplete_mb_author_capability','filter_authors_autocomplete_mb_author_capability',1,3);

function filter_authors_autocomplete_mb_author_capability( $author_capability, $post_id, $post_type ) {    

函数filter_authors_autocomplete_mb_author_capability($ author_capability,$ post_id,$ post_type){    

if ( $post_type == 'movies' )        

如果($ post_type =='电影')        

return 'edit_movies';    

返回'edit_movies';    

return $author_capability;

返回$ author_capability;

}

}

?>

?>

authors_autocomplete_mb_custom_user_search_user_ids

authors_autocomplete_mb_custom_user_search_user_ids

Want the autocomplete box to search information besides the default user_login, display_name and user_email?

是否要使用自动完成框来搜索除默认的user_login,display_name和user_email之外的信息?

This is the filter for you.

这是适合您的过滤器。

Use this filter to run whatever search you like and simply return the user IDs from your results.

使用此过滤器可以运行所需的任何搜索,并仅从结果中返回用户ID。

It passes a blank array to get you started, the search term, post ID and post type.

它传递一个空白数组,以帮助您入门,搜索词,帖子ID和帖子类型。

Don’t forget: when using a filter, you MUST return something.

别忘了::使用过滤器时,您必须退货。

Here's an example from me helping a user search their CIMY User Extra Fields:

以下是我的一个示例,该示例帮助用户搜索其 CIMY用户额外字段

>

>

  <?php

// search CIMY User Extra Fields with search term and return user IDs

//使用搜索词搜索CIMY用户额外字段并返回用户ID

add_filter( 'authors_autocomplete_mb_custom_user_search_user_ids', 'authors_autocomplete_custom_user_search', 1, 4 );

add_filter('authors_autocomplete_mb_custom_user_search_user_ids','authors_autocomplete_custom_user_search',1,4);

function authors_autocomplete_custom_user_search( $user_ids, $search_term, $post_id, $post_type ) {   

函数authors_autocomplete_custom_user_search($ user_ids,$ search_term,$ post_id,$ post_type){   

global $wpdb;   

全局$ wpdb;   

return $wpdb->get_col( "SELECT users.ID, cimy_uef_data.VALUE FROM $wpdb->users users LEFT JOIN {$wpdb->prefix}cimy_uef_data cimy_uef_data ON cimy_uef_data.USER_ID = users.ID WHERE ( cimy_uef_data.VALUE LIKE '%

返回$ wpdb-> get_col(“从$ wpdb-> users用户中选择SELECT users.ID,cimy_uef_data.VALUE

$search_term%' OR users.user_login LIKE '%$search_term%' OR users.display_name LIKE '%$search_term%' OR users.user_email LIKE '%$search_term%' ) ORDER BY users.ID ASC" );

$ search_term%'OR users.user_login LIKE'%$ search_term%'OR users.display_name LIKE'%$ search_term%'OR users.user_email LIKE'%$ search_term%')ORDER BY users.ID ASC“);

}

}

?>

?>

安装步骤

    1. Upload ‘authors-autocomplete-meta-box’ to the ‘/wp-content/plugins/’ directory.
    2. 将“ authors-autocomplete-meta-box”上传到“ / wp-content / plugins /”目录。

    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. 通过WordPress中的“插件”菜单激活插件。

    5. Start finding and selecting a post or page’s author like a boss.
    6. 开始查找并选择帖子或专页的作者,例如老板。

下载地址
https://downloads.wordpress.org/plugin/authors-autocomplete-meta-box.1.2.zip
收起阅读 »

[wordpress插件] Authors Widget作者小部件

评分100描述Authors Widget shows the list or cloud of the authors, with the number of posts, link to RSS feed next to their name, avata...
继续阅读 »
评分
100
描述

Authors Widget shows the list or cloud of the authors, with the number of posts, link to RSS feed next to their name, avatar.

Authors小部件显示作者列表或云,以及帖子的数量,作者姓名旁边的指向RSS feed的链接。

It is useful in a multi-author blog, where you want to have the list in the sidemenu.

在多作者博客中,该列表很有用,您需要在侧面菜单中找到列表。

The widget can also display an “Author Cloud” if SEO Tag Cloud plugin is installed.

如果安装了 SEO标签云插件,则该小部件也可以显示“作者云”。

>

>

安装步骤

To install Authors Widget follow the following steps:

要安装Authors Widget,请执行以下步骤:

    1. Unpack authors.zip to /wp-content/plugins/authors/ directory
    2. authors.zip 打包到 / wp-content / plugins / authors / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

    5. Go to ‘Presentation’ or ‘Design’ or ‘Appearance’ menu
    6. 转到“演示”或“设计”或“外观”菜单

    7. Go to ‘Widgets’ menu
    8. 转到“窗口小部件”菜单

    9. Drag & Drop the Authors Widget to the place on your sidebar where you would like to display the authors’ list
    10. 将“作者”小部件拖放到侧栏上您要显示作者列表的位置

    Optionally you can change the following settings:

    (可选)您可以更改以下设置:

      1. Title
      2. 标题

      3. Format: list |

      4. 格式:列表|

        cloud |

        云|

        dropdown

      5. 下拉

      6. Order by: display name |

      7. 订购者:显示名称|

        first name |

        名|

        last name |

        姓|

        post count |

        帖子数|

        id |

        id |

        random

      8. 随机

      9. Number of authors to show
      10. 要显示的作者数量

      11. Show Avatar
      12. 显示头像

      13. Avatar size
      14. 头像大小

      15. Show RSS links
      16. 显示RSS链接

      17. Show post counts
      18. 显示帖子数

      19. Exclude admin
      20. 排除管理员

      21. Hide credit
      22. 隐藏信用

      23. Save the changes
      24. 保存更改

      And you’re welcome to donate to keep the plugin developed

      欢迎您捐赠以保持插件的开发

下载地址
https://downloads.wordpress.org/plugin/authors.zip
收起阅读 »

[wordpress插件] Authorizer SecondFactor授权者SecondFactor

评分0描述This plugin enables you to secure your WordPress login with two factor authentication (TFA / 2FA) based on Authorizer SecondF...
继续阅读 »
评分
0
描述

This plugin enables you to secure your WordPress login with two factor authentication (TFA / 2FA) based on Authorizer SecondFactor.

此插件可让您基于基于 Authorizer SecondFactor 的两因素身份验证(TFA / 2FA)保护WordPress登录。

Users for whom it is enabled will require an additional one-time code besides their password in order to log in.

启用了此功能的用户除了需要输入密码外,还需要其他一次性密码才能登录。

For more information see www.authorizer.de/en/wordpress and the “

有关更多信息,请参见 www.authorizer.de/en/wordpress 和“

Screenshots” section below.

屏幕截图”部分。

Features

功能

    • Plugin supports the Authorizer SecondFactor API
    • 插件支持Authorizer SecondFactor API

    • Simplified and user friendly UI with overview of all users
    • 具有所有用户概述的简化且用户友好的用户界面

    • Two-factor settings can be turned on/off for each user individually
    • 可以为每个用户分别打开/关闭双因素设置

    • One-time code can be sent by email or SMS (mailTAN or smsTAN/mTAN)
    • 可以通过电子邮件或短信(mailTAN或smsTAN / mTAN)发送一次验证码

    • Free version available
    • 可用免费版本

    • Easy initial auto-configuration
    • 轻松的初始自动配置

    • Supports latest WordPress version (5.3.1)
    • 支持最新的WordPress版本(5.3.1)

    • WP Multisite compatible
    • 与WP Multisite兼容

    • Backup of your SecondFactor data in the Authorizer Cloud
    • 在Authorizer Cloud中备份SecondFactor数据

    • Pro feature: Unlimited transactions in tariffs “Team” and “Business”
    • 专业功能:“团队”和“企业”关税无限交易

    • Pro feature: Supports several WordPress instances in parallel (free for all tariffs)
    • 专业功能:并行支持多个WordPress实例(所有关税免费)

    • Pro feature: Sync of your SecondFactor data between multiple WordPress instances (free for all tariffs)
    • 专业功能:在多个WordPress实例之间同步SecondFactor数据(免费提供所有关税)

    How does it work?

    它如何工作?

    This plugin uses the Authorizer SecondFactor API (www.authorizer.de

    此插件使用 Authorizer SecondFactor API( www.authorizer.de

    /en/wordpress) to manage accounts and generate, send and validate challenges (OTP / TAN).

    / en / wordpress )来管理帐户并生成,发送和验证挑战(OTP / TAN)。

    Plugin notes

    便笺

    This plugin is a fork of the Two Factor Authentication plugin by David Nutbourne and David Anderson, original plugin by Oskar Hane.

    该插件是Oskar Hane的原始插件David Nutbourne和David Anderson的Two Factor Authentication插件的分支。

安装步骤

This plugin requires PHP version 5.3 or higher and either php-openssl or PHP mcrypt

此插件需要PHP 5.3或更高版本,以及php-openssl或 PHP mcrypt

.

The vast majority of PHP setups will have one of these.

绝大多数PHP安装程序都将具有其中之一。

If not, ask your hosting company.

如果没有,请咨询您的托管公司。

    1. Search for ‘Authorizer SecondFactor’ in the ‘Plugins’ menu in WordPress.
    2. 在WordPress的“插件”菜单中搜索“ Authorizer SecondFactor”。

    3. Click the ‘Install’ button (make sure you pick the right one).
    4. 点击“安装”按钮(确保选择正确的按钮)。

    5. Activate the plugin through the ‘Plugins’ menu in WordPress.
    6. 通过WordPress中的“插件”菜单激活插件。

    7. Find site-wide settings in Settings -> Authorizer SecondFactor.
    8. 在“设置”->“授权者SecondFactor”中查找站点范围的设置。

    9. Let the plugin auto-configure itself by simply entering your Authorizer credentials.
    10. 只需输入您的授权者凭据即可让插件自动配置。

下载地址
https://downloads.wordpress.org/plugin/authorizer-secondfactor.1.1.3.zip
收起阅读 »

[wordpress插件] Authorize.net &#8211; Simple DonationsAuthorize.net –简单捐赠

评分74描述Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and othe...
继续阅读 »
评分
74
描述

Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards.

Authorize.net是使用最广泛的支付网关,用于在线处理付款,并接受Visa,MasterCard,Discover和其他卡的变体。

Now can be used to accept donations with the help of this plugin.

现在可以在此插件的帮助下接受捐款。

Non-profit groups and other sites can now take secure donations from any page on their site using ‘Authorize.net – Simple Donations’.

现在,非营利组织和其他站点可以使用“ Authorize.net-简单捐赠”从其站点上的任何页面进行安全捐赠。

Just install and get started to accept payments/donations through Authorize.net.

只需安装并开始通过Authorize.net接受付款/捐赠。

Authorize.net – Simple Donations Plugin Features:

Authorize.net –简单捐赠插件功能:

  1. Easy shortcode to use.  

  1.易于使用的简码。  

2. Easy to configure in admin section.  

2.易于在管理部分进行配置。  

3. List of all donations and their details.  

3.所有捐赠及其详细信息的清单。  

4. Customize Thank you & Processor description text  

4.自定义谢谢和处理器描述文本  

5. Add this [wds_donate] shortcode

5.添加此[wds_donate]短代码

For more support visit Plugin Support We will be

有关更多支持,请访问插件支持

glad to help you.

很高兴为您提供帮助。

Follow me for more updates.

跟我来以获取更多更新。

安装步骤

The installation of this plugin is very simple.

此插件的安装非常简单。

It takes only few minutes.

仅需几分钟。

There are two ways to install it:

有两种安装方法:

a.Install using FTP

a。使用FTP安装

  1. Download 'Authorize.net - Simple Donations' plugin.  

  1.下载“ Authorize.net-简单捐赠”插件。  

2. Unzip and upload 'Authorize.net - Simple Donations' folder to the /wp-content/plugins/ directory of your WordPress setup.  

2.解压“ Authorize.net-简单捐赠”文件夹并将其上传到WordPress安装程序的/ wp-content / plugins /目录。  

3. Activate the plugin from the 'Plugins' menu option in WordPress admin.

3.从WordPress管理员的“插件”菜单选项中激活插件。

b.Install using Upload method in WordPress admin panel

b。使用WordPress管理面板中的Upload方法安装

  1. Download 'Authorize.net - Simple Donations' plugin.  

  1.下载“ Authorize.net-简单捐赠”插件。  

2. Click on 'Plugins' menu option in WordPress admin.  

2.单击WordPress管理员中的“插件”菜单选项。  

3. Click on 'Add New' option in plugins.  

3.单击插件中的“添加新”选项。  

4. Upload the 'Authorize.net - Simple Donations' plugin and 'Activate' it.

4.上传“ Authorize.net-简单捐赠”插件并“激活”。

Configuration:

配置:

  1. After activating the plugin, click 'Donation Settings' menu option in WordPress admin.  

  1.激活插件后,单击WordPress管理员中的“捐赠设置”菜单选项。  

2. Enter your Authorize.net API 'Login ID' and 'Transaction Key'.  

2.输入您的Authorize.net API“登录ID”和“交易密钥”。  

3. Select your API mode.

3.选择您的API模式。

Use 'Sandbox' for testing else use 'Live' mode for real transactions.  

使用“沙盒”进行测试,否则使用“实时”模式进行真实交易。  

4. You can also add a customized 'Thank You' message.  

4.您还可以添加自定义的“谢谢”消息。  

5. Save settings.  

5.保存设置。  

6. Add this [wds_donate] shortcode to the page/post where you want to take donation.  

6.将此[wds_donate]短代码添加到您要捐赠的页面/帖子中。  

7. It will add the donation form on that page/post.

7.它将在该页面/帖子上添加捐赠表格。

Checking Donation details:

检查捐赠详细信息:

  1. Click on 'Donations' menu option in WordPress admin.  

  1.单击WordPress管理员中的“捐赠”菜单选项。  

2. You will see a list of all the donations made on your site.  

2.您将在您的站点上看到所有捐赠的列表。  

3. Click on any donation to see its details.

3.单击任何捐赠以查看其详细信息。

下载地址
https://downloads.wordpress.org/plugin/authorizenet-simple-donations.zip
收起阅读 »

[wordpress插件] Authorize.net Payment Gateway For WooCommerceWooCommerce的Authorize.net付款网关

评分80描述Authorize.net Payment Gateway for WooCommerce WooCommerce的Authororize.net支付网关makes your website ready to use Authorize.net p...
继续阅读 »
评分
80
描述

Authorize.net Payment Gateway for WooCommerce

WooCommerce的Authororize.net支付网关

makes your website ready to use Authorize.net payment gateway to accept credit/debit cards on your woocommerce store in safe way.

使您的网站可以使用Authorize.net付款网关以安全的方式接受woocommerce商店上的信用卡/借记卡。

Authorize.net HMAC-SHA512 Compatible version.

Authorize.net HMAC-SHA512兼容版本。

Authorize.net is most widely used payment gateway to process payments online and accepts Visa, MasterCard, Discover and other variants of cards.

Authorize.net是使用最广泛的支付网关,用于在线处理付款,并接受Visa,MasterCard,Discover和其他变种卡。

Latest WooCommerce v3x Compatible

最新的WooCommerce v3x兼容

Authorize.net Akamai Update Compatible

Authorize.net Akamai更新兼容

Features

功能

Few features of this plugin:

此插件的一些功能:

    1. No SSL required
    2. 不需要SSL

    3. No PCI required
    4. 不需要PCI

    5. Easy to install and configure
    6. 易于安装和配置

    7. Option to configure success & failure message
    8. 用于配置成功和失败消息的选项

    9. Safe way to process credit cards and debit cards on WooCommerce using authorize.net SIM
    10. 使用authorize.net SIM卡在WooCommerce上处理信用卡和借记卡的安全方法

    11. This plugin use hosted solution provided by Authorize.net and payment is processed on secured servers of Authorize.net
    12. 此插件使用Authorize.net提供的托管解决方案,并在Authorize.net的安全服务器上处理付款

    13. Now with Option to use Authorize only mode.
    14. 现在具有使用“仅授权”模式的选项。

    Contact me for any Help you need to setup or need extra feature, just leave a comment

    与我联系以获取您需要设置或需要其他功能的任何帮助,只需发表评论

    Contact Our Dedicated Plugin Support

    联系我们的专用插件支持

    **Contact our plugin support and quick solutions at plugin support for WooCommerce Authorize.net Plugin

    **请联系我们的插件支持和插件支持快速解决方案,以获取 WooCommerce Authorize.net插件

    >

    >

    Follow on Twitter for plugin related updates and help

    在Twitter上关注与插件相关的更新和帮助

    Follow Ishan Verma

    关注Ishan Verma

    Arbitrary section

    任意部分

安装步骤

Easy steps to install the plugin:

易于安装插件的步骤:

    1. Upload authorizenet-woocom-gateway folder/directory to the /wp-content/plugins/ directory
    2. authorizenet-woocom-gateway 文件夹/目录上传到 / wp-content / plugins / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress.
    4. 通过WordPress中的“插件”菜单激活插件。

    5. Go to WooCommerce => Settings
    6. 转到WooCommerce =>设置

    7. On the “Settings” page, select “Payment Gateways” tab.
    8. 在“设置”页面上,选择“付款网关”标签。

    9. Under “Payment Gateways” you will find all the available gateways, select “Authorize.net” option
    10. 在“付款网关”下,您将找到所有可用的网关,选择“ Authorize.net”选项

    11. On this page you wil find option to configure the plugin for use with WooCommerce
    12. 在此页面上,您将找到配置插件以与WooCommerce一起使用的选项

    13. Enter the API details (Login ID, Transaction Key)
    14. 输入API详细信息(登录ID,交易密钥)

    15. Configurable elements:
    16. 可配置元素:

    Title: This will appear on checkout page as name for this payment gateway

    标题:这将作为该付款网关的名称显示在结帐页面上

    Description: This will appear on checkout page as description for this payment gateway

    说明:它将显示在结帐页面上作为此付款网关的说明

    Login ID: This is the Login ID provided by Authorize.net.

    登录ID:这是Authorize.net提供的登录ID。

    (Note: this not your User login ID for Merchant Account)

    (注意:这不是您的商家帐户的用户登录ID)

    Transaction Key: This is Transaction Key provided by Authorize.net

    交易密钥:这是Authorize.net提供的交易密钥

    Transaction Success Message: This message will appear upon successful transaction.

    交易成功消息:成功交易后将显示此消息。

    You can customize this message as per your need.

    您可以根据需要自定义此消息。

    Transaction Failed Message: This message will appear when transaction will get failed/declined at payment gateway.

    交易失败消息:当交易在支付网关失败/拒绝时,将显示此消息。

    API Mode: This option sets the mode of API.

    API模式:此选项设置API的模式。

    Test/Sandbox Mode is when you need to test the gateway using some test transations.

    测试/沙盒模式是您需要使用一些测试转换来测试网关的时候。

    Live Mode to be used to process real transaction and card will actually get charged for this.

    用于处理实际交易的实时模式,实际上会为此收取费用。

下载地址
https://downloads.wordpress.org/plugin/authorizenet-payment-gateway-for-woocommerce.5.27.zip
收起阅读 »

[wordpress插件] Authorized Store Seal授权商店印章

评分0描述Authorized Store is a retailer/brand vetting service.授权商店是零售商/品牌审查服务。We confirm the authenticity and legitimacy of a retailer...
继续阅读 »
评分
0
描述

Authorized Store is a retailer/brand vetting service.

授权商店是零售商/品牌审查服务。

We confirm the authenticity and legitimacy of a retailer/store by verifying their dealer status with the brands/manufacturers that they post and sell in their online stores.

我们通过与他们在在线商店中发布和销售的品牌/制造商核实其经销商地位,来确认零售商/商店的真实性和合法性。

The Authorized Store Retailer Seal of Integrity can be used as an extension/plugin or via direct seal code placement.

授权商店零售商诚信印章可用作扩展/插件或通过直接印章代码放置。

Once installed, the seal and certificate verifies that the retailer/store has been vetted and approved for all brands carried, as “Authorized” by brands/manufacturers.

安装后,印章和证书会验证零售商/商店是否已针对所有所携带的品牌进行了审查和批准,并获得了品牌/制造商的“授权”。

The Authorized Store seal displays retailer/store status as “Active”, including name and date.

“授权商店”印章将零售商/商店状态显示为“有效”,包括名称和日期。

When the seal is clicked, a certificate pops up displaying approval process, approval requirements and consumer assurances.

单击印章后,将弹出一个证书,显示批准过程,批准要求和消费者保证。

A link to the Retailer/Store Profile, located at Authorized Store provides consumers with a complete retailer/store provided description and listed credentials.

位于授权商店的“零售商/商店资料”链接为消费者提供了完整的零售商/商店提供的描述和列出的凭证。

The Seal is for retailer/store use in the United States or Canada, only.

此印章仅在美国或加拿大供零售商/商店使用。

Why should your store have an Authorized Store Seal of Integrity and why is it different?

为什么您的商店应具有授权的商店诚信印章,为什么与众不同?

    • Seal, Certificate and Profile identifies your e-store as Authorized for all brands.
    • 印章,证书和配置文件将您的电子商店标识为所有品牌的授权商店。

    • Get more sales/conversions through increased consumer confidence.
    • 通过增强消费者的信心获得更多销售/转化。

    • Measure success with Certificate and Profile impressions via retailer analytics.
    • 通过零售商分析通过证书和个人资料印象来衡量成功。

Most certification seals provide information related to the safe use and/or credibility of a website.

大多数认证印章提供有关网站安全使用和/或信誉的信息。

These include seals that let consumers know if a site is secure from viruses and malware, seals that signify that an online store checkout process is secured by HTTPS SSL and seals that track/post consumer reviewsatings.

其中包括让消费者知道网站是否免受病毒和恶意软件侵害的印章,表示在线商店结帐流程受HTTPS SSL保护的印章以及跟踪/发布消费者评论/评分的印章。

Oddly enough, non of these seals inform consumers that they are, most importantly, buying authentic products from an authorized source.

奇怪的是,这些印章中没有一个能告知消费者,最重要的是,它们是从授权来源购买地道的产品。

“Gray Market” or “ Diverted” products are sold through numerous distribution channels.

“灰色市场”或“转移”产品通过众多分销渠道出售。

These channels include e-commerce stores/websites and/or well recognized sites like Amazon.

这些渠道包括电子商务商店/网站和/或知名网站,如亚马逊。

It’s almost impossible for a consumer to identify a legitimate source.

消费者几乎不可能识别合法来源。

Not anymore!

不再!

An Authorized Store seal and certificate ensures consumers that they are buying authentic products from a vetted, manufacturer authorized retailer/store.

授权商店的印章和证书可确保消费者从经过审查的,制造商授权的零售商/商店购买正品。

Authorized Store Site

授权商店站点

安装步骤

    1. Upload the plugin folder to the /wp-content/plugins/ directory
    2. 将插件文件夹上传到 / wp-content / plugins / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

    5. Configure plugin.
    6. 配置插件。

下载地址
https://downloads.wordpress.org/plugin/authorized-store-seal.zip
收起阅读 »

[wordpress插件] Ads.txt PublisherAds.txt发布者

评分100描述ABOUT ADS.TXT 关于ADS.TXT The IAB Tech Lab recently introduced the Ads.txt initiative (official website) to increase transpa...
继续阅读 »
评分
100
描述

ABOUT ADS.TXT

关于ADS.TXT

The IAB Tech Lab recently introduced the Ads.txt initiative (official website) to increase transparency in the programmatic advertising ecosystem.

IAB技术实验室最近推出了Ads.txt计划(官方网站),以提高程序化广告生态系统的透明度。

The “Ads” in Ads.txt stands for Authorized Digital Sellers, and it is a relative simple method for publishers to declare who is authorized to sell their digital inventory.

Ads.txt中的“广告”代表授权数字卖家,这是发布商声明谁有权出售其数字广告资源的相对简单的方法。

In short, the Ads.txt file contains the publisher’s out loud references for his authorized sellers.

简而言之,Ads.txt文件包含发布商对其授权卖家的大量引用。

The process is pretty straightforward.

该过程非常简单。

The publisher puts a text file in his web server on the root level of the domain (publishersdomain.com/ads.txt), it must be called ads.txt, and it must have its Read permissions set to “World”.

发布者将文本文件放在域根目录(publishersdomain.com/ads.txt)的Web服务器中,该文件必须称为ads.txt,并且其读取权限必须设置为“世界”。

The file must obviously follow the IAB format (see below).

该文件显然必须遵循IAB格式(请参见下文)。

This file should list all of the companies that are authorized to sell the publishers’ inventory.

此文件应列出所有有权出售发布者广告资源的公司。

Similarly, programmatic platforms will integrate ads.txt files to confirm which publishers’ inventory they are authorized to sell.

同样,程序化平台将集成ads.txt文件,以确认他们有权出售哪些发布者的库存。

This will allows buyers to check the validity of the inventory they purchase.

这将使买家可以检查他们购买的库存的有效性。

ABOUT ADS.TXT PUBLISHER

关于ADS.TXT发布商

Ads.tx Publisher was created by Brightcom, a leading media house and a strong supporter of the Ads.txt Initiative to allow publishers to easily edit, validate and upload their ads.txt files within WordPress without any need for engineering resources and

Ads.tx Publisher由Brightcom创建,Brightcom是领先的媒体公司和Ads.txt Initiative的大力支持者,它使发布者可以轻松地在WordPress中编辑,验证和上传其ads.txt文件,而无需任何工程资源和

with the same ease as any other media asset.

与其他任何媒体资产一样容易。

TECHNICAL NOTES

技术说明

    • Requires PHP 5.3+.
    • 需要PHP 5.3 +。

    • Requires WordPress 4.9+.

    • 需要WordPress 4.9+。

      Older versions of WordPress will not display any syntax highlighting and may break JavaScript and/or be unable to localize the plugin.

    • 较旧的WordPress版本不会显示任何语法突出显示,并且可能会破坏JavaScript和/或无法对插件进行本地化。

    • Rewrites need to be enabled.

    • 需要启用重写。

      Without rewrites, WordPress cannot know to supply /ads.txt when requested.

    • 如果不进行重写,WordPress将无法在请求时提供/ads.txt。

    • Your site URL must not contain a path (e.g. https://example.com/site/ or path-based multisite installs).

    • 您的网站网址不得包含路径(例如https://example.com/site/或基于路径的多站点安装)。

      While the plugin will appear to function in the admin, it will not display the contents at https://example.com/site/ads.txt.

      虽然该插件似乎可以在admin中运行,但不会显示https://example.com/site/ads.txt上的内容。

      This is because the plugin follows the IAB spec, which requires that the ads.txt file be located at the root of a domain or subdomain.

    • 这是因为该插件遵循IAB规范,该规范要求ads.txt文件位于域或子域的根目录。

安装步骤

This section describes how to install the plugin and get it working.

本节介绍如何安装插件并使其正常工作。

    1. Upload ads-txt-publisher.php to the /wp-content/plugins/ directory
    2. ads-txt-publisher.php 上传到 / wp-content / plugins / 目录

    3. Activate the plugin through the ‘Plugins’ menu in WordPress
    4. 通过WordPress中的“插件”菜单激活插件

下载地址
https://downloads.wordpress.org/plugin/authorized-sellers-manager.zip
收起阅读 »

[wordpress插件] Authorized Digital Sellers TXT授权数字卖家TXT

评分0描述This is a simple plugin that provides you with the option of making a Authorized Digital Sellers -file (ads.txt) that is acce...
继续阅读 »
评分
0
描述

This is a simple plugin that provides you with the option of making a Authorized Digital Sellers -file (ads.txt) that is accesable through your site.com/ads.txt.

这是一个简单的插件,可让您选择制作可通过site.com/ads.txt访问的“授权数字卖家”文件(ads.txt)。

Links

链接

安装步骤

Install like any other plugin, directly from your plugins page.

与其他任何插件一样,直接从您的插件页面进行安装。

After installation you’ll find the plugin settings at Settings->ADS.txt.

安装后,您将在Settings-> ADS.txt中找到插件设置。

下载地址
https://downloads.wordpress.org/plugin/authorized-digital-sellers-txt.1.1.zip
收起阅读 »

[wordpress插件] Authorize IP Address授权IP地址

评分0描述Authorize IP Address provides enhanced security by requiring users to whitelist their IP address.通过要求用户将其IP地址列入白名单,对IP地址进行授权可...
继续阅读 »
评分
0
描述

Authorize IP Address provides enhanced security by requiring users to whitelist their IP address.

通过要求用户将其IP地址列入白名单,对IP地址进行授权可以增强安全性。

If the IP address is not recognized, the plugin will send an email to the user with a link that contains a one-time key.

如果无法识别IP地址,则插件将向用户发送电子邮件,其中包含包含一次性密钥的链接。

Optionally the blog administrator can also be notified.

(可选)还可以通知博客管理员。

If a user logs in from a known IP address no further action is required.

如果用户从已知IP地址登录,则无需采取进一步措施。

What does this Plugin do?

此插件有什么作用?

    1. Prevent from sharing login details.

    2. 防止共享登录详细信息。

      Users can login from only approved ip address from the user via email.

    3. 用户只能通过电子邮件从用户的批准IP地址登录。

    4. Each time a user logs in, the plugin will compare their existing IP address to the last seen IP address.
    5. 每次用户登录时,插件都会将其现有IP地址与上次看到的IP地址进行比较。

    6. User First Time login IP address will be automaticly add to whitelist.
    7. 用户首次登录IP地址将自动添加到白名单中。

    8. If the IP does not match or no IP addresses have been whitelisted, an email will be sent to the users registered email address.
    9. 如果IP地址不匹配或没有IP地址被列入白名单,则会向用户注册的电子邮件地址发送一封电子邮件。

    10. The user must login to their email and click the included link, which contains the one-time password.
    11. 用户必须登录其电子邮件并单击包含的链接,其中包含一次性密码。

    12. The plugin can be configured to also send an email to the blog administrator as well as the user.
    13. 可以将该插件配置为还向博客管理员和用户发送电子邮件。

安装步骤

This Plugin works without you having to make any changes.

此插件无需更改就可以使用。

    1. Search for the plugin using the WordPress Plugin Installer OR download and unzip the directory into your plugins directory.
    2. 使用WordPress插件安装程序搜索插件,或下载目录并将其解压缩到插件目录中。

    3. Activate the Plugin through the ‘Plugins’ menu in WordPress – Upon activation, your current IP will be automatically whitelisted.
    4. 通过WordPress中的“插件”菜单激活插件-激活后,您当前的IP将自动列入白名单。

    5. Optionally enable notifications of Blog Admin.
    6. (可选)启用Blog Admin的通知。

    7. Enjoy the enhanced security!
    8. 享受增强的安全性!

下载地址
https://downloads.wordpress.org/plugin/authorize-ip-address.zip
收起阅读 »

[wordpress插件] Donation with credit card用信用卡捐款

评分0描述☛ This plugin allow you to accept donation (payments) using Credit card Authorize.net payment gateway.☛此插件可让您使用信用卡Authorize.n...
继续阅读 »
评分
0
描述

☛ This plugin allow you to accept donation (payments) using Credit card Authorize.net payment gateway.

☛此插件可让您使用信用卡Authorize.net付款网关接受捐赠(付款)。

It’s simply add donation amount that user will fill, when user submit the form it is asking for payment details after fill up the details he will get a confirmation message and also receive a order details mail.

只需添加用户将填写的捐款金额,当用户提交表单时,在填写详细信息后索要付款细节,他将收到确认消息并收到订单明细邮件。

Admin can also see all transaction details with payment status by going to “Donation with creditcard”.

管理员还可以转到“用信用卡捐款”来查看所有带有付款状态的交易明细。

All transaction history will stored in databse and also listing in backend.

所有交易记录都将存储在数据库中,并在后端列出。

安装步骤

    1. Download Donation with creditcard plugin.
    2. 使用信用卡插件下载捐赠。

    3. Upload this all plugin files in “wp-content/plugins/” directory.
    4. 将此所有插件文件上传到“ wp-content / plugins /”目录中。

    5. Install and activate the plugin from WordPress admin panel.
    6. 从WordPress管理面板安装并激活插件。

    7. Select “Authorise Settings” from menu list and update authorize.net configuration values provided by authorize.net team.
    8. 从菜单列表中选择“授权设置”,并更新authorize.net团队提供的authorize.net配置值。

    9. Create a new post or page with and put shortcode [accd] there.
    10. 使用创建新帖子或页面,并在其中添加简码[accd]。

    11. Your WordPress Donation plugin is now setup.

    12. 您的WordPress捐赠插件现已设置。

      You can now accept donation payment through Credit card.

    13. 您现在可以通过信用卡接受捐款。

    Features

    功能

    ✅ User can able to put donation amount
      

    ✅用户可以投入捐款金额
      

    ✅ You can take shortcode and put any post or pages as your wish
      

    ✅您可以选择简码,并根据需要放置任何帖子或页面
      

    ✅ Backend authorize.net configuration
      

    ✅后端authorize.net配置
      

    ✅ Backend order listing

    ✅后端订单列表

下载地址
https://downloads.wordpress.org/plugin/authorize-donation.zip
收起阅读 »
<<<7286728772887289729072917292>>>