Tuesday, 24 November 2020

Fast Secure Contact Form

 Fast Secure Contact Form is replace with old si contact form plugin to using with wordpress as contact form plguin

Monday, 23 November 2020

Wednesday, 11 December 2019

Contact Form 7 Popup After Submit Form

Conatct Form 7 Popup message after submit form to setup much of way you can do that via custom code as well one plugin also available for it Popup message Contact form  7 . that provide much of feature available for popup message plugin contact form 7 success message modal . in that plugin used sweetalert js.
This also know Contact Form 7 Response Message Popup plugin for wordpress
Features:
Create Popup – Setup Popup for success and field Message
Pre-Define Template – Using Much of Pre-define template in popup
Customize Message – Popup Message Can be Customize Which you want that can be place
Customize Background color and image – You can be customize background color and background image
Customize font color – Its support Select, Radio, Checkbox, Input box, Range slider for calculation
Customize Button text and Background color – you can be customize color text and button for both
Customize Duration Time – In this you can customize how much time after hide popup that
Customize Background gradient colors – You can be use Gradient Color
Mobile Friendly – Popup is Fully Mobile Friendly
Compatible Browser – It support Much of web Browser

After Click on contact form 7 popup on button click its make to open popup to make mobile friendly . Close popup after send message in Contact Form 7 to there is time limit to setup popup close after some seconds
We can display popup after submit CF7 form so user can be make elegant look in website. Contact Form 7 Success/Error Response Output to customize by message which message you want to add that can be use.
Normally days Contact form 7 most using in wordpress site and much secure for us.

Contact Form 7 Custom Post Type Dropdown

Contact Form 7 Custom Post Type Dropdown for you can be make custom as well there you can be use plugin Custom Post type Dropdown Contact form 7  wordpress.org free plugin. Dynamic Post Contact form 7 to make form in much effective feature.
In this plugin its allow to setup much of feature see below that
  • beautiful drop-down-menues with post image, excerpt and meta data
  • selection of the post type (posts, pages, attachments, custom post types)
  • selection and limitation of categories (taxonomies)
  • customized/individual formatting of the label
  • configuring the value attribute
  • customized sorting of the post type
  • Display a search box on drop-down-menues
  • limitation of the post type based on its particular status (published, draft etc.)
Its also know as  contact form 7 – post fields
we using this for select2.js  who have customize for good idea they can be customize that part which allow by Dropdown Post list Contact form 7. mostly contact form 7 much popular in contact form 7 it can be make much prefer to setup.
As well this plugin allow with woocommerce feature with make product list price, Feature image so that is extra feature to setup it in woocommerce plugin.
it include order by date , random asc-desc as well if you want to show product or custom post product category wise than you can do it.
Search box - it can be allow to make search box of select2.js with Contact Form 7 Custom Post Type Dropdown. it can be find product as much as productive. if customer want to inquiry for product there need to select multiple product you can use that feature Dynamic Post Contact form 7 .

How to Setup Range Slider For Gravity Form

Range Slider for Gravity Form is make to slider more user friendly to visitor setup more effective user to get better response form visitor. In this Slider Gravity Forms to setup min/max value in slider so which range between setup visitor value it can be.
as well here we provider color selection option with Range Slider for Gravity Form .

Plugin Features
  • Easy use
  • Step Adding Option
  • Prefix On Digit
  • Multiple Tooltip Position
  • Tooltip color option
  • Min and Max Option in slider
  • Compatible in all major browser

How to Setup Plugin?

Go to wordpress.org and download Range Slider for Gravity Form

To Advanced Field under show Range slider Field for gravity form

Plugin Options

Min/Max  In range slider plugin this option to setup start and end limit value in slider gravity form
Prefix it can be allow to before number will be make Prefix value in slider
Prefix Position it can be make left and right position of prefix to where need to setup that
Step In Range slider Gravity Form this best option because much user want to setup step ex. if visitor want 5,10,15,16 like that option need to setup it can be
Color Tool tip it make tool tip under Gravity Form for slider
Tool tip Position if you want to keep tool tip position left, right, top ,bottom you can be slider in Range slider Gravity Form

Why Choose Gravity form Range Slider

Range Slider for Gravity Form should be use this because of this has much of amazing feature to color selection, tool tip, prefix position so we suggest to this plugin for that as well if you using contact form 7 than similar plugin for this you can use Price Calculator contact form 7

How to create custom post type in wordpress programmatically

Now day for blog site most popular CMS is that wordpress.com. There is very good Structure for content setup and make all seo friendly. Now if you go in there deeply there is Post, Media, Pages like that is by default create post type when you setup wordpress. If you want to make custom post type in wordpress you need to use plugin as well programmatically code.

How to create custom post type in wordpress programmatically

For create custom post type there is predefined function in wordpress.org  register_post_type() by that function you can be create custom post type in wordpress
Let we start how to make custom post type in wordpress
you should be follow below step for create custom post type.

Create a WordPress Custom Post Type Programmatically

For Example we create custom Post type of News
First you should open function.php of active theme (if i have avada theme active than open function.php of that theme)

/* Custom Post Type Start */
function create_posttype() {
register_post_type( 'news',
// CPT Options
array(
'labels' => array(
'name' => __( 'news' ),
'singular_name' => __( 'News' )
),
'public' => true,
'has_archive' => false,
'rewrite' => array('slug' => 'news'),
)
);
}
// Hooking up our function to theme setup
add_action( 'init', 'create_posttype' );
After put this code save function.php after that you will be show it on admin side see below screenshot
Custom post type Programically
Explanation for custom post type in wordpress programmatically
For making custom post type you much be use add_action('init') by that you need to post argument of that with register_post_type().

/*Custom Post type start xeeshop.com*/
function acw_post_type_newsa() {
$supports = array(
'title', // post title
'editor', // post content
'author', // post author
'thumbnail', // featured images
'excerpt', // post excerpt
'custom-fields', // custom fields
'comments', // post comments
'revisions', // post revisions
'post-formats', // post formats
);
$labels = array(
'name' => _x('news', 'plural'),
'singular_name' => _x('news', 'singular'),
'menu_name' => _x('news', 'admin menu'),
'name_admin_bar' => _x('news', 'admin bar'),
'add_new' => _x('Add New', 'add new'),
'add_new_item' => __('Add New news'),
'new_item' => __('New news'),
'edit_item' => __('Edit news'),
'view_item' => __('View news'),
'all_items' => __('All news'),
'search_items' => __('Search news'),
'not_found' => __('No news found.'),
);
$args = array(
'supports' => $supports,
'labels' => $labels,
'public' => true,
'query_var' => true,
'rewrite' => array('slug' => 'news'),
'has_archive' => true,
'hierarchical' => false,
);
register_post_type('news', $args);
}
add_action('init', 'acw_post_type_newsa');
/*Custom Post type end xeeshop.com*/


$supports: Indicates to the post type is compatible and supports all essential features.
$labels: Indicates to that the post type is referred properly to the admin area.
$args: Indicates to a permalink slug of the news, and a menu position located just beneath the Posts menu.

How to get custom post type data programmatically

Once, you have developed the code, your next task will be to create a new file called template-news.php and place it in your theme folder. As soon as you have created this file, add the following code to it.
/*Template Name: News*/
get_header();
query_posts(array(
   'post_type' => 'news'
));
while (have_posts()) : the_post(); ?>

 





After that create file you need to create and select template so you can be show good result as below screenshot
How to Create WordPress Custom Post Types