Forum Replies Created

Viewing 15 replies - 16 through 30 (of 47 total)
  • Thread Starter chelminski

    (@chelminski)

    Thank you very much! Now everything looks great!

    Thread Starter chelminski

    (@chelminski)

    For example, I used the WordPress user table. I would like the table to show only one record of the user “chelminski”. I included the information in the link. Unfortunately, an error occurs.

    What else can I do to make this work? I care a lot ??

    Thread Starter chelminski

    (@chelminski)

    The site requires login (LOGIN PAGE) to view non-cached content.

    Page link: FORMINATOR TEST PAGE LINK ????

    Login: [redacted]

    Pass: [redacted]

    Don’t judge the appearance of the site, I’m a non-tech person ??

    • This reply was modified 11 months, 1 week ago by Dion Hulse. Reason: Credentials removed; Please don't share details publicly
    Thread Starter chelminski

    (@chelminski)

    The point is that I would like the form to fill the full section height (100%), but I don’t know how to force it. I’m using elementor and I have auto-fit content in one column and the other column is smaller and I would like the column on the right to be at 100% height.

    Can I add some css to the forminator to make the column as long as possible?

    Thread Starter chelminski

    (@chelminski)

    Yes, this is a member directory search. How can I fix it? Can I add a snippet with “!important”? How to write it so that it returns to normal? Do you need access to this page?

    Thread Starter chelminski

    (@chelminski)

    Hi

    I just noticed that this function already exists.

    It’s called a hidden field and it does what I wrote above. You can use variables from the RUL address there, it is not displayed in the form. My bad.

    Thread Starter chelminski

    (@chelminski)

    Thank you very much! It works! ????

    Is it possible to completely hide a given field with a snippet? (So that it works for my case, so that it doesn’t return an empty value).

    Thread Starter chelminski

    (@chelminski)

    Thx u so much <3

    Thread Starter chelminski

    (@chelminski)

    Hi ??
    NO. There is no need to fill out the form to view the link with your data. I will present the whole process:

    1. I am searching for a user using email address or ID or name and surname
    2. I click on his profile. (We’re not talking about a WordPress profile here. Just a customized page)
    3. His profile is displayed at the link
    https://exapmle.com/user_details/?user={username}&id={ID}

    Not every operator has access to the same customer groups. So, for example, Operator 1 will see the data of an individual customer, but will not have access to a customer of another category (e.g. VIP customer, business customer, customer from another country).

    1. In order to change data/perform an action, a webhook is made to an external server using the “Forminator” form. Some data is completed automatically. They are loaded from link.

    Each view has its own link and its own data defined.

    Second example

    1. I am searching for a user using email address or ID or name and surname
    2. I click on his profile. (We’re not talking about a WordPress profile here. Just a customized page)
    3. I enter the customer’s order because, for example, I would like to change something. And I see the link:
    https://exapmle.com/order_details/?user={username}&id={ID}&order-id={order-id}  //e.t.c....

    4. In order to change data/perform an action, a webhook is made to an external server using the “Forminator” form. Some data is completed automatically. They are loaded from link.

    I keep talking about this function (I don’t know what it’s called in English). The function allows you to automatically fill out form fields based on data from the link.

    So my request is that the data that goes automatically to Forminator should not be visible to the operator. Or so that the operator cannot edit the selected field.

    I hope it’s all more clear now ??

    Thread Starter chelminski

    (@chelminski)

    Hi
    Not completely. I’m creating a customer service panel. Depending on the displayed context (account view, user list view, etc.), various options (forms – data flow) are available. I would like to use your plugin for this, because I think it is the best ;). Information about the context is contained in the url.

    E.g. When displaying a given user’s account page, you see a link:

    https://example.com/user-details?user=chelminski&order_no=2137

    When you display a given group, action, etc. you also have context.

    And I would like it to be possible to include this information in the form, but in such a way that it could not be edited by the operator filling in the data. It would be best if the information was not visible in the form, but only on the confirmation.

    It would also be convenient because I could use such a solution for basic users and there would be no mess. I really want this feature :D, there are many application options.

    Thread Starter chelminski

    (@chelminski)

    Thx. It works!

    Thread Starter chelminski

    (@chelminski)

    Thx. It’s working!

    Thread Starter chelminski

    (@chelminski)

    Hi ??
    Maybe this can be simplified. E.g.

    1. Adding a new shortcode in the panel
      shortcode content: [su_user field=”display_name”]
      shortcode name: test1
    2. Instead of adding the entire shortcode content, use only the shortcode name from your plugin (in this case “test1”)

    The original shortcode if we want to search by the value “chelminski”:

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” key=”chelminski” key-format=”%s” message-not-found=”Could not find user”]

    And here we replace “key” with something else. E.g. “key-id” to search using another shortcode saved in the plugin under that name.

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” key-id=”test1” key-format=”%s” message-not-found=”Could not find user”]

    Then, do not search using the “test1” value, but search using what we have under the shortcode “test1”

    Then we move everything to plugin instead of WordPress. The plugin would have to perform actions sequentially.

    1. Query the value for shortcode test1. Let’s assume that the value would be “xxx”
    [su_user field=”display_name”]

    return value to the user –> “xxx”

    2. Substituting this into the second query and showing the results.

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” key-id=”test1” key-format=”%s” message-not-found=”Could not find user”]

    return value to the user –> “127.0.0.1”

    I don’t know if I’m helping or creating chaos ??

    Thread Starter chelminski

    (@chelminski)

    Hi ??
    Works great. Perfect. However, I have another crazy request. Is it possible for the query key to be a different shortcode?

    For example:

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” key=”[sv slug=”sc-display-name”]” key-format=”%s” message-not-found=”Could not find user”]

    or shortcode from another plugin:

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” key=”[su_user field=”display_name”]” key-format=”%s” message-not-found=”Could not find user”]

    ________________

    I guess you would have to change the [ ] sign to something else inside or, for example, define variables. %2137%=*su_user field=”display_name”*

    For example:

    [sv slug=”sc-db-value-by-id” table=”proxy_ip” column=”ip” column-to-search=”name” %2137%=*su_user field=”display_name”* key=”%2137%” key-format=”%s” message-not-found=”Could not find user”]

    I don’t know much about programming ??, but I’m trying to be helpful and figure out a way, because I imagine this might be difficult.

    That would be amazing. Users could query databases based on other data. Queries would be dynamic. This has endless applications.

    Thread Starter chelminski

    (@chelminski)

    Sorry, it works, but instead of wp_users I have to enter only users.

    Is it possible for me to retrieve data from tables other than WordPress? E.g.

    [sv slug=”sc-db-value-by-id” table=”lobby_ip” column=”ip” column-to-search=”name” key=”chelminski” key-format=”%s” message-not-found=”Could not find user ip”]

Viewing 15 replies - 16 through 30 (of 47 total)