Coder Social home page Coder Social logo

Field type error. about seo HOT 3 OPEN

bobdenotter avatar bobdenotter commented on May 18, 2024
Field type error.

from seo.

Comments (3)

jasperjorna avatar jasperjorna commented on May 18, 2024

Can you post your contenttypes.yml?

from seo.

jnn-tlr avatar jnn-tlr commented on May 18, 2024

See below. The seo field is at the very bottom.

member:
    name: Member
    singular_name: Member
    viewless: true
    fields:
        first_name:
            type: text
            label: First Name
            group: Info
        last_name:
            type: text
            label: Last Name
        company:
            type: text
            label: Company
        address:
            type: text
        suite_number:
            type: text
            label: Suite / Apt #
        city:
            type: text
        state:
            type: select
            values: [AL,AK,AZ,AR,CA,CO,CT,DE,FL,GA,HI,ID,IL,IN,IA,KS,KY,LA,ME,MD,MA,MI,MN,MS,MO,MT,NS,NV,NH,NJ,NM,NY,NC,ND,OH,OK,OR,PA,RI,SC,SD,TN,TX,UT,VT,VA,WA,WV,WI,WY]
        zipcode:
            type: text
            label: Zip Code
        phone:
            type: text
            label: Phone Number
        email:
            type: text
            label: E-Mail
        team_name:
            type: text
            label: Team Name
            group: Team
        team_two_name:
            type: text
            label: Team Two Name
            group: Team
        teamplayer:
            type: repeater
            label: Team Player
            group: Team Players 1
            fields:
                name:
                    label: Name
                    type: text
                mail:
                    type: text
                    label: Mail
                phone:
                    type: text
                    label: Phone
                veteran:
                    type: checkbox
                    label: Is Veteran
                rentgolf:
                    type: checkbox
                    label: Rent Golf Club
        teamplayertwo:
            type: repeater
            label: Team Player
            group: Team Players 2
            fields:
                name:
                    label: Name
                    type: text
                mail:
                    type: text
                    label: Mail
                phone:
                    type: text
                    label: Phone
                veteran:
                    type: checkbox
                    label: Is Veteran
                rentgolf:
                    type: checkbox
                    label: Rent Golf Club
        extraattendees:
            type: repeater
            group: Extra Attendees
            prefix: "<p>Extra Attendees</p>"
            fields:
                name:
                    type: text
        paymenttype:
            type: select
            label: Payment Type
            values: [CHECK, CARD]
            group: Payment
        paymentstatus:
            type: select
            label: Payment Status
            values: [PENDING, PAYED]
        stripeid:
            type: text
            label: Stripe ID
    relations:
        sponsortype:
            label: Sponsor Type
            multiple: true
        hole:
            label: Holes
            multiple: true

sponsortype:
    name: Sponsor Types
    singular_name: Sponsor Type
    fields:
        name:
            type: text
            group: Info
        available:
            type: integer
            label: Avail Number
        fieldtype:
            type: select
            values: [CHECKBOX, RADIO]
            label: Field Type
        fieldgroup:
            type: text
            label: Field Group
        fieldname:
            type: text
            label: Field Name
        fieldautoactivate:
            type: checkbox
            label: Field Auto Activate when player hit
        fieldmaximumplayer:
            type: integer
            label: Field Maximum Player
        fieldminimumplayer:
            type: integer
            label: Field Minimum Player
        fieldcalculatebyplayer:
            type: checkbox
            label: Field Calculate By Player
        price:
            type: float
        sponsorholes:
            label: Sponsor Holes
            type: checkbox
        maximumholesponsor:
            label: Maximum Holes to Sponsor
            type: integer
        requireextranames:
            label: Require Extra Names
            type: checkbox
        requireextrateam:
            label: Require Extra Team
            type: checkbox
        description:
            label: Description
            type: html

hole:
    name: Holes
    singular_name: Hole
    viewless: false
    fields:
        title:
            type: text
        holestatus:
            type: select
            values: [AVAIL, TAKEN]
    relations:
        member:
            label: Hole Member
            multiple: false

schedule:
    name: Schedule
    singular_name: Schedule
    viewless: false
    fields:
        title:
            type: text
        hours:
            type: text
        descriptiontitle:
            type: text
            label: Description Title
        description:
            type: html
        ordernum:
            type: integer
            label: Order Number

sponsors:
    name: Sponsors
    singular_name: Sponsor
    viewless: false
    fields:
        name:
            type: text
        image:
            type: image
        sponsorurl:
            type: text
            label: Sponsor Website Link

faq:
    name: FAQ
    singular_name: FAQ
    viewless: false
    fields:
        question:
            type: text
        answer:
            type: textarea           

home:
    name: Home
    singular_name: Home
    record_template: index.twig
    fields:
        main_title:
            type: text
            label: Main Title
            group: Top Block
        sub_title:
            type: text
            label: Sub Title
        column1_text:
            type: textarea
            label: Column 1 Text
        column2_text:
            type: textarea
            label: Column 2 Text
        register_text:
            type: html
            label: Register Text

        about_event:
            type: html
            label: About Our Event
            group: About Our Event Block
        numbers:
            type: repeater
            limit: 6
            prefix: "<p>These are the right block numbers</p>"
            fields:
                number:
                    type: integer
                description:
                    type: text
        video:
            type: video
            group: Video Block
        video_title:
            type: text
            label: Video Title
        video_text:
            type: textarea
            label: Video Text
        event_time:
            type: datetime
            label: Event Date and Time
            group: Countdown Block
        event_address:
            type: geolocation
            label: Address
            group: Address Block
        event_contact:
            type: text
            label: Contact Number
        event_mail:
            type: text
            label: Contact E-Mail
            pattern: email
        social:
            type: repeater
            limit: 5
            prefix: "<p>Use this to add social media icons</p>"
            fields:
                icon:
                    type: text
                    prefix: "<p>Insert a FontAwesome icon class</p>"
                link:
                    type: text                       
        seo:
            type: seo
            group: "SEO settings"

from seo.

jasperjorna avatar jasperjorna commented on May 18, 2024

Can you verify the extension has been installed correctly? Try a reinstall to be sure.

from seo.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.