Frequently asked questions

Questions you might ask about our products and services.

Step:
1. Through Plugin (To Redirect and To Override Redirection)
Please Follow the Instructions in the PDF
click here to download PDF

2. Through Contact Form 7
Please Follow the Instructions in the PDF
click here to download PDF

Step 1:
Give class name main-table to the first table tag.
Step 2:
Copy the following CSS and Paste into your code.

<!-- table class="main-table" -->

<style type="text/css">
 @media only screen and (max-width: 435px) {
  .main-table {
   zoom: 50% !important;
  }
 }
 @media only screen and (max-width: 330px) {
  .main-table {
   zoom: 40% !important;
  }
 }
</style>

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
To use an acceptance checkbox in your contact form, simply insert an [acceptance] form-tag into the Form tab panel field like this:

[acceptance your-consent "<a href='https://example.com'>I consent to the conditions.</a>"]

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
This can be resolved with the help of Settings in wordpress

Step:
To use Maxlength and Minlength for input number copy the following code and paste into your code

[tel mphone maxlength:8 class:form-control placeholder "Mobile Phone"]

Step:
Add the following id into your code

id="yt_video"

Step:
Add the following css into your code

input#download_btn {
    background-color: #1473e6!important;
}
p.privacy_state a {
    color: #1473e6!important;
    text-decoration: none;
}
.download_btn {
    text-transform: none!important;
}

Step:
Copy the following code snippet and add into your code

<video controls style="width: -webkit-fill-available"></video>
<source src="#" allowfullscreen>
</video>

Step:
Adding class to img code fluid_img_sm

Step:
acceptance_as_validation: on, and write below code in additional setting

[acceptance acceptance-21] label <a href="#">[/acceptance]

feel free to change error message from message tab


.acceptanceText {
 font-size: 12px;
 color: #9a9a9a;
 font-style: italic;
 font-weight: 500;
 line-height: 1.5;
}

.acceptanceText a {
 color: #ff9800;
}

input[type="checkbox"] {
 margin-top: 20px;
}

[acceptance acceptance-1]<span class="acceptanceText">Yes, send me marketing communications on Oracle Products, Services and Events.</span>[/acceptance]

Step:
Copy the following code snippet and add into your code

.wpcf7-list-item {
 display: block !important;
}

Step:
To Multiselect dropdown in align for mobile device and desktop use following code

span.select2.select2-container.select2-container--default,span.select2-selection.select2-selection--single{
 width: 100% !important;
}

span.select2-selection.select2-selection--multiple{
 width:100% !important;
}

Step:
Wrap the select in p tag

<p class="privacy_state">Select Tag Here</p>

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
Use target="_blank" to open link in new tab

<a href="#" target="_blank">Privacy Policy</a>

Step:
Rename .mov to .mp4

video.mov to video.mp4

Step:
Add the following video tag to your code

<video width="100%" controls><source src="#"></video>

Step 1:
Add id="logoImg" to the <img> tag of your logo.
Step 2:
Insert the following code snippet just before the closing </head> tag
Step 3:
Adjust the width value as needed to fit your design requirements.

<style>
  @media only screen and (max-width: 480px) {
   #logoImg {
    width: 175px !important;
    height: auto !important;
   }
  }
</style>

Step 1:
Add client link in posturl using custom fields
Step 2:
Add the following script in contact form
Step 3:
Change href and download link as per requirements
For you reference:
href = "https://resources.wisdominterface.com/wp-content/uploads/2025/05/FINAL-eBook-Supercharging-DevOps-with-CDNs-Fastly-eBook-V3-Final-.pdf"
download="FINAL-eBook-Supercharging-DevOps-with-CDNs-Fastly-eBook-V3-Final-.pdf"

<script>
 document.addEventListener('DOMContentLoaded', function () {
  document.addEventListener('wpcf7mailsent', function (event) {
   const link = document.createElement('a');
   link.href = '#';
   link.download = '#';
   document.body.appendChild(link);
   link.click();
   document.body.removeChild(link);
  });
 });
</script>

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Fields for reference
click here to download PDF

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step 1:
Click on conditional field on contact form.
Step 2:
Toggle the text mode.
Step 3:
Copy the below code and paste it in the textarea.

show [country-other] if [country] not equals "United States"
and if [country] not equals "Canada"
show [country-us] if [country] equals "United States"
show [country-canada] if [country] equals "Canada"

Please Follow the Instructions in the PDF
click here to download PDF
Copy the following Script and Paste into your contact form 7.

<script>
 jQuery('.wpcf7').ready(function () {
  setTimeout(() => {
    jQuery('select.wpcf7-selct-multiselct').select2({
     maximumSelectionLength: 3
    }) ;
    jQuery('select.wpcf7-selct-multiselct').val(null).trigger('change');
  } ,0);
  }) ;
</script>

Step:
Please Follow the Instructions in the PDF
click here to download PDF

Step 1:
Add the Custom CSS in Contact Form
Step 2:
Add the response below the Multiselect Field

<style type="text/css">
 .wpcf7-response-output {
   color: #dc3232 !important;
   font-size: 1em !important;
   font-weight: normal !important;
   display: block !important;
   margin-top: -15px !important;
 }
 .wpcf7 form .wpcf7-response-output {
  margin: 0px !important;
  padding: 0px !important;
  border: none !important;
 }
</style>

[selct_multiselct* ans1 class:form-control multiple include_blank "value 1" "value 2" "Value 3" "Value 4" "Value 5"]
[response]

Step 1:
Please Follow the Instructions in the PDF
click here to download PDF
Step 2:
Copy the below script and paste it in you embed code.

<script>
 document.addEventListener('DOMContentLoaded', function () {
   let favicon = document.querySelector("link[rel~='icon']");
   if (!favicon) {
    favicon = document.createElement('link');
    favicon.rel = 'icon';
    document.head.appendChild(favicon);
  }
  favicon.href = '#';
 });
</script>

//Please add the link of your favicon in href

Step:
Please Follow the Instructions in the PDF
click here to download PDF