Log in to your 2Checkout merchant account Navigate to the Webhooks & API menu Find a Merchant Code and Secret Word And put to the plugin settings (Pay for Action tab): 4. Then add an Endpoint to get updates from 2Checkout about the order status update And assign triggers Order […]
Pay for Action :: payment gateways
How to set up Stripe gateway. How to set up 2Checkout gateway. To set up a PayPal gateway, just put your Paypal account email:
Pay for Action :: how to set up paid voting for the contest
To set up the paid votes please: Purchase and install the Pay For Action plugin Navigate to the Pay For Action Settings Find PFA :: paid votes tabAnd set up Paid Voting settings – does the Free votes allows, paid plans, etc. Also, you could disable Paid votes per contest […]
How to add custom CSS styles
Please naviagate to the Photo contests => Settings => General tab, Custom CSS section
Using Customizer to Customize Skins Palette
To customize colors, naviagte to the Customizer: Check your Skin: And modify it palette: For example, set a But color to red: Then Save your changes.
How to add Country picker to the Upload form
If you are too lazy to add all Countries options, you could use that idea with dynamic list: Create the new field “Dropdown” with a key “country” Then add the following JS code to the Settings => Custom JS, “For Upload page” option The code: var country_list = [“Afghanistan”,”Albania”,”Algeria”,”Andorra”,”Angola”,”Anguilla”,”Antigua & […]
How to hide the sharing icons
To hide the sharing icons in the List & Single view: To hide the sharing ULR in the Voting popup use a following CSS: #modal-widget .sw-link { display: none; }
Dynamic form fields
Here is a simple way to show a few form fields based on Checkbox: 1. Add your fields, name them like group_name_1, group_phone_1: https://snipboard.io/IBOcMn.jpg 2. Hide them Via CSS (will hide all fields named group_*) [class*=”fv-field-key–group_”] { display: none; } 3. Oo click to the checkbox – show them via […]
How to add custom fields to the Export
To add custom fields to the Votes list CSV you could use the following filter (since version 2.3.43): add_filter(‘fv/export/votes/csv_data’, function($csv_data) { // Add user_login field $csv_data[‘heading’][] = ‘user_login’; $csv_data[‘rows’][] = ‘users_user_login’; global $wpdb; $csv_data[‘queryModel’]->leftJoin( $wpdb->users, “users”, “`users`.`ID` = `t`.`user_id`”, [‘user_login’] ); return $csv_data; });
How to display Login/Registration modal instead “You have to login/register popup message”
The steps are very simple: Install these plugin: https://wordpress.org/plugins/ajax-login-and-registration-modal-popup/ Make sure that you have these classes to trigger the modal on click on the “Login” or “Register” links Done:

