Compare commits

..

No commits in common. "059cc94063897d22431d5ea7cf206e0560108e57" and "49785e611c5731af91d3eeb3059e78c1b3bf019b" have entirely different histories.

3 changed files with 2 additions and 12 deletions

View File

@ -1,12 +1,3 @@
# fourth-wall-embed-wp
A WordPress Plugin to embed a fourth wall embed.
### How to use the plugin
* Download the latest release from [releases](https://repo.anhonesthost.net/CyberCoveLLC/fourth-wall-embed-wp/releases)
* Upload the Plugin to WordPress
* In the WordPress Dashboard, Navigate to the Fourthwall settings page, and paste your store url.
* On the page you want have your store displayed, add the shortcode ```[fourthwall]```
This is an early release of the plugin, and if you can think of things that could be improved or find any bugs, please open an issue on the repository.
A WordPress Plugin to embed a fourth wall embed

View File

@ -64,7 +64,6 @@ class fourthwall_settings {
submit_button();
echo ' </form>' . "\n";
echo ' <div><p>To use the fourthwall Embed, use the shortcode [fourthwall]</p></div>';
echo '</div>' . "\n";
}

View File

@ -48,7 +48,7 @@ function fwembed_parse_html($url = null) {
function fwembed_shortcode( $atts ) {
$options = get_option( 'fourthwall_settings_name' );
$value = isset( $options['fourth_url'] ) ? $options['fourth_url'] : 'https://fourthwall.com';
$value = isset( $options['fourth_url'] ) ? $options['fourth_url'] : 'https://latinosagainstspookyshit-shop.fourthwall.com';
$store_html = fwembed_parse_html($value);
$store_render = '<div class="fw-store-parent">' . PHP_EOL . $store_html . PHP_EOL . '</div>';
return $store_render;