Posts tagged with ‘Themes’

Installing plugins and themes with FTP

A bit of an update on a feature we're working on right now that should make adding and updating themes and plugins a lot easier.

ProofBuddy 2.0 is dependent on server settings on whether it can install plugins and themes automatically, and most hosts aren't setup to allow ProofBuddy to do what it needs to do. And they're setup the right way. While it would be nice for ProofBuddy to have access to write anywhere it needs to, it's generally safer for a host to not allow that to happen.

With ProofBuddy 2.1 we're adding the ability to upload themes and plugins using your FTP login information instead which should make it easier to add new plugins and themes. ProofBuddy will also occasionally check for new versions of any plugins and themes you have installed and let you update to the newest versions automatically as well.

The goal is for this also to allow you to update ProofBuddy through this same process.

And here's an obligatory screen shot of the first step to installing a new plugin via the new FTP uploaded.

The first step in uploading a plugin in ProofBuddy 2.1

Categories:Development Blog
Tags:, , ,

Pink Simplicity updated for ProofBuddy 2.0

Our Pink Simplicity theme has been updated for ProofBuddy 2.0 and is now available for download.

Installation
To add this theme either install it through the theme browser or click the link below to download and upload using your favorite FTP program.

192.7 KiB - 920 downloads
Categories:Themes
Tags:, , ,

NewsPrint Theme available for ProofBuddy 2.0

The Daily News theme has been updated for ProofBuddy and renamed to NewsPrint.  With updates, the Daily News theme already had versions 1.0, 2.0, and 2.5.  Rather than introduce more confusion we decided it best to rename it.  The design is still the same though.

 

Installing the theme

You can either install through the theme browser or download the file below and upload to your themes folder using an FTP client.

97.5 KiB - 990 downloads
Categories:Themes
Tags:, ,

18% Gray updated for ProofBuddy 2.0

18% Gray, by far the most popular theme for ProofBuddy, has been updated to support ProofBuddy 2.0. 

The new version fixes broken links, adds support for child albums, and adds support for categorized pricing.

Download

The theme browser has been updated with the new version.  If permissions on your server do not allow installation through the theme browser you can also click on the download link below and upload using your favorite FTP program.

100.4 KiB - 1,593 downloads
Categories:Themes
Tags:, , , ,

Daily News updated for ProofBuddy 2.0

An updated copy of the Daily News theme has been released that supports ProofBuddy 2.0. 

Updates

  • Pop-up links changed to support the new custom page format
  • Added variables to include the Return to Album link on child albums
99.9 KiB - 984 downloads
Categories:Themes
Tags:,

Pink Simplicity Theme

Simply Pink is a theme designed to be used when a more feminine look is needed.  The background is a light pink with slightly darker accent images.  All text is dark red.

Screen Shots

 

Changing the Font

Several of the headers are graphics built on the fly from a GPL licensed true type font called Penguin Attack.  If you would like to change the font you just need to upload your TTF file to the /font/ folder under the theme directory and name the file font.ttf. 

Be sure that it's allowed to use the font for commercial purposes.  I had a very hard time finding a font that fit the style I was looking for that was free for all uses.

More about the font

There is a script called drawfont.php in the /images/ folder of this theme that handles building the graphic files.  It is something I'm working on as a plugin for a future version of ProofBuddy so it is included in this theme more as a test than anything.  But this theme just wouldn't look right with boring sans serif fonts.

Download

This theme is available in the Theme Browser or you can download it below. 

189.5 KiB - 1,593 downloads
Categories:Themes
Tags:, , , ,

18% Gray Theme

A new theme is available for download named 18% Gray.  It has a dark gray background with red accents.  It also has an example of a custom page opening in a popup.

Screen Shots

Screen shot of the main image page

Full image page

 

Shopping cart page

 

Editing the custom page

After your client logs in to this theme there will be a link titled About Us across the top right.  You will want to edit the about_us.tpl file that's included in the download so that the page has the information you want it to have.

You can also change the text of the link from About Us by editing the theme language file.

If you don't want the About Us page at all you can just delete the about_us.tpl file from the theme directory and the link will not show.

Thanks

I want to thank Richard May of Richard May Photography for sending me a screen shot of the theme he created.  It was the screen shot below that inspired 18% Gray.

Download

101.3 KiB - 1,866 downloads
Categories:Themes
Tags:,

Daily News version 2

A new version of the Daily News theme is available for download.  It includes several changes that have been requested by users, and rather than overwriting the current version I decided to have both available for download.

Changes

  • Each item in the add to cart section is now wrapped in CSS classes to make it easier to customize.
  • An example custom page is included. The example is for a list of package contents, but it can be easily edited to display whatever you would like.
  • The color, grayscale, and sepia links; which were left out of the previous version; are included.

99.1 KiB - 1,554 downloads
Categories:Themes
Tags:, ,

Opening PayPal in a new window

A couple of users have asked how to have the PayPal button open a new window instead of opening in the same one.  It's fairly easy with a little bit of JavaScript.

Open the thanks.tpl file from whatever theme you're using.  Look for a line with <!--paypalbutton--> in it.  Below that line add the following.

 

<script type="text/javascript">
for (var i=0; i<document.forms.length; i++)
    {
    if (document.forms[i].action.match(/paypal\.com/))
        {
        document.forms[i].target = "_blank";
        }
    }
</script>

 

What this does is loop through any forms (the PayPal link is an HTML form with several hidden fields and one graphic submit button) on the page and if they are submitting to paypal.com the target is changed to _blank which makes the link open a new page.  Any other forms (search boxes, email subscription fields, etc) will not be affected.

Why?

So, why do you need this?  The user that first asked was running ProofBuddy inside a frameset on their site.  For some reason PayPal has issues with this and throws a very nondescript error when you try to access from a framed page.  She needed a way to break out of the frameset.

Some people also just like the idea of opening PayPal in a separate window so that their site is still open.

Categories:Development Blog
Tags:, , ,