Plugin Directory

Changeset 2780939


Ignore:
Timestamp:
09/06/2022 08:14:28 PM (4 years ago)
Author:
petco
Message:

bug fixes

Location:
piq-quote
Files:
23 added
10 edited

Legend:

Unmodified
Added
Removed
  • piq-quote/trunk/README.md

    r2769373 r2780939  
    3030### Publish
    3131
    32 _TODO: Add instructions to commit to WordPress SVN_
     32After making appropriate changes copy everything over into the folder
     33``wordpress-piq-plugin/piq-wordpress/trunk``
     34then make a copy of that folder and drop it into
     35``wordpress-piq-plugin/piq-wordpress/tags/xxx``
     36where xxx = your new version number
     37
     38Publishing is done by committing code to the SVN repo using petco's credentials.
     39username: petco
     40password: look it up in 1pass
     41
     42SVN repo: https://plugins.svn.wordpress.org/piq-quote
    3343
    3444
  • piq-quote/trunk/build/block.json

    r2769373 r2780939  
    33  "apiVersion": 2,
    44  "name": "create-block/piq-quote",
    5   "version": "1.0.0",
     5  "version": "1.0.1",
    66  "title": "Pet Insurance Quotes",
    77  "category": "embed",
  • piq-quote/trunk/package.json

    r2769373 r2780939  
    11{
    22    "name": "piq-quote",
    3     "version": "1.0.0",
     3    "version": "1.0.1",
    44    "description": "This plug-in inserts a quote form on your page that will launch a results page that lists all of the available insurance providers' offerings.",
    55    "author": "Qstart Labs",
  • piq-quote/trunk/piq-quote.php

    r2769373 r2780939  
    33 * Plugin Name:       PIQ-Quote
    44 * Description:       This plug-in inserts a quote form on your page that will launch a results page that lists all of the available insurance providers' offerings.
    5  * Version:           1.0.0
     5 * Version:           1.0.1
    66 * Requires at least: 5.5
    77 * Requires PHP:      7.0
  • piq-quote/trunk/readme.txt

    r2769401 r2780939  
    44Requires at least: 5.5
    55Tested up to: 6.0
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    4242* Plugin released.
    4343
     44= 1.0.1 =
     45* Bug fixes
     46
    4447== Upgrade Notice ==
    4548
     
    5558* Privacy Policy can be found at https://www.petinsurancequotes.com/privacy-policy/
    5659
    57 * Terms of Use can be found athttps://www.petinsurancequotes.com/terms-of-use/
     60* Terms of Use can be found at https://www.petinsurancequotes.com/terms-of-use/
  • piq-quote/trunk/src/block.json

    r2769373 r2780939  
    33    "apiVersion": 2,
    44    "name": "create-block/piq-quote",
    5     "version": "1.0.0",
     5    "version": "1.0.1",
    66    "title": "Pet Insurance Quotes",
    77    "category": "embed",
  • piq-quote/trunk/src/edit.js

    r2769373 r2780939  
    3030    return (
    3131        <div { ...blockProps }>
    32             <iframe class='petco-iframe' src='http://localhost:3000/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>
     32            <iframe class='petco-iframe' src='http://petinsurancequotes.com/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>
    3333        </div>
    3434    );
  • piq-quote/trunk/src/save.js

    r2769373 r2780939  
    2222    return (
    2323        <div { ...blockProps }>
    24             <iframe class='petco-iframe' src='http://localhost:3000/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>
     24            <iframe class='petco-iframe' src='http://petinsurancequotes.com/quote/embedded-form' title='Pet Insurance Quotes' frameBorder='0'></iframe>
    2525        </div>
    2626    );
Note: See TracChangeset for help on using the changeset viewer.