Speed Contact Bar
Let your website visitors get in touch with you easily with permanent visible contact information. The plugin is available in English, Spanish (Español), Russian (ру́сский), German (Deutsch) and Polish (Polski). You can add further translations by contributing to GlotPress The plugin does not collect any personal data, so it is ready for EU General Data Protection Regulation (GDPR) compliance. Quick contact to you Speed Contact Bar enables your visitors to get in contact with you quickly. The plugin shows a colored bar with your contact data and social media URLs on the top of every page of your website. The bar design is responsive and thus ready for smartphones and tablets. The social media icons are included already. Each icon appears if you set its target URL in the option page. The phone icons and numbers are clickable to trigger a phone call. The e-mail is clickable to open a mail client. Demo You want to test Speed Contact Bar before installing on your site? Try it out on your free WordPress playground and click here. What users said “Perfect! Just tried it and it works!” in WordPress.org Support Forum by immortalguru on Septemer 10, 2019 “Useful addition for any business. Could be crucial.” in 10 Best Free Restaurant WordPress Plugins of 2019 by John Hughes on June 2, 2019 “FANTASTIC Plugin!” in WordPress.org Reviews by maderemark on August 10, 2018 “Speed Contact Bar là một bar plugin rất tốt cho mọi doanh nghiệp …” in 10 Plugin miễn phí tốt nhất cho Nhà Hàng năm 2018 by Duy Anh on May 18, 2018 “Speed Contact Bar is ideal when you want visitors to get in touch fast …” in 18 Plugins To Customize the Header And Footer Of Your Site by Claire Brotherton on April 30, 2018 “Perfect 5 star plugin” in WordPress.org Reviews by maartensurf on December 13, 2017 “This plugin is the only one in the whole repository that really provides what I want.” in WordPress.org Support by stepheniryna on July 14, 2017 “the BEST customer service I have received in 2016!” in WordPress.org Support by chrissavid33 on December 31, 2016 “100% recommended. Saved my time” in WordPress.org Reviews by ramarao on August 20, 2016 “Absolutely fantastic. Was exactly what I was looking for and looks brilliant on my website.” in WordPress.org Reviews by tydem00 on April 15, 2015 “It’s one of my favorites, and easily one of the best for social buttons.” in WordPress.org Support Forum by aleos97 on April 25, 2015 What you can configure There are some options you can set to let the contact bar fit to your needs. You can set your contact data URLs to your social media pages and profiles and many design options like colors Available contact data options You can show these three personal contact data: Headline, can be a link with an optional URL Postal address can be a link with an optional URL Phone number, automatically linked to open an available phone application, can be displayed with a text of your choice Fax number, automatically linked to open an available phone application, can be displayed with a text of your choice Cell phone number, automatically linked to open an available phone application, can be displayed with a text of your choice. Thanks to Jim Colao for the icons! E-Mail address, automatically linked to open an available mail client, can be displayed with a text of your choice WhatsApp, Messenger and Telegram to open an available chat client, can be displayed with a text of your choice any further content you wish by using the filter hook speed-contact-bar-data (as documented in FAQ section "How to add and re-order list entries by using hooks"). Supported social media platforms Speed Contact Bar supports links to these social media platforms, as ordered alphabetically: Facebook Flickr IMDb Instagram LinkedIn Pinterest Skype SlideShare Snapchat SoundCloud Telegram Text Messages Tumblr X (former Twitter) Vimeo WhatsApp WeChat Xing Yelp YouTube Any further content you wish by using the filter hook speed_contact_bar_icons (as documented in FAQ section "How to add and re-order list entries by using hooks"). More social media platforms will come in future. Design options under your fingertips You can set the design of the contact bar easily, fast and safe to be suitable to the design of your website: Page types where to hide the bar: You can set on which page types the bar is not displayed, e.g. start page, archive page, search results page etc. Maximal viewport width to hide the bar: You can specify the window width up to which the bar is not displayed, e.g. in Smartphones Minimal viewport width to hide the bar: You can specify the window width from which the bar is not displayed, e.g. in desktop browsers Position of the bar: You can place the bar at the top or bottom on every page Fixed position: You can set whether it should scroll with the content or stay fixed Horizontal padding of the contact bar Vertical padding of the contact bar Space between bar and page content if the bar is fixed Background color of the contact bar or a transparent bar Background color opacity of the contact bar, i.e. its grade of transparency Text color 12 Link color Lightness of icons: You can select between dark or bright icons Content alignment within the bar Font size of the texts and links Icon size Headline visibility: switch the headline on or off Headline text Headline HTML tag Headline URL to make the headline a link Shadow under or above the bar for a chic 3D effect Link target of all links to open a contact link in the same window or in a new window Show contact data on small displays instead of showing icons only specify a display width as a trigger to show or to hide the bar any further style you wish by using the filter hook speed-contact-bar-style Do you miss some options? We will add it! Please write your request in the plugin’s support forum at wordpress.org. We will try to take a look and answer as soon as possible. Read the FAQ section "How to add and re-order list entries by using hooks" about how to use the plugin’s hooks. Languages Speed Contact Bar translations are served by wp.org. Your language is missing? Please be part of the community and help to translate Speed Contact Bar on GlotPress. Thank you! Installation by Using the WordPress Dashboard Navigate to the ‘Add New’ in the plugins dashboard Search for ‘Speed Contact Bar’ Click ‘Install Now’ Activate the plugin on the Plugin dashboard Configure the plugin with the options page at “Settings” => “Speed Contact Bar”. Installation by Uploading in WordPress Dashboard Navigate to the ‘Add New’ in the plugins dashboard Navigate to the ‘Upload’ area Select speed-contact-bar.zip from your computer Click ‘Install Now’ Activate the plugin in the Plugin dashboard Configure the plugin with the options page at “Settings” => “Speed Contact Bar”. Installation by Using FTP Download speed-contact-bar.zip Extract the speed-contact-bar directory to your computer Upload the speed-contact-bar directory to the /wp-content/plugins/ directory Activate the plugin in the Plugin dashboard Configure the plugin with the options page at “Settings” => “Speed Contact Bar”.
Top keywords
- bar35×2.84%
- contact27×2.19%
- contact bar18×1.46%
- wordpress13×1.06%
- page12×0.97%
- speed12×0.97%
- speed contact12×0.97%
- speed contact bar12×0.97%
- org10×0.81%
- wordpress org9×0.73%
- displayed8×0.65%
- options8×0.65%
Store file uploads for Contact Form 7
By default, Contact Form 7 dose not keep data it sends trough it’s contact forms. While plugins like Flamingo save that data, uploaded files are not added to Media Library. This plugin will save uploaded files to Media Library before email is sent by CF7. This plugin will raise an event with the the full file path & name. Subscribe to nmr_create_attachment_file_name filter to get and/or update data before attachment is added to media library. // The filter callback function. function example_callback( $file_name ) { // (maybe) modify $file_name. return $file_name; } add_filter( 'nmr_create_attachment_file_name', 'example_callback', 10, 1 ); Subscribe to nmr_before_insert_attachment filter to be able to change attachment attributes: caption and description are ‘post_excerpt’ and ‘post_content’. For other attributes, check documentation for wp_insert_attachment. // The filter callback function. function before_insert_attachment_callback( $attachment ) { // (maybe) modify $attachment array. return $attachment; } add_filter( 'nmr_before_insert_attachment', 'before_insert_attachment_callback', 10, 1 ); Optionally, subscribe to nmr_should_skip_save_attachment_to_media_library filter to be able to skip saving the attachment to media library: return true to skip, false is the default behaviour that saves the attachment to media library. Filter nmr_before_insert_attachment will not be called if skip was true. // The filter callback function. function skip_media_library_callback( $skip_save_to_media_library ) { // return true to skip saving to Media Library, false to save. return true; } add_filter( 'nmr_should_skip_save_attachment_to_media_library', 'skip_media_library_callback', 10, 1 ); This plugin will send the final attachment id if you are interested in getting other details, like attachment url. Listen to nmr_create_attachment_id_generated action. // The action callback function. function example_callback_id_generated( $attachment_id ) { // (maybe) do something with the args. $url = wp_get_attachment_url( $attachment_id ); } add_action( 'nmr_create_attachment_id_generated', 'example_callback_id_generated', 10, 1 ); Docs & Support Check the support forum on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it. Store file uploads for Contact Form 7 Needs Your Support It is hard to continue development and support for this free plugin without contributions from users like you. If you enjoy using -Store file uploads for Contact Form 7- and find it useful, please consider making a donation. Your donation will help encourage and support the plugin’s continued development and better user support. Privacy Notices With the default configuration, this plugin, in itself, does not: track users by stealth; write any user personal data to the database; send any data to external servers; use cookies. It will, however store uploaded files trough Contact Form 7 in WordPress Media Library. Make sure your website users are aware of this fact!!! Pro Version Need more? The Pro version adds 13 features: Per-form control — choose which forms save files, set custom folder and rename pattern per form Auto-rename — rename files using patterns like {name}-{date}.{ext} from other CF7 fields Unique filenames — automatically avoid overwriting files with the same name Custom upload folder — save files to a specific subfolder per form File URL in email — replace [file] mail tag with a clickable link instead of an attachment Skip-mail compatibility — save files even when CF7’s skip_mail: on is set Upload log — admin screen listing every uploaded file with form, date, size, and download link Private files — store files outside the Media Library with access protection Admin notification — receive an email with file link on every upload Flamingo integration — link uploaded files to Flamingo inbound message entries Auto-delete — remove uploads older than a configurable number of days Image resize / compress — resize and compress images on upload Duplicate detection — skip saving if the same file was already uploaded (MD5 check) Get Pro →