Showing posts with label thesis. Show all posts
Showing posts with label thesis. Show all posts

Tuesday, November 8, 2011

Basic Customizations When Starting a Thesis Website

1. Disable Comments on All Pages
On the Design Options page:


2. Remove the Thesis attribution in the footer
Add this line to the custom_fuctions file.
// REMOVE THE DEFAULT THESIS FOOTER: Get smart with the Thesis theme...
remove_action('thesis_hook_footer', 'thesis_attribution');

3. Remove the "Wordpress Admin" link
 On the Design Options page:



4. Replace "0 Comments" with something more appealing

Sunday, January 23, 2011

Potentially Awesome Wordpress Plugins

WordPress Reusables
By allowing content to be stored and edited in a single location on WordPress it is possible to update a single piece of content that will update retroactively anywhere that the reusable is being used.

Why?
This could save an enormous amount of time when coding multiple sidebars where some content is repeated and other content is not, thereby saving the time of going through and copying and pasting changes to areas (widgets) that need to be duplicated. This could be a great plugin for anyone using Wordpress to power a static website where the sidebar content changes on different pages.

How to repeat (duplicate) widget content in multiple sidebars.







(Screenshots above are from the official Wordpress plugin page.)

Monday, May 24, 2010

How to add the new Google Analytics tracking code into Thesis

The new google analytics tracking code is supposed to go after the opening <body> tag and Thesis, as of version 1.7, only has an option in the admin area to add the tracking code just before the end of the HTML, which places scripts just before the closing </body> tag.

To get the analytics tracking code onto your Thesis site, just after the opening body tag, add the code below into your custom functions file to add the new version of the Google Analytics tracking code (as of May 24, 2010).


function google_analytics() { ?>

Paste your analytics tracking code here

<?php }

add_action('thesis_hook_before_html', 'google_analytics');

Tuesday, May 11, 2010

Wordpress e-commerce sites

Top contenders for a Wordpress e-commerce site


During my research of Wordpress e-commerce plugins and themes I noted some posts from the Thesis theme's DIYForums.

Some people have said that WP eStore works well in Thesis.
Post by Rickandersonaia

"There are a lot of questions and comments on the support forum about shopping cart plugins and etc, but none that seemed to really get something going easily without some pretty involved custom code."
permalink

---

Once you've committed yourself to a system it can be strong disincentive to change to something that works better.

With WordPress eStore most of your data entry isn't in a proprietary format. Most of it is plain old WordPress which means you can easily migrate to another solution when you need to.

FWIW, I don't recommend proprietary systems if I can help it. Especially if there is any chance that their pricing structure might move.

Now that makes me sound like a sales person for WP eStore. I'm not, I'm just a customer. However, my clients have found the plugin easy to use and I recommend it with the same enthusiasm I recommend Thesis.

So, I've been using WordPress eStore for quite some time and I haven't had any trouble with it. I haven't needed any support for this plugin (although I have for their membership plugin) and it works flawlessly with WordPress 2.8 - 3.0b1 and Thesis 1.6 - 1.7 (including any combination of those).

permalink

---

I've been using WP eStore with Thesis for quite a while now and it works flawlessly.

Here's what it's good for - Secure electronic downloads, simple shipping choices, Aweber integration. I highly recommend it for stores with a small selection. If you have hundreds of products or complex shipping requirements then I'd look for something else.

The thing I like about it i,s that while it has data base entries for products, it uses standard posts or pages for detailed product descriptions. This means that down the road if you want to ditch it and try something else the data isn't in a proprietary format.

It costs $35 but is very easy to use.

permalink

---

This user mentions that someone else had mentioned FoxyCart.

Advanced carts are a pain in general - good out of the box some of them, but whew, major changes can be tough with say, Miva or OSCommerce or Magento. So it's not necessarily a WP or Thesis issue, I don't like any, or at least most, of the carts online for static or non-CMS sites, either, not in terms of rapid deployment with heavy visual and functional customizations.
permalink

When I get my shop up and running, I'm going to try Mals e-commerce. It's free with a premium option. I first saw it on nutandbee.com which is a WordPress site, so I assume it will work with mine. It's certainly not for a huge mega-store, but I'm hoping it will work for my simple tee shirts and flair page.
If anyone is already using Mal's I'd love to know if it's working.
permalink

(Mal's e-commerce is a shopping cart run on a third-party site and it looks like the people running nutandbee.com added their products manually in HTML.)
---

Actually I chose the SHOPP plugin. I had read reviews on the other and was weary of lack of support. The website is not fully up live yet, but in the next 2 to 3 weeks it will be. So far so good though. There will be a new version of the plugin here in the next week or so that is to fix some bugs. Good support team too.
permalink

WP-ecommerce works like a charm with Thesis.
permalink

Here's an example of WP e-Commerce running on a WordPress website using the Thesis theme.
Get Kit - it's a website selling survival kits online in New Zealand.
permalink




This site is not powered by Thesis, but uses the WP E-commerce plugin
Infrared Security Cameras | Longse Electronics

A primer on E-commerce and shopping cart features
Ten Tips to Help Choose an E-Commerce Solution

Zen Cart!, The Art of E-commerce
An example of Wordpress "integrated" into Zen Cart's system. Not a pretty picture.
Looks like a pretty limited integration to me.

Monday, April 26, 2010

Thesis category pages customization and more

Thesis Tutorial – Creating Custom Categories - Sugarrae
- Add custom text at the top of category pages.

Thesis Tip #1 – Custom Images and Category Pages — Bill Erickson
- list categories posts on a page.

Thesis custom archive page
- setting up a custom archive page

Thesis Tutorial: Multiple Custom Page Templates — berchman.com
- Shows the basic fuction code needed to customize the homepage.
- Shows the basic function used to create a custom page template for any page using the page name and ID.

A comment with info for the above


10 hacks for the Thesis WordPress theme
“List style” Archive page template

Out of the box, Thesis comes with an “Archive” page template. Althought the template is pretty cool by default, some users, including myself, prefer an “Archive” page which list all posts.
Paste the following code in your custom_functions.php file in order to replace the default archive template by a list of all posts.



8 Thesis theme design tips to make your blog better


Remove “From the category archives” message

WordPress automatically displays “from the category archives” message on top of your blog categories. I removed that with a simple code in custom.css so the category pages look much cleaner now with Thesis theme teasers displaying only:

#archive_info {display:none;}


6 ways I customized my WordPress blog theme and how


thesis_hook_archives_template
Used to customize the appearance of the Archives Template (archives.php). This hook calls the thesis_archives_template function by default.

thesis_hook_archive_info
Above the first post only on archive views (e.g., category listings, date listings, search results).

Conditional Tags « WordPress Codex


How To: Create a Custom Page Template | Greg Rickaby dESIGN


Modifying The Wordpress Thesis Themes Custom Categories Further | Network Marketing Works!

Tutorials to Learn Thesis Customization

WordPress Thesis Theme Customization Part Three A: Background, Header & Sidebar - Kikolani

How to Install and Customize a Thesis Site in a Weekend — Thesis Theme HQ

Thesis Tutorial – Hooks for Dummies - Sugarrae

Thesis Answers about features, teasers, post images and page css styles

WordPress Thesis Theme Customization Part Three A: Background, Header & Sidebar - Kikolani

Change {0 Comments} Display

Configure Features and Teasers [via DIYthemes answers]
On the Reading Settings panel in WordPress, in the field for Blog pages show at most, enter the total of the number of Features and the number of Teasers you’ve decided to display.

For example, if you’ve chosen to have three Features and four Teasers, you should enter the number 7 in this field.

Note: This setting will also determine how many total posts display on other multi-post pages, such as your archives, search results, etc. This behavior is controlled by WordPress, not Thesis.

In the Thesis Page Options panel, under Home Page Options, expand the “Home Page Display” section. For Number of featured posts to show, select the number of posts you’ve decided on for Features.

Continuing our example, you would choose 3 for this option. This will automatically cause the remaining four posts on the home page to display as Teasers, simply by subtraction.

Create and Customize an Archives Page - DIYthemes Answers

Default Post Image and Thumbnail Settings
Show images on archives pages (This option is enabled by default.)

Thesis Tutorial: 10 Useful Answers to Common Thesis Questions
- Make your own static navbar in the header
- how to display teasers in one column
- How to use different CSS styles for different pages on the site




Create Pullquotes in Posts

Customize Teasers
* teasers one across instead of two
* adjusting teaser length
* Remove elipses [...]

Saturday, February 27, 2010

How to Remove the Wordpress Admin Link in the Thesis Footer

To remove the "Wordpress Admin" link in the Thesis footer, go the Thesis Options panel, open the Administration options, and deselect the checkbox for Show Admin Link in Footer.

This took a little bit of digging to find out, because I was sure that it would require modifying the custom functions file to remove some Thesis hook that was displaying this link.

The screenshot below shows the option enabled. Uncheck the last box.


If you found this post helpful, check out my list of Thesis customization bookmarks.

Sunday, February 14, 2010

Thesis Theme Reference

Header
Style Logo and Tagline
How To Put An Image As Your Header — Tutorials For The Thesis Wordpress Theme | Video Tutorials For The Thesis Wordpress Theme
How to Add a Custom Banner Image to the Thesis Theme Header - CSS Version
How To Add Logo In Thesis Theme Header
How To Embed A Flash Header — Tutorials For The Thesis Wordpress Theme | Video Tutorials For The Thesis Wordpress Theme
HTML in the header. Try it.

Navigation
Enable Drop Down Nav Menu

Sidebars
Using the No Sidebars Template for Pages

Posts & Pages

Footer

Design Customization

Hooks Reference

Setting up Thesis
Download the Thesis Theme
>> Folder renaming and FTP permissions prior to activating thesis from inside Worpdress.

Miscellaneous Articles and Tutorials

Things I Wish I Knew When I Started Using Thesis