Myself Narender Singh Thakur ( NST ) and i share my Experience/Knowledge and Tricks for folks and beginners to solve their issues while making websites through this Planet.
So here are the Steps to follow you to create a survery form in wordrpess using WPForms plugin.
Okay... Click on WPForms and then click on Add New button like below….
After that new window will be like below and give a name to your form as i added in (1) in screenshot and search the form by adding text “survey” like left area text field.. to add a Survey form template there….
New window will be like this… click on the filed to edit..
You can check the field name there and edit or add as per need..
Check the Preview of the form…. by click on Preview button..
After hit on Save button you can embed this form by following 3 method … 1) Using shortcode . 2) By selecting existing page. 3) By adding new page there.
1) Click on Embed button and copy the shortcode like below…and paste this on the page where you want to show the form.
2) Add form by Selecting the existing page option…
If you are also struggling with block-based widget style then this post will help to revert that new style widgets to old style. Means Classic style widget.
Itβs very easy to disable WordPress block widgets. Using Plugins and using without plugin.
Using Plugin
Using this plugin Classic Widgets . Just add and activate this plugin.. it will auto revert to old style widgets view.
Using without plugin..
If you don’t want to use plugin then just add this simple code to your activate theme functions.php and hit on Update file button.
// revert to classic widget view ( Old View)
function nst_theme_support() {
remove_theme_support( 'widgets-block-editor' );
}
add_action( 'after_setup_theme', 'nst_theme_support' );
After doing one of step above.. the result will be like this.. as before..
If you need any help just message me through form or chat box.
How to properly add style and script to your wp website using functions.php file ?
Sometime we want to add CSS or JS to front-end of website without editing the parent theme files. like header.php or footer.php
So here is the simple function that help to add or apply your custom CSS code or js code to your front of website.
So here is code to add custom style to your website.
Note: Create a folder in your activate theme ( if not there ) with name CSS and a new file under that folder with name custom.css … so path will be like /css/custom.css .
Now add the bottom code in you functions.php file and hit on save button.
Now you can add your custom styles in your new file. π
Now the way to add Js code to your wp using functions file…
Like above
Note: Create a folder in your activate theme ( if not there ) with name JS and a new file under that folder with name custom.js … so path will be like /js/custom.js .
After this click on SQL tab and paste the above code .. i mean the one you changed now as per new and old url.
Like here ..
1) Click on used database 2) Then click on “SQL” tab. 3) Then paste the code in query box. 4) After this hit the “Go” button .. right side of the query box. 5) it will show you Successfully done message when the query is completed.
That’s it .. i hope this helps you and if still has any confusion then please contact me by chat box or contact forms.