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

Frequently Bought Together For Woocommerce Plugin

Frequently Bought Together For Woocommerce is good plugin Can be use for add one product with another related products in woo-commerce cart.
Let’s consider For example,
If someone want to purchase product laptop. for purchase that related product is laptop bag as well mouse, keyboard for that like of it make Woocommmerce Combo Product. it also known as Frequently bought Product.

How to use Frequently Bought Together For Woocommerce

step 1 : For using this plugin you should download Frequently Bought Together For Woocommmerce from wordpress.org
step 2 : Go into product in product data section into show Frequently Added Tab
There will be show 4 Option
[caption id="attachment_2657" align="alignnone" width="1024"]Frequently Bought Together for WooCommerce Frequently Bought Together for WooCommerce[/caption]
Selected there will be show selected product there you can be add Relative Product Price if you want to keep fixed otherwise you can keep its Discounted.
Add Product this option in we should add product which you want to add with as relative product of current product, as before i suggest you example.
Layout you can be setup two layout
Heading text there is you can keep custom title example Combo Products Woocommerce 

Features of Frequently Bought Together Woocommerce

  • Creating bundles from simple products
  • Multiple Layout
  • Option to enable/disable Frequently Bought Together Plugin
  • Custom Place on working
  • Price Discount In Bulk
  • Ordering of Product Group
  • Creating bundles from product variations
  • Custom Position
  • Displaying bundles under a description and a product regular price
  • Unlimited number of suggested products for each single product
  • it working on as well variation Woocommerce product
  • Easy Integration

Shortcode For Frequently Bought Together

[Woo_Frequently_added]  you can be use this shortcode if you want to use anywhere Frequently together products.
We have Pro verstion for Woo Frequently Bought Together Pro  for this

woocommerce_quantity_input_max Filter

woocommerce_quantity_input_max this filter using with function woocommerce_quantity_input() . woocommmerce quantity max and min using with filter. if you want to setup min and max qty adding in cart than this filter is much useful for you.

How to work Woocommerce Quantity min and max

In theme of function.php you should be put woocommerce_quantity_input_max filter. if you want to use Code snippets than you can use that plugin
function woocommerce_quantity_input_max_callback( $max, $product ) {
$max = 5;
return $max;
}
add_filter( 'woocommerce_quantity_input_max', 'woocommerce_quantity_input_max_callback', 10, 2 );

There is $max = 5 there should be assign value of how much of max Quantity need to add. if you need to add max 10 qty than add $max = 10
If you need to setup particular Woocommerce product for need to setup max quantity than
add_filter( 'woocommerce_quantity_input_min', 'woocommerce_quantity_input_min', 10, 2 );
function woocommerce_quantity_input_min( $min, $product ){
if ( $product->get_id() == 108) {
$min = 2;
} else {
$min = 3;
}
return $min;
}
You need to just add if condition in that condition need to change product id

Filter defined in to following location(s).

/includes/wc-template-functions.php  
  1. 'max_value' => apply_filters( 'woocommerce_quantity_input_max', -1, $product ),
/templates/single-product/add-to-cart/grouped.php  
  1. 'max_value' => apply_filters( 'woocommerce_quantity_input_max', $grouped_product->get_max_purchase_quantity(), $grouped_product ),
/templates/single-product/add-to-cart/variation-add-to-cart-button.php  
  1. 'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->get_max_purchase_quantity(), $product ),
/templates/single-product/add-to-cart/simple.php  
  1. 'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->get_max_purchase_quantity(), $product ),

Related Action for this

woocommerce_quantity_input_classes
woocommerce_quantity_input_max
woocommerce_quantity_input_min
woocommerce_quantity_input_step
woocommerce_quantity_input_pattern
woocommerce_quantity_input_inputmode
woocommerce_quantity_input_args
If you need more powerful feature for this than you can be download Min and Max Quantity Rule For Woocommerce  Wordpress plugin there include user role, min and max qty as well category wise rustication you can be add. if you want to know How to Setup Min and Max Qty in Woocommerce  you can read that artical

Gravity forms star rating field

Gravity forms star rating field using to how to add rating field in gravity that suggest. this plugin is free to use with much of features. you can be see below feature of star rating gravity form .
Plugin Features
  • Easy use
  • Mobile Friendly
  • Multiple Icon in Gravity Form Star Rating
  • Ratting Title, Max star
  • Ratting step

How to using Gravity form Star Rating

Download plugin in wordpress.org Star Rating Gravity Form
Under Advanced Field use Rating Field
Gravity form star rating
Under rating field there is much of option avaible
Max star - how much star want to keep that showing under that plugin
Step star - it using to how much step of stare can
Star icon - there is different type of icon available in rating field
star rating gravity form

Cost Calculator Contact Form 7

Calculation of cost calculator in contact form 7 is clear, simple and best plugin to calculate field between each other fields in contact form 7
You can download Calculate contact form 7 plugin in to wordpress.org.
Demo of calculation
Download Cost Calculator contact form 7
See below video there  contact form 7 how to calculate field that indicates


Formula for contact form 7
EX-1   [calculator calculator-123 "Fieldname-1 + Fieldname-2 * (Fieldname-3 + Fieldname-4)"]
EX-2   [calculator calculator-900 "Fieldname-3 * Fieldname-4"]
EX-3(with prefix $)   [calculator calculator-959 Prefix:$ "Fieldname-3 * Fieldname-4"]
EX-4(sqrt)   [calculator calculator-265 "sqrt(Fieldname-1) ** Fieldname-2"]
EX-4(with prefix $ and Precision 2)   [calculator calculator-266 Prefix:$ Precision:2 " Fieldname-1 % Fieldname-2"]
Features
  • Easy use
  • Support all mathematical formulas
  • Creating forms with automatically calculated fields
  • Multi Total field
  • Add radio,checkbox , select price field
  • Cross browser’s compatible
  • Custom format total field
  • Finance calculators
  • Quote calculators
  • Booking cost calculators
  • Add one or more calculated fields
  • Hide calculated field and only send email
If you have any issue about Calculate Contact Form 7 than you can be contact on contact page

Tuesday, 10 December 2019

Price Calculator Contact form 7

Price Calculator Contact form 7 for much of plugin in available in wordpress.org but most popup plugin is Cost Calculator Contact form 7. because of this plugin has unbelievable feature in that plugins.

Demo

For Price Calculation below Feature available in calculate contact form 7

  • support all summation , dedication , multiply and division formulas
  • Customize format total
  • Additional support % = Find Modulus ex. 12 % 5 // 2, ** = Find power (^) ex. 3 ** 2 // 9, Sqrt = Find Square root ex. Sqrt(25) // 5
  • You can put Prefix on total
  • Range Slider Feature
  • One Total field
  • Make inputbox, radio , select , checkbox  price field
  • Cross browser’s compatible
  • Calculators Finance
  • Calculator Quote
  • Booking cost calculators
  • Compatible in all major browser
  • Easy use
  • Multi Total field
  • You can put Prefix with field wise


By this all feature to you can be easy to contact form 7 to convert cost calculator plugin for contact form 7. you can be use that for weight calculator, calorie calculator, quote calculator for hotel booking, car rental quote calculator, mortgage calculator, tax calculator, finance calculators.

For calculation documentation make to how to setup you can check via video and code so it make more elegant feature.