Business Software

Easy aMember Protect Lite WordPress Plugin

Announcing the release of a new plugin for WordPress (single and multisite) that will allow you to use your purchase of aMember to protect your posts and/or pages very simply, easily and best of all – do it for FREE!

Download the plugin at the wordpress site here

Download aMember 30 day trial here

How to install

  • Download the file from the official WordPress page or visit your WordPress dashboard, go to Plugins/Add New and search for “easy amember protect lite”.
  • If you downloaded it, extract the folder from the zip file and upload the whole folder to your wp-content/plugins/ directory using FTP
  • Activate the plugin

How to configure

The plugin assumes that your amember installation resides in a folder called amember in the root of your wordpress install. If your installation uses a different folder name or is in a different location you will need to set the correct location in the settings page.

How it Works

You should already have some products in your aMember setup and the PHP_Include plugin activated (it should be anyway).

The plugin will use the product ID number from your aMember setup as the value of the custom field you add to the posts or pages that you want to protect.

The aMember product you want to allow access to

Once you know your product ID, add the custom field to the post you want to protect.

Add a new custom field with the product number from aMember you want to allow access for

If you want to allow access to more than one product, add a new custom field for each product.

Allow multiple products

Format your post with –more

If your blog shows the whole post in the archive view or blog post list, you need to use the < !--more--> tag after the text you want everyone to see. Once someone clicks on the title of the post or the link to read more, they will get redirected to the amember login page (if they aren’t already logged in).

the more tag in HTML mode

The more tag in wysiwyg mode

Have fun!

With a bit of imagination and time on the amember forums, you should be able to get your own premium content membership on WordPress site up and running in next to no time!

Notes

This plugin is not a replacement for the official amember wordpress plugin, it wont create a new user on WordPress or allow you to log in to both sites. It simply allows you to protect a single page or post from being seen by someone unless they have an active subscription to one of your amember products.

This plugin is provided ‘as is’ and is free for you to use any way you wish.

Hire me to do your dirty work!

If you want support, modifications and/or custom code then you can contact me on the amember forum (my username there is Andyb) with the details of what you want and request a quote. Prices range from 20$ for telephone support, 50$ for a simple mod, 100$ for custom coding additions and up to and over 250$ for more complex requests. (quotes are free and it costs nothing to ask!)

If you want to try out aMember before you buy, you can download a fully functional 30 day trial for free here. I recommend it if you need a quick solution to add a paywall to your site or you want to charge people to download an ebook, zip or other file.


Making a takeaway website – my story

Fired Wok Chinese Takeaway

Some of you may know that I run a Chinese takeaway and delivery shop in Lancaster, UK with my partner and her brother. My role is strictly ‘front-of-house’, customer service, chief geekster and go-and-get-stuff-from-Preston’er (among other things like doing the weekly books and tracking the cost of goods sold etc)

I can’t for the life of me go in the kitchen where it’s all fire and wok but, I can do all the other great things like come up with great marketing ideas, develop online solutions for advertising, answer the phone and understand the myriad of different accents you get when you run a delivery orientated business in a two University town.

Pretty Vs Useful

One of the things that was inevitable for me to do was, The Website.

Now, I class myself as a developer not a designer. The difference? (continue reading…)


TomTom central database for businesses?

I had reason to call the people at TomTom today to ask why they didn’t have the facility for businesses to add their details to the TomTom POI database. I can navigate to a POI on route with my tomtom 910 and it has all macdonalds restaurants already included out of the box so it seemed reasonable to assume that there was a mechanism in place for people to submit their business details to TomTom so it would be included in everyone’s TomTom software (when it gets updated).

The guy at TomTom said it was a good idea and will pass it on to the marketing department. I know that there are 3rd party POI lists out there but you need to actually download and install them yourself but I think that it would a good (and maybe profitable) thing for TomTom to have a constantly updating business POI list for restaurants, hotels and bars etc that are included in all new products and updates.

related: tomtom POI for speedcameras


Logo wanted… 3 hours later… logo got!

If you’re ever in need of a quick and professional 3d object design, you should definitely check out Milan Antovics’ portfolio.
This guy made me a logo to my exact specifications within hours of me asking, all the way through the process he sent me updates (usually within a couple of minutes of providing details) and was able to send me every kind of format of picture that I could want.

Here’s the final design.

Pitweb Logo

Awesome! You can see more examples of Milans 3d work at his 3D Portfolio Site and in most cases, you should be able to get a completed project done for less than 100 USD! how’s that for value?!

I got in contact with Milan initially through GetaFreelancer.

I have used GAF before and I have found it to be very easy to post a project, within minutes of being posted there were quite a few responses and bids from prospective freelancers. You have your own private message board so you can stay in touch with each freelancer.

When you have someone you want to do the work, you put the fee into escrow ready to release when the project is finished.

Easy peasy freelancing!


How to add a shopping cart to WordPress

Shopping cartHere’s a great way to add a shopping cart to your WordPress blog so you can sell products directly from your site without the user having to go to an external site. If you offer products for sale on your blog, it’s much nicer for your customers to stay on the same site that they see the products on.

This plugin is simple and powerful, it uses AJAX for some parts of it and it seems to work just dandily on the blog I have installed it on. Here’s how you do it…

[expert instructions]
Download plugin, upload to plugins directory, activate it.
Visit the ecommerce tab and set options for country and currency, edit categories, edit checkout options, edit gateway options, add products.
sell!
[/ expert instructions]

[Hand hold instructions]
First, get yourself a copy of the WP Shopping Cart plugin and upload it to your plugins directory, go to you plugins page and activate it :

wp shopping cart plugin activate
(continue reading…)


Excel tip: How to not show zero values for forumla result

Here’s a handy little formula to add up a column or row of figures and only show the result if it’s a non-zero.

[html]=IF(SUM(D4:E4)>=1,SUM(D4:E4),”")[/html]

I find it hard to pick out positive numbers in a whole list of values if there are a lot of zero numbers. Look at the two following examples..

excel grab 1

if there are a whole lot of numbers in use like when you’re looking at a stock list that goes on for pages and you’re looking for what is left amongst a lot of zero quantity items, it’s really easy to miss the numbers. But, by using the IF function of Excel you can test the normal formula and only output a result for whatever value you want. ie.
[html]=IF(logical test,if true,if not true)[/html]
the example below uses this

  • logical test : = SUM(D4:E4)>=1
    the sum of the numbers between D4 and E4 is greater than equal to 1
  • if true: sum(D4:E4)
    if the logical test is true then output the sum of D4 to E4
  • if not true: “”
    output nothing, you could use whatever you want for the “if true” and “if not true”. Text would go in quotes and formulas go without.

    Here’s what it looks like:
    excel grab 2

    Loads better!

Comments Off more...

Cool little excel trick for showing simple bar graphs

Excel Simple BarHere’s a cool little thing to represent values as a simple bar graph without having to go to the trouble of using Excel’s graph function, it really helps to give you a good quick reference on the values.
It’s simply a case of using the formula command “=REPT(“|”,F4)”.

=REPT is the command, the next option is what to display and next is the cell that you wish to represent. All REPT does is REPEAT a given character as many times as the value of the cell specified.

Very useful!

Comments Off more...


  • 279
    Unique
    Today
    Powered By Google Analytics
  • Copyright © 1996-2010 FiddyP. All rights reserved.
    iDream theme by Templates Next | Powered by WordPress