| 1 |
<?php |
| 2 |
/** |
| 3 |
* Getting Started |
| 4 |
* |
| 5 |
* @package REQUEST_A_QUOTE |
| 6 |
* @since WPAS 5.3 |
| 7 |
*/ |
| 8 |
if (!defined('ABSPATH')) exit; |
| 9 |
add_action('request_a_quote_getting_started', 'request_a_quote_getting_started'); |
| 10 |
/** |
| 11 |
* Display getting started information |
| 12 |
* @since WPAS 5.3 |
| 13 |
* |
| 14 |
* @return html |
| 15 |
*/ |
| 16 |
function request_a_quote_getting_started() { |
| 17 |
global $title; |
| 18 |
list($display_version) = explode('-', REQUEST_A_QUOTE_VERSION); |
| 19 |
?> |
| 20 |
<style> |
| 21 |
.about-wrap img{ |
| 22 |
max-height: 200px; |
| 23 |
} |
| 24 |
div.comp-feature { |
| 25 |
font-weight: 400; |
| 26 |
font-size:20px; |
| 27 |
} |
| 28 |
.edition-com { |
| 29 |
display: none; |
| 30 |
} |
| 31 |
.green{ |
| 32 |
color: #008000; |
| 33 |
font-size: 30px; |
| 34 |
} |
| 35 |
#nav-compare:before{ |
| 36 |
content: "\f179"; |
| 37 |
} |
| 38 |
#emd-about .nav-tab-wrapper a:before{ |
| 39 |
position: relative; |
| 40 |
box-sizing: content-box; |
| 41 |
padding: 0px 3px; |
| 42 |
color: #4682b4; |
| 43 |
width: 20px; |
| 44 |
height: 20px; |
| 45 |
overflow: hidden; |
| 46 |
white-space: nowrap; |
| 47 |
font-size: 20px; |
| 48 |
line-height: 1; |
| 49 |
cursor: pointer; |
| 50 |
font-family: dashicons; |
| 51 |
} |
| 52 |
#nav-getting-started:before{ |
| 53 |
content: "\f102"; |
| 54 |
} |
| 55 |
#nav-release-notes:before{ |
| 56 |
content: "\f348"; |
| 57 |
} |
| 58 |
#nav-resources:before{ |
| 59 |
content: "\f118"; |
| 60 |
} |
| 61 |
#nav-features:before{ |
| 62 |
content: "\f339"; |
| 63 |
} |
| 64 |
#emd-about .embed-container { |
| 65 |
position: relative; |
| 66 |
padding-bottom: 56.25%; |
| 67 |
height: 0; |
| 68 |
overflow: hidden; |
| 69 |
max-width: 100%; |
| 70 |
height: auto; |
| 71 |
} |
| 72 |
|
| 73 |
#emd-about .embed-container iframe, |
| 74 |
#emd-about .embed-container object, |
| 75 |
#emd-about .embed-container embed { |
| 76 |
position: absolute; |
| 77 |
top: 0; |
| 78 |
left: 0; |
| 79 |
width: 100%; |
| 80 |
height: 100%; |
| 81 |
} |
| 82 |
#emd-about ul li:before{ |
| 83 |
content: "\f522"; |
| 84 |
font-family: dashicons; |
| 85 |
font-size:25px; |
| 86 |
} |
| 87 |
#gallery { |
| 88 |
display: -webkit-box; |
| 89 |
display: -ms-flexbox; |
| 90 |
display: flex; |
| 91 |
-ms-flex-wrap: wrap; |
| 92 |
flex-wrap: wrap; |
| 93 |
} |
| 94 |
#gallery .gallery-item { |
| 95 |
margin-top: 10px; |
| 96 |
margin-right: 10px; |
| 97 |
text-align: center; |
| 98 |
cursor:pointer; |
| 99 |
} |
| 100 |
#gallery img { |
| 101 |
border: 2px solid #cfcfcf; |
| 102 |
height: 405px; |
| 103 |
width: auto; |
| 104 |
} |
| 105 |
#gallery .gallery-caption { |
| 106 |
margin-left: 0; |
| 107 |
} |
| 108 |
#emd-about .top{ |
| 109 |
text-decoration:none; |
| 110 |
} |
| 111 |
#emd-about .toc{ |
| 112 |
background-color: #fff; |
| 113 |
padding: 25px; |
| 114 |
border: 1px solid #add8e6; |
| 115 |
border-radius: 8px; |
| 116 |
} |
| 117 |
#emd-about h3, |
| 118 |
#emd-about h2{ |
| 119 |
margin-top: 0px; |
| 120 |
margin-right: 0px; |
| 121 |
margin-bottom: 0.6em; |
| 122 |
margin-left: 0px; |
| 123 |
} |
| 124 |
#emd-about p, |
| 125 |
#emd-about .emd-section li{ |
| 126 |
font-size:18px |
| 127 |
} |
| 128 |
#emd-about a.top:after{ |
| 129 |
content: "\f342"; |
| 130 |
font-family: dashicons; |
| 131 |
font-size:25px; |
| 132 |
text-decoration:none; |
| 133 |
} |
| 134 |
#emd-about .toc a, |
| 135 |
#emd-about a.top{ |
| 136 |
vertical-align: top; |
| 137 |
} |
| 138 |
#emd-about li{ |
| 139 |
list-style-type: none; |
| 140 |
line-height: normal; |
| 141 |
} |
| 142 |
#emd-about ol li { |
| 143 |
list-style-type: decimal; |
| 144 |
} |
| 145 |
#emd-about .quote{ |
| 146 |
background: #fff; |
| 147 |
border-left: 4px solid #088cf9; |
| 148 |
-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); |
| 149 |
box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); |
| 150 |
margin-top: 25px; |
| 151 |
padding: 1px 12px; |
| 152 |
} |
| 153 |
#emd-about .tooltip{ |
| 154 |
display: inline; |
| 155 |
position: relative; |
| 156 |
} |
| 157 |
#emd-about .tooltip:hover:after{ |
| 158 |
background: #333; |
| 159 |
background: rgba(0,0,0,.8); |
| 160 |
border-radius: 5px; |
| 161 |
bottom: 26px; |
| 162 |
color: #fff; |
| 163 |
content: 'Click to enlarge'; |
| 164 |
left: 20%; |
| 165 |
padding: 5px 15px; |
| 166 |
position: absolute; |
| 167 |
z-index: 98; |
| 168 |
width: 220px; |
| 169 |
} |
| 170 |
</style> |
| 171 |
|
| 172 |
<?php add_thickbox(); ?> |
| 173 |
<div id="emd-about" class="wrap about-wrap"> |
| 174 |
<div id="emd-header" style="padding:10px 0" class="wp-clearfix"> |
| 175 |
<div style="float:right"><img src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/request-a-quote-arch-320x200.gif"; ?>"></div> |
| 176 |
<div style="margin: .2em 200px 0 0;padding: 0;color: #32373c;line-height: 1.2em;font-size: 2.8em;font-weight: 400;"> |
| 177 |
<?php printf(__('Welcome to Request a quote Community %s', 'request-a-quote') , $display_version); ?> |
| 178 |
</div> |
| 179 |
|
| 180 |
<p class="about-text"> |
| 181 |
<?php printf(__("Request a quote provides an easy to use request a quote form, stores and displays quote requests from customers. It also has fully customizable notification system for customers and admin.", 'request-a-quote') , $display_version); ?> |
| 182 |
</p> |
| 183 |
<div style="display: inline-block;"><a style="height: 50px; background:#ff8484;padding:10px 12px;color:#ffffff;text-align: center;font-weight: bold;line-height: 50px; font-family: Arial;border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-pricing/request-a-quote-wordpress-plugin-pricing/?pk_campaign=request-a-quote-upgradebtn&pk_kwd=request-a-quote-resources"><?php printf(__('Upgrade Now', 'request-a-quote') , $display_version); ?></a></div> |
| 184 |
<div style="display: inline-block;margin-bottom: 20px;"><a style="height: 50px; background:#f0ad4e;padding:10px 12px;color:#ffffff;text-align: center;font-weight: bold;line-height: 50px; font-family: Arial;border-radius: 6px; text-decoration: none;" href="https://raqpro.emdplugins.com/?pk_campaign=request-a-quote-buybtn&pk_kwd=request-a-quote-resources"><?php printf(__('Visit Pro Demo Site', 'request-a-quote') , $display_version); ?></a></div> |
| 185 |
<?php |
| 186 |
$tabs['getting-started'] = __('Getting Started', 'request-a-quote'); |
| 187 |
$tabs['release-notes'] = __('Release Notes', 'request-a-quote'); |
| 188 |
$tabs['resources'] = __('Resources', 'request-a-quote'); |
| 189 |
$tabs['features'] = __('Features', 'request-a-quote'); |
| 190 |
$active_tab = isset($_GET['tab']) ? sanitize_text_field($_GET['tab']) : 'getting-started'; |
| 191 |
echo '<h2 class="nav-tab-wrapper wp-clearfix">'; |
| 192 |
foreach ($tabs as $ktab => $mytab) { |
| 193 |
$tab_url[$ktab] = esc_url(add_query_arg(array( |
| 194 |
'tab' => $ktab |
| 195 |
))); |
| 196 |
$active = ""; |
| 197 |
if ($active_tab == $ktab) { |
| 198 |
$active = "nav-tab-active"; |
| 199 |
} |
| 200 |
echo '<a href="' . esc_url($tab_url[$ktab]) . '" class="nav-tab ' . esc_attr($active) . '" id="nav-' . esc_attr($ktab) . '">' . esc_html($mytab) . '</a>'; |
| 201 |
} |
| 202 |
echo '</h2>'; |
| 203 |
?> |
| 204 |
<?php echo '<div class="tab-content" id="tab-getting-started"'; |
| 205 |
if ("getting-started" != $active_tab) { |
| 206 |
echo 'style="display:none;"'; |
| 207 |
} |
| 208 |
echo '>'; |
| 209 |
?> |
| 210 |
<div style="height:25px" id="rtop"></div><div class="toc"><h3 style="color:#0073AA;text-align:left;">Quickstart</h3><ul><li><a href="#gs-sec-264">Live Demo Site</a></li> |
| 211 |
<li><a href="#gs-sec-266">Need Help?</a></li> |
| 212 |
<li><a href="#gs-sec-267">Learn More</a></li> |
| 213 |
<li><a href="#gs-sec-265">Installation, Configuration & Customization Service</a></li> |
| 214 |
<li><a href="#gs-sec-298">Upgrade to Request A Quote PRO</a></li> |
| 215 |
<li><a href="#gs-sec-53">Request a Quote Introduction</a></li> |
| 216 |
<li><a href="#gs-sec-55">EMD CSV Import Export Extension allows getting your quote requests in and out of WordPress quickly</a></li> |
| 217 |
<li><a href="#gs-sec-130">EMD MailChimp Extension for building email list through Request a quote Community</a></li> |
| 218 |
<li><a href="#gs-sec-190">EMD Incoming Email Addon to get RFQ or RFI from customer emails</a></li> |
| 219 |
<li><a href="#gs-sec-54">EMD Advanced Filters and Columns Extension for finding what's important faster</a></li> |
| 220 |
</ul></div><div class="quote"> |
| 221 |
<p class="about-description">The secret of getting ahead is getting started - Mark Twain</p> |
| 222 |
</div> |
| 223 |
<div id="gs-sec-264"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Live Demo Site</div><div class="changelog emd-section getting-started-264" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>Feel free to check out our <a target="_blank" href="https://requestaquote.emdplugins.com//?pk_campaign=request-a-quote-gettingstarted&pk_kwd=request-a-quote-livedemo">live demo site</a> to learn how to use Request a quote Community starter edition. The demo site will always have the latest version installed.</p> |
| 224 |
<p>You can also use the demo site to identify possible issues. If the same issue exists in the demo site, open a support ticket and we will fix it. If a Request a quote Community feature is not functioning or displayed correctly in your site but looks and works properly in the demo site, it means the theme or a third party plugin or one or more configuration parameters of your site is causing the issue.</p> |
| 225 |
<p>If you'd like us to identify and fix the issues specific to your site, purchase a work order to get started.</p> |
| 226 |
<p><a target="_blank" style=" |
| 227 |
padding: 16px; |
| 228 |
background: coral; |
| 229 |
border: 1px solid lightgray; |
| 230 |
border-radius: 12px; |
| 231 |
text-decoration: none; |
| 232 |
color: white; |
| 233 |
margin: 10px 0; |
| 234 |
display: inline-block;" href="https://emdplugins.com/expert-service-pricing/?pk_campaign=request-a-quote-gettingstarted&pk_kwd=request-a-quote-livedemo">Purchase Work Order</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-266"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Need Help?</div><div class="changelog emd-section getting-started-266" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>There are many resources available in case you need help:</p> |
| 235 |
<ul> |
| 236 |
<li>Search our <a target="_blank" href="https://emdplugins.com/support">knowledge base</a></li> |
| 237 |
<li><a href="https://emdplugins.com/kb_tags/request-a-quote" target="_blank">Browse our Request a quote Community articles</a></li> |
| 238 |
<li><a href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation" target="_blank">Check out Request a quote Community documentation for step by step instructions.</a></li> |
| 239 |
<li><a href="https://emdplugins.com/emdplugins-support-introduction/" target="_blank">Open a support ticket if you still could not find the answer to your question</a></li> |
| 240 |
</ul> |
| 241 |
<p>Please read <a href="https://emdplugins.com/questions/what-to-write-on-a-support-ticket-related-to-a-technical-issue/" target="_blank">"What to write to report a technical issue"</a> before submitting a support ticket.</p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-267"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Learn More</div><div class="changelog emd-section getting-started-267" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>The following articles provide step by step instructions on various concepts covered in Request a quote Community.</p> |
| 242 |
<ul><li> |
| 243 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article401">Concepts</a> |
| 244 |
</li> |
| 245 |
<li> |
| 246 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article449">Quick Start</a> |
| 247 |
</li> |
| 248 |
<li> |
| 249 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article402">Working with Quotes</a> |
| 250 |
</li> |
| 251 |
<li> |
| 252 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article403">Standards</a> |
| 253 |
</li> |
| 254 |
<li> |
| 255 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article404">Forms</a> |
| 256 |
</li> |
| 257 |
<li> |
| 258 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article405">Notifications</a> |
| 259 |
</li> |
| 260 |
<li> |
| 261 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article406">Administration</a> |
| 262 |
</li> |
| 263 |
<li> |
| 264 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article410">Screen Options</a> |
| 265 |
</li> |
| 266 |
<li> |
| 267 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article409">Localization(l10n)</a> |
| 268 |
</li> |
| 269 |
<li> |
| 270 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article408">Creating Shortcodes</a> |
| 271 |
</li> |
| 272 |
<li> |
| 273 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article407">Help Screens</a> |
| 274 |
</li> |
| 275 |
<li> |
| 276 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article411">Customizations</a> |
| 277 |
</li> |
| 278 |
<li> |
| 279 |
<a target="_blank" href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#article412">Glossary</a> |
| 280 |
</li></ul> |
| 281 |
</div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-265"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Installation, Configuration & Customization Service</div><div class="changelog emd-section getting-started-265" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>Get the peace of mind that comes from having Request a quote Community properly installed, configured or customized by eMarket Design.</p> |
| 282 |
<p>Being the developer of Request a quote Community, we understand how to deliver the best value, mitigate risks and get the software ready for you to use quickly.</p> |
| 283 |
<p>Our service includes:</p> |
| 284 |
<ul> |
| 285 |
<li>Professional installation by eMarket Design experts.</li> |
| 286 |
<li>Configuration to meet your specific needs</li> |
| 287 |
<li>Installation completed quickly and according to best practice</li> |
| 288 |
<li>Knowledge of Request a quote Community best practices transferred to your team</li> |
| 289 |
</ul> |
| 290 |
<p>Pricing of the service is based on the complexity of level of effort, required skills or expertise. To determine the estimated price and duration of this service, and for more information about related services, purchase a work order. |
| 291 |
<p><a target="_blank" style=" |
| 292 |
padding: 16px; |
| 293 |
background: coral; |
| 294 |
border: 1px solid lightgray; |
| 295 |
border-radius: 12px; |
| 296 |
text-decoration: none; |
| 297 |
color: white; |
| 298 |
margin: 10px 0; |
| 299 |
display: inline-block;" href="https://emdplugins.com/expert-service-pricing/?pk_campaign=request-a-quote-gettingstarted&pk_kwd=request-a-quote-livedemo">Purchase Work Order</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-298"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Upgrade to Request A Quote PRO</div><div class="changelog emd-section getting-started-298" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>Upgrading to the professional edition unlocks the features required for commercial applications.</p> |
| 300 |
<p>Using the professional edition, you can:</p> |
| 301 |
<ul> |
| 302 |
<li>Add custom fields to your RFQ form</li> |
| 303 |
<li>Create multi step, form wizard like RFQ forms to support complex processing.</li> |
| 304 |
<li>Create multiple custom RFQ forms.</li> |
| 305 |
<li>Create multiple custom RFQ search forms.</li> |
| 306 |
<li>Fully customize the form layout</li> |
| 307 |
<li>Customize and define help text of default and custom fields.</li> |
| 308 |
<li>Assign incoming requests to your staff</li> |
| 309 |
<li>Separate roles and responsibilities of staff members from WordPress admins. The Pro comes with RFQ employee and manager user roles which can be assigned to any WordPress user.</li> |
| 310 |
<li>Search and create reports on the processing of RFQs</li> |
| 311 |
<li>Search quote requests on the frontend with a fully featured data grid. You can change the result set simple table from the plugin settings as well.</li> |
| 312 |
</ul> |
| 313 |
<p><a style="display: block; height: 50px; width: 250px; background:#f0ad4e;; color: #ffffff; text-align: center; font-weight: bold; font-size: 150%; line-height: 50px; font-family: Arial; border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-pricing/request-a-quote-wordpress-plugin-pricing/?pk_campaign=raqpro-buybtn&pk_kwd=raq-resources">Upgrade Now</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-53"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Request a Quote Introduction</div><div class="changelog emd-section getting-started-53" style="margin:0;background-color:white;padding:10px"><div class="emd-yt" data-youtube-id="13gGmII_SM4" data-ratio="16:9">loading...</div><div class="sec-desc"><p>Watch Request a Quote Introduction video to learn about the plugin features and configuration.</p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-55"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">EMD CSV Import Export Extension allows getting your quote requests in and out of WordPress quickly</div><div class="changelog emd-section getting-started-55" style="margin:0;background-color:white;padding:10px"><div class="emd-yt" data-youtube-id="tJDQbU3jS0c" data-ratio="16:9">loading...</div><div class="sec-desc"><p>EMD CSV Import Export Extension helps bulk import, export, update quote requests information from/to CSV files. You can also reset(delete) all data and start over again without modifying database. The export feature is also great for backups and archiving old or obsolete data.</p> |
| 314 |
<p><a style="display: block; height:50px; width: 250px; background:#f0ad4e;; color: #ffffff; text-align: center; font-weight: bold; font-size: 150%; line-height: 50px; font-family: Arial; border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-features/request-a-quote-importexport-addon/?pk_campaign=emdimpexp-buybtn&pk_kwd=raq-resources">Buy Now</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-130"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">EMD MailChimp Extension for building email list through Request a quote Community</div><div class="changelog emd-section getting-started-130" style="margin:0;background-color:white;padding:10px"><div class="emd-yt" data-youtube-id="Oi_c-0W1Sdo" data-ratio="16:9">loading...</div><div class="sec-desc"><p>EMD MailChimp Extension helps you build MailChimp email list based on the contact information collected through Request a quote Community form.</p> |
| 315 |
<p><a style="display: block; height:50px; width: 250px; background:#f0ad4e;; color: #ffffff; text-align: center; font-weight: bold; font-size: 150%; line-height: 50px; font-family: Arial; border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-features/request-a-quote-mailchimp-addon/?pk_campaign=emd-mailchimp-buybtn&pk_kwd=request-a-quote-resources">Buy Now</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-190"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">EMD Incoming Email Addon to get RFQ or RFI from customer emails</div><div class="changelog emd-section getting-started-190" style="margin:0;background-color:white;padding:10px"><div id="gallery"></div><div class="sec-desc"><p>EMD Incoming Email Addon helps you get request for quotation (RFQ) or request for information (RFI) from customer emails to your site.</p> |
| 316 |
<p><a style="display: block; height:50px; width: 250px; background:#f0ad4e;; color: #ffffff; text-align: center; font-weight: bold; font-size: 150%; line-height: 50px; font-family: Arial; border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-features/request-a-quote-incoming-email-addon/?pk_campaign=emd-mailchimp-buybtn&pk_kwd=request-a-quote-resources">Buy Now</a></p> |
| 317 |
</div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"><div id="gs-sec-54"></div><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">EMD Advanced Filters and Columns Extension for finding what's important faster</div><div class="changelog emd-section getting-started-54" style="margin:0;background-color:white;padding:10px"><div class="emd-yt" data-youtube-id="JDIHIibWyR0" data-ratio="16:9">loading...</div><div class="sec-desc"><p>EMD Advanced Filters and Columns Extension for "Request a Quote" WordPress Plugin allows to:</p><ul><li>filter of sales quote requests</li><li>save frequently used filters</li><li>sort quote request columns</li><li>change the display order of columns</li><li>export search results to PDF or CSV</li></ul> |
| 318 |
<p><a style="display: block; height:50px; width: 250px; background:#f0ad4e;; color: #ffffff; text-align: center; font-weight: bold; font-size: 150%; line-height: 50px; font-family: Arial; border-radius: 6px; text-decoration: none;" href="https://emdplugins.com/plugin-features/request-a-quote-smart-search-addon/?pk_campaign=emd-afc-buybtn&pk_kwd=raq-resources">Buy Now</a></p></div></div><div style="margin-top:15px"><a href="#rtop" class="top">Go to top</a></div><hr style="margin-top:40px"> |
| 319 |
|
| 320 |
<?php echo '</div>'; ?> |
| 321 |
<?php echo '<div class="tab-content" id="tab-release-notes"'; |
| 322 |
if ("release-notes" != $active_tab) { |
| 323 |
echo 'style="display:none;"'; |
| 324 |
} |
| 325 |
echo '>'; |
| 326 |
?> |
| 327 |
<p class="about-description">This page lists the release notes from every production version of Request a quote Community.</p> |
| 328 |
|
| 329 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.5 changes</h3> |
| 330 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1626" style="margin:0"> |
| 331 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 332 |
An issue where non-admin users were blocked from wp-admin due to an incorrect wp_die() call in show_optin()</h3> |
| 333 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 334 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.4 changes</h3> |
| 335 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1614" style="margin:0"> |
| 336 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 337 |
tested with WP 6.9</h3> |
| 338 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1613" style="margin:0"> |
| 339 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 340 |
Missing authorization and nonce check in callback function for check_optin</h3> |
| 341 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 342 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.3 changes</h3> |
| 343 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1587" style="margin:0"> |
| 344 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 345 |
XSS vulnerability for noaccess_msg</h3> |
| 346 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1586" style="margin:0"> |
| 347 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 348 |
Validate input for emd_form_builder_lite_pagenum function</h3> |
| 349 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 350 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.2 changes</h3> |
| 351 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1566" style="margin:0"> |
| 352 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 353 |
Resolved an issue where deleted taxonomy terms were being unintentionally recreated.</h3> |
| 354 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 355 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1566" style="margin:0"> |
| 356 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 357 |
Removed repeated initialization of default taxonomy terms.</h3> |
| 358 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 359 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.1 changes</h3> |
| 360 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1552" style="margin:0"> |
| 361 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 362 |
tested with WP 6.8</h3> |
| 363 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 364 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.5.0 changes</h3> |
| 365 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1543" style="margin:0"> |
| 366 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 367 |
WordPress dashboard accordions issue on setting and glossary pages due to changes in core code on WP 6.7.1</h3> |
| 368 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 369 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.4.1 changes</h3> |
| 370 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1528" style="margin:0"> |
| 371 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 372 |
issue with images and files while editing quote</h3> |
| 373 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1527" style="margin:0"> |
| 374 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 375 |
CSRF vulnerability on Settings Tools tab</h3> |
| 376 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 377 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.4.0 changes</h3> |
| 378 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1514" style="margin:0"> |
| 379 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 380 |
Tested with WP 6.5</h3> |
| 381 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1513" style="margin:0"> |
| 382 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 383 |
Fix CSRF vulnerability on Settings Tools tab</h3> |
| 384 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1512" style="margin:0"> |
| 385 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 386 |
Updated translation to one textdomain</h3> |
| 387 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 388 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.9 changes</h3> |
| 389 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1458" style="margin:0"> |
| 390 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 391 |
XSS issues in the WordPress admin area</h3> |
| 392 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1457" style="margin:0"> |
| 393 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 394 |
tested with WP 6.1</h3> |
| 395 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 396 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.8 changes</h3> |
| 397 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1453" style="margin:0"> |
| 398 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 399 |
tested with WP 6.0</h3> |
| 400 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 401 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.7 changes</h3> |
| 402 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1445" style="margin:0"> |
| 403 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 404 |
form submit issue</h3> |
| 405 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 406 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.6 changes</h3> |
| 407 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1434" style="margin:0"> |
| 408 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 409 |
tested with WP 5.9.2 and PHP 8</h3> |
| 410 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 411 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.3 changes</h3> |
| 412 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1282" style="margin:0"> |
| 413 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 414 |
Quote pages not showing disabled fields from the settings</h3> |
| 415 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1281" style="margin:0"> |
| 416 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 417 |
tested with WP 5.7</h3> |
| 418 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1276" style="margin:0"> |
| 419 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 420 |
tested with WP 5.6.2</h3> |
| 421 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 422 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.2 changes</h3> |
| 423 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1221" style="margin:0"> |
| 424 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 425 |
Required field validation is not working.</h3> |
| 426 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 427 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.11 changes</h3> |
| 428 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1479" style="margin:0"> |
| 429 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 430 |
Add sanitization and fix CSRF vulnerability</h3> |
| 431 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 432 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.10 changes</h3> |
| 433 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1460" style="margin:0"> |
| 434 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 435 |
undefined constant error</h3> |
| 436 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 437 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.1 changes</h3> |
| 438 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1212" style="margin:0"> |
| 439 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 440 |
multi-select form component missing scroll bars when the content overflows its fixed height.</h3> |
| 441 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 442 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.3.0 changes</h3> |
| 443 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1146" style="margin:0"> |
| 444 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 445 |
tested with WP 5.5.1</h3> |
| 446 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1145" style="margin:0"> |
| 447 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 448 |
updates to translation strings and libraries</h3> |
| 449 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1144" style="margin:0"> |
| 450 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 451 |
Added version numbers to js and css files for caching purposes</h3> |
| 452 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1143" style="margin:0"> |
| 453 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 454 |
Added quote request statuses taxonomy to the quote list on the admin dashboard</h3> |
| 455 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 456 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.2.0 changes</h3> |
| 457 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1090" style="margin:0"> |
| 458 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 459 |
updates and improvements to libraries</h3> |
| 460 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1089" style="margin:0"> |
| 461 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 462 |
Added previous and next buttons for the edit screens of quotes</h3> |
| 463 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 464 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.1.0 changes</h3> |
| 465 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1014" style="margin:0"> |
| 466 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 467 |
Emd templates</h3> |
| 468 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1013" style="margin:0"> |
| 469 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 470 |
updates and improvements to form library</h3> |
| 471 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-1012" style="margin:0"> |
| 472 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 473 |
Added support for Emd Custom Field Builder when upgraded to premium editions</h3> |
| 474 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 475 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.5 changes</h3> |
| 476 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-944" style="margin:0"> |
| 477 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 478 |
Fix issue related to extensions</h3> |
| 479 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 480 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.4 changes</h3> |
| 481 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-938" style="margin:0"> |
| 482 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 483 |
Fixed the issue related to form not submitting by non logged in users</h3> |
| 484 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 485 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.3 changes</h3> |
| 486 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-926" style="margin:0"> |
| 487 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 488 |
Added sanitization</h3> |
| 489 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 490 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.2 changes</h3> |
| 491 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-924" style="margin:0"> |
| 492 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 493 |
Cleaned up unnecessary code and optimized the library file content.</h3> |
| 494 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 495 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.1 changes</h3> |
| 496 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-923" style="margin:0"> |
| 497 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 498 |
XSS related issues</h3> |
| 499 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 500 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">2.0.0 changes</h3> |
| 501 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-919" style="margin:0"> |
| 502 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 503 |
Session cleanup workflow by creating a custom table to process records.</h3> |
| 504 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-918" style="margin:0"> |
| 505 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 506 |
Added conditional state/province display based on country selection</h3> |
| 507 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-917" style="margin:0"> |
| 508 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 509 |
Added ability to pick a country and set a default from plugin settings</h3> |
| 510 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-916" style="margin:0"> |
| 511 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 512 |
Added Emd form builder support</h3> |
| 513 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-915" style="margin:0"> |
| 514 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 515 |
Added quote status taxonomy</h3> |
| 516 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 517 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.9.6 changes</h3> |
| 518 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-899" style="margin:0"> |
| 519 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 520 |
misc. library updates and improve compatibility with the latest WordPress version</h3> |
| 521 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 522 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.9.5 changes</h3> |
| 523 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-852" style="margin:0"> |
| 524 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 525 |
Emd templating system to match modern web standards</h3> |
| 526 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-851" style="margin:0"> |
| 527 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 528 |
Created a new shortcode page which displays all available shortcodes. You can access this page under the plugin settings.</h3> |
| 529 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 530 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.9.1 changes</h3> |
| 531 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-775" style="margin:0"> |
| 532 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 533 |
Getting started add on links have been changed to point the plugin page.</h3> |
| 534 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 535 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.9.0 changes</h3> |
| 536 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-755" style="margin:0"> |
| 537 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 538 |
Quote pages which accessible by administrator and subscriber users</h3> |
| 539 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-754" style="margin:0"> |
| 540 |
<h3 style="font-size:18px;" class="remove"><div style="font-size:110%;color:#ff4444"><span class="dashicons dashicons-editor-removeformatting"></span> REMOVE</div> |
| 541 |
access to quote requests by site visitors for privacy concerns. Only WordPress administrators can see the quote requests.</h3> |
| 542 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-753" style="margin:0"> |
| 543 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 544 |
misc. library updates</h3> |
| 545 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 546 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.8.2 changes</h3> |
| 547 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-752" style="margin:0"> |
| 548 |
<h3 style="font-size:18px;" class="remove"><div style="font-size:110%;color:#ff4444"><span class="dashicons dashicons-editor-removeformatting"></span> REMOVE</div> |
| 549 |
access to quote requests by site visitors for privacy concerns. Only WordPress administrators can see the quote requests.</h3> |
| 550 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-751" style="margin:0"> |
| 551 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 552 |
misc. library updates</h3> |
| 553 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 554 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.8.0 changes</h3> |
| 555 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-606" style="margin:0"> |
| 556 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 557 |
library updates</h3> |
| 558 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-605" style="margin:0"> |
| 559 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 560 |
Ability to limit max size, max number of files and file types of quote attachments</h3> |
| 561 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-604" style="margin:0"> |
| 562 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 563 |
Add ability to attach files to quotes</h3> |
| 564 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 565 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.7.0 changes</h3> |
| 566 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-355" style="margin:0"> |
| 567 |
<h3 style="font-size:18px;" class="tweak"><div style="font-size:110%;color:#33b5e5"><span class="dashicons dashicons-admin-settings"></span> TWEAK</div> |
| 568 |
Updated codemirror libraries for custom CSS and JS options in plugin settings page</h3> |
| 569 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-354" style="margin:0"> |
| 570 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 571 |
PHP 7 compatibility</h3> |
| 572 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-353" style="margin:0"> |
| 573 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 574 |
Added container type field in the plugin settings</h3> |
| 575 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-352" style="margin:0"> |
| 576 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 577 |
Added custom JavaScript option in plugin settings under Tools tab</h3> |
| 578 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 579 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.6.0 changes</h3> |
| 580 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-216" style="margin:0"> |
| 581 |
<h3 style="font-size:18px;" class="fix"><div style="font-size:110%;color:#c71585"><span class="dashicons dashicons-admin-tools"></span> FIX</div> |
| 582 |
WP Sessions security vulnerability</h3> |
| 583 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-215" style="margin:0"> |
| 584 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 585 |
Added support for EMD MailChimp extension</h3> |
| 586 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 587 |
<h3 style="font-size: 18px;font-weight:700;color: white;background: #708090;padding:5px 10px;width:155px;border: 2px solid #fff;border-radius:4px;text-align:center">1.5.0 changes</h3> |
| 588 |
<div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-58" style="margin:0"> |
| 589 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 590 |
Added ability to recreate installation pages from plugin settings</h3> |
| 591 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-57" style="margin:0"> |
| 592 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 593 |
Added ability to permanently delete plugin related data from plugin settings</h3> |
| 594 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-56" style="margin:0"> |
| 595 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 596 |
Ability to limit quote entry forms to logged-in users only from plugin settings.</h3> |
| 597 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-55" style="margin:0"> |
| 598 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 599 |
Ability to add custom CSS in plugin's frontend pages</h3> |
| 600 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-54" style="margin:0"> |
| 601 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 602 |
Ability enable/disable any field and taxonomy from backend and/or frontend</h3> |
| 603 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-53" style="margin:0"> |
| 604 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 605 |
EMD Widget area to include sidebar widgets in plugin pages</h3> |
| 606 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-52" style="margin:0"> |
| 607 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 608 |
Added support for EMD Advanced Filters and Columns extension</h3> |
| 609 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-50" style="margin:0"> |
| 610 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 611 |
Added unique key for quotes, removed uniqueness for quote email</h3> |
| 612 |
<div ></a></div></div></div><hr style="margin:30px 0"><div class="wp-clearfix"><div class="changelog emd-section whats-new whats-new-49" style="margin:0"> |
| 613 |
<h3 style="font-size:18px;" class="new"><div style="font-size:110%;color:#00C851"><span class="dashicons dashicons-megaphone"></span> NEW</div> |
| 614 |
Ability to set page template for quote single pages. Options are sidebar on left, sidebar on right or full width</h3> |
| 615 |
<div ></a></div></div></div><hr style="margin:30px 0"> |
| 616 |
<?php echo '</div>'; ?> |
| 617 |
<?php echo '<div class="tab-content" id="tab-resources"'; |
| 618 |
if ("resources" != $active_tab) { |
| 619 |
echo 'style="display:none;"'; |
| 620 |
} |
| 621 |
echo '>'; |
| 622 |
?> |
| 623 |
<div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">Extensive documentation is available</div><div class="emd-section changelog resources resources-51" style="margin:0;background-color:white;padding:10px"><div style="height:40px" id="gs-sec-51"></div><div id="gallery" class="wp-clearfix"></div><div class="sec-desc"><a href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation">Request a Quote Community Edition Documentation</a></div></div><div style="margin-top:15px"><a href="#ptop" class="top">Go to top</a></div><hr style="margin-top:40px"><div style="color:white;background:#0000003b;padding:5px 10px;font-size: 1.4em;font-weight: 600;">How to resolve theme related issues</div><div class="emd-section changelog resources resources-56" style="margin:0;background-color:white;padding:10px"><div style="height:40px" id="gs-sec-56"></div><div id="gallery" class="wp-clearfix"><div class="sec-img gallery-item"><a class="thickbox tooltip" rel="gallery-56" href="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/emd_templating_system.png"; ?>"><img src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/emd_templating_system.png"; ?>"></a></div></div><div class="sec-desc"><p>If your theme is not coded based on WordPress theme coding standards, does have an unorthodox markup or its style.css is messing up how plugin pages look and feel, you will see some unusual changes on your site such as sidebars not getting displayed where they are supposed to or random text getting displayed on headers etc. after plugin activation.</p> |
| 624 |
<p>The good news is Request a quote Community plugin is designed to minimize theme related issues by providing two distinct templating system. The default templating system is EMD Templating System where the plugin uses its own templates for plugin pages. The second option is letting your theme use its own templates for plugin pages.</p> |
| 625 |
<p>If the first option works for you, you do not need to do anything. If you want to use the second option, you need to check "Disable EMD Templating System" option at Settings > Tools tab. Please keep in mind that when you disable EMD templating system, you loose the flexibility of modifying plugin pages without changing theme template files.</p> |
| 626 |
<p>If none of the provided options works for you, you may still fix theme related conflicts following the steps in <a href="https://docs.emdplugins.com/docs/request-a-quote-community-documentation/#section1484">Request a quote Community Documentation - Resolving theme related conflicts section.</a></p> |
| 627 |
|
| 628 |
<div class="quote"> |
| 629 |
<p>If you’re unfamiliar with code/templates and resolving potential conflicts, <a href="https://emdplugins.com/open-a-support-ticket/?pk_campaign=raq-hireme&ticket_topic=pre-sales-questions">hire us</a>. We will get your site up and running in no time.</p> |
| 630 |
</div></div></div><div style="margin-top:15px"><a href="#ptop" class="top">Go to top</a></div><hr style="margin-top:40px"> |
| 631 |
<?php echo '</div>'; ?> |
| 632 |
<?php echo '<div class="tab-content" id="tab-features"'; |
| 633 |
if ("features" != $active_tab) { |
| 634 |
echo 'style="display:none;"'; |
| 635 |
} |
| 636 |
echo '>'; |
| 637 |
?> |
| 638 |
<p>Explore the full list of features available in the the latest version of Request A Quote. Click on a feature title to learn more.</p> |
| 639 |
<table class="widefat features striped form-table" style="width:auto;font-size:16px"> |
| 640 |
<tr><td><a href="https://emdplugins.com/request-a-quote-simplify-quote-requests-with-seamless-file-sharing?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/upload.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-simplify-quote-requests-with-seamless-file-sharing?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Receive all relevant information upfront</a></td><td></td></tr> |
| 641 |
<tr><td><a href="https://emdplugins.com/request-a-quote-personalize-your-request-a-quote-with-ease?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/settings.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-personalize-your-request-a-quote-with-ease?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Tailor your Request a Quote directly from the settings</a></td><td></td></tr> |
| 642 |
<tr><td><a href="https://emdplugins.com/request-a-quote-one-location-for-all-sales-quote-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/contacts.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-one-location-for-all-sales-quote-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started">One location for all sales quote requests</a></td><td></td></tr> |
| 643 |
<tr><td><a href="https://emdplugins.com/request-a-quote-customizable-sales-quote-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/customize.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-customizable-sales-quote-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Craft Personalized Quote Requests in Seconds</a></td><td></td></tr> |
| 644 |
<tr><td><a href="https://emdplugins.com/request-a-quote-stay-connected-and-on-track-timely-quote-updates-throughout-the-process?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/megaphone.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-stay-connected-and-on-track-timely-quote-updates-throughout-the-process?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Seamless Communication & Quote Updates</a></td><td></td></tr> |
| 645 |
<tr><td><a href="https://emdplugins.com/request-a-quote-accept-sales-quotes-from-any-device?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/responsive.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-accept-sales-quotes-from-any-device?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Accept quotes with a tap or click</a></td><td></td></tr> |
| 646 |
<tr><td><a href="https://emdplugins.com/request-a-quote-build-powerful-quote-or-information-request-forms?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/emd_form_builder_icon.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-build-powerful-quote-or-information-request-forms?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Elevate the form-building experience</a></td><td> - Premium feature (included in Pro)</td></tr> |
| 647 |
<tr><td><a href="https://emdplugins.com/request-a-quote-eliminate-manual-work-for-quote-and-information-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/triggers.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-eliminate-manual-work-for-quote-and-information-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Eliminate manual work for quote and information requests</a></td><td> - Premium feature</td></tr> |
| 648 |
<tr><td><a href="https://emdplugins.com/request-a-quote-set-time-triggers-to-automatically-route-escalate-or-assign-quotes-info-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/automation.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-set-time-triggers-to-automatically-route-escalate-or-assign-quotes-info-requests?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Automate routing, escalation, or assignment</a></td><td> - Premium feature</td></tr> |
| 649 |
<tr><td><a href="https://emdplugins.com/request-a-quote-match-expertise-close-deals-faster?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/profile-page.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-match-expertise-close-deals-faster?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Match expertise with inquiries</a></td><td> - Premium feature (included in Pro)</td></tr> |
| 650 |
<tr><td><a href="https://emdplugins.com/request-a-quote-make-it-your-own-with-custom-fields?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/custom-fields.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-make-it-your-own-with-custom-fields?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Customized Sales Quotes with EMD Custom Field Builder Integration</a></td><td> - Premium feature (included in Pro)</td></tr> |
| 651 |
<tr><td><a href="https://emdplugins.com/request-a-quote-optimize-your-email-marketing-with-request-a-quote-mail-chimp-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/mailchimp.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-optimize-your-email-marketing-with-request-a-quote-mail-chimp-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Grow Your List and Enhance Customer Engagement</a></td><td> - Add-on</td></tr> |
| 652 |
<tr><td><a href="https://emdplugins.com/request-a-quote-explore-requests-seamlessly-with-request-a-quote-smart-search-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/zoomin.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-explore-requests-seamlessly-with-request-a-quote-smart-search-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Struggling to manage a mountain of quote requests? </a></td><td> - Add-on (included in Pro)</td></tr> |
| 653 |
<tr><td><a href="https://emdplugins.com/request-a-quote-import-export-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/csv-impexp.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-import-export-addon?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Take control of your data with Request A Quote Import/Export Addon</a></td><td> - Add-on (included in Pro)</td></tr> |
| 654 |
<tr><td><a href="https://emdplugins.com/request-a-quote-turn-emails-into-quotes-simplify-with-request-a-quote?pk_campaign=request-a-quote-com&pk_kwd=getting-started"><img style="width:128px;height:auto" src="<?php echo REQUEST_A_QUOTE_PLUGIN_URL . "assets/img/email.png"; ?>"></a></td><td><a href="https://emdplugins.com/request-a-quote-turn-emails-into-quotes-simplify-with-request-a-quote?pk_campaign=request-a-quote-com&pk_kwd=getting-started">Simplify your entire quote process</a></td><td> - Add-on</td></tr> |
| 655 |
</table> |
| 656 |
<?php echo '</div>'; ?> |
| 657 |
<?php echo '</div>'; |
| 658 |
} |
| 659 |
|