Plugin Directory

Changeset 2439867


Ignore:
Timestamp:
12/15/2020 01:57:16 PM (5 years ago)
Author:
remylmnr
Message:

Fix error and add icon

Location:
abyssale
Files:
4 added
4 edited

Legend:

Unmodified
Added
Removed
  • abyssale/tags/1.0/README.txt

    r2438845 r2439867  
    1212== How to use it? ==
    1313
    14     Install it and follow the instructions in the Abyssale admin settings panel.
    15     Once you have correctly configured your Abyssale integration you will be able to use it in the Gutenberg editor.
    16     Click on the "Generate" button in the right panel to display your image.
    17     If You want to use it as a featured image click on the "Feature this image" button.
    18     Then click on post "Publish", your image will appear as the featured image.
     14Install it and follow the instructions in the Abyssale admin settings panel.
     15Once you have correctly configured your Abyssale integration you will be able to use it in the Gutenberg editor.
     16Click on the "Generate" button in the right panel to display your image.
     17If You want to use it as a featured image click on the "Feature this image" button.
     18Then click on post "Publish", your image will appear as the featured image.
    1919
    2020== Need help? ==
    2121
    22     A detailed blog post about the plugin will be available soon on https://blog.abyssale.com/
     22A detailed blog post about the plugin will be available soon on https://blog.abyssale.com/
    2323
    2424== More information about Abyssale? ==
    2525
    26     Please check https://www.abyssale.com/
     26Please check https://www.abyssale.com/
    2727
    2828== License ==
    2929
    30     abyssale plugin is licensed under the GNU General Public License (GPL) version 3. https://www.gnu.org/licenses/gpl-3.0.html
     30abyssale plugin is licensed under the GNU General Public License (GPL) version 3. https://www.gnu.org/licenses/gpl-3.0.html
    3131
    3232== Support ==
    3333
    34     If you have trouble installing the plugin, please reach us at: support[at]abyssale.com
     34If you have trouble installing the plugin, please reach us at: support[at]abyssale.com
  • abyssale/tags/1.0/abyssale.php

    r2438888 r2439867  
    332332    public static function verifyNameExistsInElements($value, $templateElements)
    333333    {
    334         if ($value == "none") {
     334        if ($value == "none" || $value == "") {
    335335            return true;
    336336        }
  • abyssale/trunk/README.txt

    r2438845 r2439867  
    1212== How to use it? ==
    1313
    14     Install it and follow the instructions in the Abyssale admin settings panel.
    15     Once you have correctly configured your Abyssale integration you will be able to use it in the Gutenberg editor.
    16     Click on the "Generate" button in the right panel to display your image.
    17     If You want to use it as a featured image click on the "Feature this image" button.
    18     Then click on post "Publish", your image will appear as the featured image.
     14Install it and follow the instructions in the Abyssale admin settings panel.
     15Once you have correctly configured your Abyssale integration you will be able to use it in the Gutenberg editor.
     16Click on the "Generate" button in the right panel to display your image.
     17If You want to use it as a featured image click on the "Feature this image" button.
     18Then click on post "Publish", your image will appear as the featured image.
    1919
    2020== Need help? ==
    2121
    22     A detailed blog post about the plugin will be available soon on https://blog.abyssale.com/
     22A detailed blog post about the plugin will be available soon on https://blog.abyssale.com/
    2323
    2424== More information about Abyssale? ==
    2525
    26     Please check https://www.abyssale.com/
     26Please check https://www.abyssale.com/
    2727
    2828== License ==
    2929
    30     abyssale plugin is licensed under the GNU General Public License (GPL) version 3. https://www.gnu.org/licenses/gpl-3.0.html
     30abyssale plugin is licensed under the GNU General Public License (GPL) version 3. https://www.gnu.org/licenses/gpl-3.0.html
    3131
    3232== Support ==
    3333
    34     If you have trouble installing the plugin, please reach us at: support[at]abyssale.com
     34If you have trouble installing the plugin, please reach us at: support[at]abyssale.com
  • abyssale/trunk/abyssale.php

    r2438888 r2439867  
    332332    public static function verifyNameExistsInElements($value, $templateElements)
    333333    {
    334         if ($value == "none") {
     334        if ($value == "none" || $value == "") {
    335335            return true;
    336336        }
Note: See TracChangeset for help on using the changeset viewer.