Monday, February 27, 2017

New product ApPHP ContactForm is released!

New free product is released.

ApPHP ContactForm is the easiest way to let your website visitors get in touch with you. It also let you avoid revealing your email address on the web, which can attract spam.

This secure contact form is a platform independent script. Using this script will help visitors of your website to send you an email at any time.

It may be used on any HTML or PHP page of your existing website. The form is created in such way that be embedded in local or remote sites. It just uses a single file for validation, creating and sending e-mail! Since the visual form builder is so easy to use, there's no need for advanced programming knowledge to work with this tool.

Features

  • Maximum emails per session limitation
  • F5 button prevent double click
  • Different embedded alert types
  • Different fields: First Name, Last Name, Full Name, Birth Date, Address, Company, Country (from dropdown box), Subject and Message
  • Fields validation
  • Multi-language support (English and Spanish included)
  • Error field autofocus
To download click here:
http://www.apphp.com/php-contact-form/index.php

Live Demo:
http://www.apphp.com/php-contact-form/examples/sample1/index.php

Wednesday, February 22, 2017

New version 4.1.4 of ApPHP Shopping Cart is released

New version 4.1.4 of ApPHP Shopping Cart has been released and available now for downloading. This absolutely new script, based on ApPHP MVC Framework with many improvements and new features, like: adding to favorites, adding to comparison, new custom fields for products: color, weight, dimensions etc. All recent changes can be viewed here.

The script provides all necessary features including multi-currency and multi-language support. Visitors may view the contents of their shopping cart at any time and may add or delete items as needed. The program automatically calculates the subtotal, shipping charges, and total price. When a visitor decides to checkout, the order information is collected in database a receipt is sent to the shopper.

Last changes:
  • New the preservation and display of the size and color of goods
  • New added the ability to specify the generation of order number
  • New added a field "is_active" for table "cart_deliveries"
  • New working with addresses in the backend
  • New work with taxes
  • New moved the margin settings in the configuration file
  • New ability to disable blocks on the homepage
  • New restriction of products in the shopping cart
  • New sorting tabs for new products on the home page
  • Enh corrected address mapping work in the page checkout
  • Enh improved work orders (backend), add the missing fields
  • Enh remade logic adding products to the compare and the wishlist
  • Enh improved display of images on the product page for a detailed view
  • Fix bugs fixed
See Live Demo

jQuery - How to remove elements from the set of matched elements?


You may remove elements from the set of matched elements by using .not() method.

For example you want to remove all element with .alert class excluding those that have .alert-limited class.

You may do this in a following way:
$frm.find('.alert').not('.alert-limited').remove();