Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged Add-ons

Rss Feed Group items tagged

wecodefuture2015

Does the FOMO Plugin work? - 1 views

The FOMO plugin is a notification tool that allows users to be alerted when specific events happen. Events can be anything from new followers to tweets being sent. The plugin has proved to be hugel...

FOMO Plugin Wordpress

started by wecodefuture2015 on 19 Oct 22 no follow-up yet
Vernon Fowler

Details | Adaptive Images - 1 views

  • Here you can find out how Adaptive Images works, how to install it, how to customise it for your needs, and learn about the limitations of the approach.
  • Installation One important thing: do not over-write any existing .htaccess file. If you have one already, back it up. Feeling up to it? Excellent
  • If you already have an .htaccess file, open it in a text editor and add the code from the supplied file into your existing one. To support Retina displays use the alternate JS.
  • ...4 more annotations...
  • configuration section at the top of the PHP file
  • This is a PHP solution.
  • Adaptive Images will not work if you’re using a CDN to deliver your website.
  • there is no way to guarantee that a cookie will be set before images are requested
htmlslicemate.com

Conquer Designing with Vector Ornaments - 0 views

  •  
    If you're looking to quickly and easily pull together a posh design piece, we've got just the trick! Vector ornaments can instantly add a touch of class and richness to promote the quality of your work instantly. Looking for Christmas ornament vectors instead? Check 'em out here Vector ornaments - inspired by the Victorian-era - are always intricate and possess a soft, feminine feel. It's these dressy details that help to convey the wealthy, rich state present during Queen Victoria's reign by which this time period was inspired and therefore, named after. This rich style is conveyed through the use of swirls, flowing florals, and beautiful borders often present in this type of elegant design, so if you're creating a design for something a bit more on the formal side, vector ornaments can pull your delicate design together. Grab an ornament frame or florals to seamlessly piece together a wedding invitation in a jiffy. Or emphasize a section of text in a piece by placing a swirl ornament above and below your text to frame it in a feminine way. (Pro tip: this can also be an easy approach to creating a logo for an upscale business!) Vector ornaments were also widely used during the 1920's vintage era and consequently are widely present in old-timey designs (think vintage movie poster designs). So this design type can also be used to go retro with your work! When working with this style of design, there is one key thing to remember: a little goes a long way. Since vector ornaments are very detailed designs, you'll want to maintain your classy look by using them sparingly. Otherwise, your design will look too busy and overcrowded. Also because of the intricate details present in vector ornaments, these designs can be laborious to create. Instead of spending hours, download them from Vecteezy where we've hooked you up with top-notch vector ornaments. Below is a list of list of some of the most popular vector ornaments available from our communi
Magento

Product Video -this is a very useful feature for any website based on magento which all... - 0 views

  •  
    We have received lots of inquiries for videos placement on product details page presently. Thanks to it, we realized that it is a need and also a must for us to think of and dedicate our resource to develop such an Magento Extensions . Now here is the first version of Product Video Extension we would be proud to release. We believe it will meet demand of Mage Shop owners who have been desperatedly looking for a helpful tool to make their product visualization more convincing.
Clara James

Top WordPress Image Gallery Plugins for 2011 - 0 views

  •  
    Image galleries enable you to conveniently view images on your blog and manipulate them. Here are some really hot ones! NextGen - allows you to create multiple slideshows on your site. Photo Space - adds any image attached to a post or a page to the gallery.
janereyes

Adding & Managing Products On WooCommerce Website - 0 views

  •  
    WooCommerce developers set products based on category, tags, shipping classes, etc. So end users or visitors can easily find products as per their search
jvsoon

WP MASTER DEVELOPER PRO - 1 views

When it comes to coding, WP Master Developer Pro is a tool like no other... ...but wouldn't it be great to be able to create WordPress plugins, even the complex ones with lots of features, WITHOUT...

design web Development website webdesign tools web design programming company

started by jvsoon on 25 Apr 17 no follow-up yet
adam080

How To Install Kodi On Firestick? - 1 views

  •  
    Kodi 19 is a media player that enables you to read books, browse photos, and watch live TV. It is able to install Kodi 19 on various types of platforms like android and iOS. It is free of cost. It helps to add new features and to fix the bugs or errors.
wecodefuture2015

Conclusion of FOMO Plugin - 0 views

If you're looking for a way to add notifications to your WordPress site, the FOMO plugin is definitely worth checking out. With its easy-to-use interface and wide range of features, it's one of the...

wordpress FOMO plugin

started by wecodefuture2015 on 17 Oct 22 no follow-up yet
jhon fork

A&F TECH SERVICES' INC: (1-954-271-6537) USA based search engine optimization company - 1 views

Search engine optimization is very essential to put in excellent business on an online world. To be realized and seen by the world's customers it is important to take assistance from a Seo company....

Seo services seo company seo service providers seo service company

started by jhon fork on 14 Jul 12 no follow-up yet
Anna Taylor

Improve Ecommerce Conversions With SSL - 0 views

  •  
    Looking to boost your ecommerce conversions? One simple thing you can do is add an SSL certificate to your site. Shopping on-line today is really all about trust. No matter what you're selling, no matter the price, if your site visitor doesn't feel the site is safe or reputable, conversion rates are going to be low.
Herb Tucker

PHP: Expressions - Manual - 0 views

  • (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance
  • Expressions are the most important building stones of PHP. In PHP, almost anything you write is an expression
  • The simplest yet most accurate way to define an expression is "anything that has a value"
  • ...16 more annotations...
  • PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.
  • PHP is an expression-oriented language
  • Since assignments are parsed in a right to left order, you can also write '$b = $a = 5'
  • and that's the value of the assignment itself
  • A very common type of expressions are comparison expressions. These expressions evaluate to either FALSE or TRUE. PHP supports > (bigger than), >= (bigger than or equal to), == (equal), != (not equal), < (smaller than) and <= (smaller than or equal to). The language also supports a set of strict equivalence operators: === (equal to and same type) and !== (not equal to or not same type). These expressions are most commonly used inside conditional execution, such as if statements.
  • and is assigned back into $a,
  • The last example of expressions we'll deal with here is combined operator-assignment expressions
  • Adding 3 to the current value of $a can be written '$a += 3'
  • This means exactly "take the value of $a, add 3 to it, and assign it back into $a"
  • Any two-place operator can be used in this operator-assignment mode, for example '$a -= 5' (subtract 5 from the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
  • There is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
  • If the value of the first subexpression is TRUE (non-zero), then the second subexpression is evaluated, and that is the result of the conditional expression. Otherwise, the third subexpression is evaluated, and that is the value
  • Some expressions can be considered as statements. In this case, a statement has the form of 'expr ;' that is, an expression followed by a semicolon. In '$b = $a = 5;', '$a = 5' is a valid expression, but it's not a statement by itself. '$b = $a = 5;' however is a valid statement.
  • One last thing worth mentioning is the truth value of expressions. In many events, mainly in conditional execution and loops, you're not interested in the specific value of the expression, but only care about whether it means TRUE or FALSE. The constants TRUE and FALSE (case-insensitive) are the two possible boolean values.
  • Throughout the rest of this manual we'll write expr to indicate any valid PHP expression.
  • Functions are expressions with the value of their return value.
  •  
    Expressions defined and discussed with highlighting
qualityanalyst

Web Designing and Development Company New York | SEO Company NY - 0 views

When talking about SEO most people think it as simply a ranking phenomenon. You know that many internet marketing companies focus solely on rankings when it comes to SEO. But, rankings alone won't ...

design web development website webdesign programming tools company Web Design CSS

started by qualityanalyst on 02 Aug 17 no follow-up yet
Ahxn Amc

Learn How A Medical Website Can Be Significant For A Medical Professional - 0 views

  •  
    Medical Websites add the equal advantage as any other website provides to its user on both ends. But the medical websites demand a diverse procedure in its development. The market of the medical website is different and the potential clients are also different.
n-media

PPOM - WooCommerce Personalized Product Option Manager - 1 views

https://a.paddle.com/v2/click/34248/116174?link=2544 PPOM Plugin is the most customizable WooCommerce Product Add-on with more than 19 input types to customize your Product. The client personalize...

design web Development website webdesign programming Company plugin tools webdev css

started by n-media on 14 Sep 20 no follow-up yet
olafyang

We create and customize Shopify - 3 views

It is considered to be one of the best platforms in the world for building online stores. Simple, understandable, convenient. Moreover, there is an opportunity to create and launch your store right...

e-commerce

started by olafyang on 22 Nov 21 no follow-up yet
Ashley Wilson

https://www.impressico.com/blog/top-5-benefits-of-hiring-java-development-company-for-y... - 0 views

  •  
    Java is compatible with Windows, macOS, and Linux. By running Java code on a variety of platforms, Java developers may evaluate the functionality of their application across a variety of platforms. We have to complete each project in a timely manner and with the highest standards. The aim is to utilize Java's capabilities to create solutions that add value to companies.
htmlslicemate.com

Clever and Conspicuous Tagline is a First Step to a Good Acquaintance - 0 views

  •  
    Landing page is considered to be the most viewed page of any website. It usually serves as an intro section that consists of brief information about your business, including such essential stuff as logo, menu, welcoming photo-based or illustration-driven mascotes and, last but not least, tagline. The latter is mainly associated with opening headline which duty is to: Clarify what your agency does; emphasize difference between you and your competitors; encourage users to explore your website further; give a glimpse of your brand; promote your potential; show benefits; build emotions; establish proper atmosphere; add creativity. It's also imperative to take into account psychological side of the issue while choosing emotional background of your headline, since funny and serious statements can reflect on users differently.
htmlslicemate.com

Foundation for Beginners: Navigation - 0 views

  •  
    One of the most important aspects of a front-end framework is how it handles navigation. In this part of Foundation for Beginners, we'll take a look at several forms of navigation, along with some JavaScript tools which add extra flourish. I'll also introduce you to another helpful tool which will help you to become a better Foundation developer.
« First ‹ Previous 121 - 140 of 159 Next ›
Showing 20 items per page