Changeset 2951503
- Timestamp:
- 08/10/2023 12:41:58 PM (3 years ago)
- Location:
- wallsio/trunk
- Files:
-
- 3 edited
-
block/src/block/wallsio.js (modified) (1 diff)
-
readme.txt (modified) (5 diffs)
-
wallsio.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wallsio/trunk/block/src/block/wallsio.js
r2026664 r2951503 10 10 import "./editor.scss"; 11 11 import { toWallBaseUrl } from "../../../shared/WallUrl"; 12 import icon from ". /../logo";12 import icon from "../logo"; 13 13 import createWallBlock from "./createWallBlock"; 14 14 import WallsioEdit from "./WallsioEdit"; -
wallsio/trunk/readme.txt
r2816462 r2951503 5 5 Tags: social media aggregator, social media embed, social media feed, instagram feed, twitter feed, facebook feed, social wall, social media wall 6 6 Contributors: rivalitaet, patrickmladensich 7 Tested up to: 6. 17 Tested up to: 6.3 8 8 Stable tag: trunk 9 9 License: GPL v3 or later … … 20 20 With Walls.io you can collect posts, photos and videos from [multiple social media networks](https://walls.io/features/social-media-aggregator) in one place and display them in a customizable social media feed that you can easily embed into your website. Unlike other social walls, Walls.io goes beyond social media also giving you the possibility to let visitors upload content directly to the wall using [Direct Posts](https://walls.io/features/direct-posts). 21 21 22 To use this plugin you first need to get a free social wall account on [walls.io](https://walls.io), where you can create and customize a social media feed and add sources to it. The Free plan supports the most popular social platforms – Facebook, Twitter, Instagram, and YouTube – and allows you to add one source for each platform.22 To use this plugin you first need to get a social wall account on [walls.io](https://walls.io), where you can create and customize a social media feed and add sources to it. 23 23 24 24 The Walls.io WordPress plugin makes it very easy for you to add your social media feed to WordPress. No programming skills are needed. It only takes a minute. … … 26 26 = Walls.io Social Wall = 27 27 28 * Go to [walls.io](https://walls.io), create a social feed for free, add sources, customize the design and set up post moderation.28 * Go to [walls.io](https://walls.io), start a trial, add sources, customize the design and set up post moderation. 29 29 * Go and grab the link to your wall by clicking on its URL in the upper left corner of the Settings page. 30 30 … … 69 69 == Changelog == 70 70 71 = 3.0.10 = 72 * Update plugin description 73 71 74 = 3.0.9 = 72 75 * Fix classic editor buttons to display custom popover … … 105 108 = 1.0.0 = 106 109 * Initial, simple version 107 108 109 == Frequently Asked Questions ==110 111 = Is this plugin free? =112 113 Yes. this plugin is free forever.114 115 You only need this plugin and a free Walls.io account to display a social feed from multiple social networks on your website. We also offer paid plans including more platforms, advanced moderation, even more custom design possibilities, but we have an account that’s free and will be free forever.116 117 Check this out to see what features are included in the free plan and what is available in the paid plans: [walls.io/features-and-pricing](https://walls.io/features-and-pricing)118 119 = Why do I need social media feed plugin? =120 121 A social feed will help you keep your website fresh, increase engagement between you and your users and boost conversions by convincing your visitors with great user reviews and content. User-generated content gives consumers confidence in their buying decisions and a majority find UGC far more interesting than content created by a brand.122 123 = Is any coding required? =124 125 You don’t need to do any coding to setup a social media feed on your website. You can do it all with the click of a button. -
wallsio/trunk/wallsio.php
r2450431 r2951503 5 5 Plugin URI: https://wordpress.org/plugins/wallsio 6 6 Description: Embed Walls.io social walls into WordPress posts with just one click! 7 Version: 3.0. 97 Version: 3.0.10 8 8 Author: Walls.io 9 9 Author URI: https://walls.io … … 13 13 14 14 15 define( 'WALLSIO_PLUGIN_VERSION', '3.0. 9' );15 define( 'WALLSIO_PLUGIN_VERSION', '3.0.10' ); 16 16 17 17 function wallsio_asset_version() { … … 19 19 } 20 20 21 require_once( plugin_dir_path( __FILE__ ) . 'oembed/index.php');22 require_once( plugin_dir_path( __FILE__ ) . 'classic/php/index.php');23 require_once( plugin_dir_path( __FILE__ ) . 'block/src/init.php');21 require_once(plugin_dir_path(__FILE__) . 'oembed/index.php'); 22 require_once(plugin_dir_path(__FILE__) . 'classic/php/index.php'); 23 require_once(plugin_dir_path(__FILE__) . 'block/src/init.php');
Note: See TracChangeset
for help on using the changeset viewer.