WordPress Script To Blogger

WordPress Script To Blogger
Hello:

I need that my PHP WordPress Script that post content into wordpress also can do into Blogger.com blogs.

I want different script not in the same at wordpress script.

I already have a blogger script that post into blogger posts, but need add the same functions as the wordpress script.

The wordpress script post:

– Post titles (Like: Watch Movie Online Free)
– Summary – Plot from IMDB.com
– Images
– News fron blogsearch
– Youtube Videos
– Related Links.

Check: www.watchironman2.com (test site usign this script)

This script also post categories and tags.

My Blogger script post:

– Post title
– Images from google images.

Need are all functions as the wordpress script. the API for blogger is ready and works OK in the blogger script.

So i need PH Expert that can add the same wordpress functions to my blogger script.

The wordpress script cost me $100 – so i can pay $50 for anyone who can add the same function to blogger script.

Thanks

Flash And Active State

Flash And Active State
1. On a client;s wordpress site we require a flash movie (already created: https://www.scriptlance.com/cgi-bin/freelancers/files.cgi?t=sf&f=127101047361649633) to read data from a wordpress posts category. There is some php code in the attachment which may help.

2. The WP plugin “Hierarchical Pages” is used to show the sub pages in the left sidebar. We want the “Active Link” to be in dark blue if you are on that page.

There is a readme.txt in the plugin that may help.

Can you do this, and if so what is the price, and timing?

Magento Multi-site – Fix Bugs

Magento Multi-site – Fix Bugs
We have a Magento Multi-Site setup (there is 1 main site and 6 sub sites)


Bug #1
When Payment details are being passed to Paypal for payment, the shopping cart contents are not being displayed in the paypal payment

Bug #2
When Clicking add to cart on subsites, the item doesn’t get added to cart the first time and needs to be added again. (the main site add to cart works fine)
Also for one of the subsites when clicking the shopping cart logo, it doesn’t take you to the shopping cart.

Bug #3
Shipping Amount not being displayed in proper currency format. (the numerical amount is fine, but formatting is not, ie instead of $5 it shows -5.00)
– The programmer must be familiar with Magento-Multi site setup

Bug #4
Some minor HTML formatting (a few blocks need to be moved around a bit so they do not run into each other)

10 Kick-Ass Magento Templates

10 Kick-Ass Magento Templates

I’m proud to announce that ThemeForest is now selling Magento eCommerce templates at cheap prices that any business or individual can afford. We’ve launched with thirty-five awesome Magento templates, but we’re just scratching the surface. By the end of the year, ThemeForest will be the premier location for buying and selling Magento templates! Here are some of the best that we’ve launched with.


1. Woodrow

Woodrow

2. Organic

Organic

3. Acumen

Acumen

4. Boho

Boho

5. Media Store

Media Store

6. Contemporary Design

Contemporary Design

7. Tribeca

Tribeca

8. Tecknica

Tecknica

9. Gnarly

Gnarly

10. Guise

Guise

So if you have a spare moment, and are in the market for an incredible Magento template, I hope you’ll stop by your neighborhood ThemeForest and take a look around! And don’t forget, if you’re a developer of eCommerce themes, now might be the perfect time to look into signing up for a free author account, and earning 40-70% of every sale you make!



Magento for Designers: Part 3

Magento for Designers: Part 3

Magento is a stunningly powerful e-commerce platform. In this miniseries, we’ll learn how to get started with the platform, getting to know the terminologies, setting up a store and all related aspects of it and finally learn how to customize it to make it our very own.

In this third part, we’ll focus on the process behind theming Magento: how to install themes, the various concepts you’ll need to understand to create a theme and the general file structure. Excited? Let’s get started!

The Full Series


A Quick Recap

In the last part, we saw how to get your Magento store from installed to ready for deployment including how to set up your products, product categories, taxes, shipping, payment gateways and many more.

Today, we’ll look at the basics of Magento theming. We’ll learn the general idea behind Magento themes, the various terminologies behind it and the basic structure of a theme.


Magento Theme Basics

First up, theming Magento isn’t really as hard as it is purported. It’s a little different from how WordPress or Joomla handles themes, yes, but definitely not difficult. All you need to know is a little know how to start theming like a pro!

To make it brutally simple, a Magento theme is a collection of PHTML, CSS and JS files thrown in together along with XML files to define the structure. A PHTML file consists of regular HTML markup interspersed by PHP code for the functionality. In case, you’re confused, a random block of code looks like so:

<div class="quick-access">
        <?php echo $this->getChildHtml('store_language') ?>
        <p class="welcome-msg"><?php echo $this->getWelcome()?></p>
        <?php echo $this->getChildHtml('topLinks') ?>
</div>

See? It’s really simple once you wrap your head around it. If you’ve worked with creating themes for other systems, great, you’ll pick this up rather quickly. If not, no worries, I’ll walk you through the entire process.

Note that in Magento, the front end and the back end are skinned completely separately. I’m assuming most of you won’t need to skin the backend so I’ll stick to theming the front end alone.


Installing a Theme

Before we start, a number of people DMed me through Twitter/emailed me asking the same question: how to install a theme. I’ll talk about it first.

There are two ways to install a Magento theme:

  • The traditional method where you can just copy the packaged theme to appropriate folder
  • Magento Connect

I’ll talk briefly about both.

Direct Upload/Copy

The first method is the one you’re used to. Download a theme, upload it and done. But you’ll need to know where to upload since this works a little differently than you’d assume.

Themes are packaged differently according to the source but at it’s core, you have 2 folders:

  • app
  • skin

You can just drag these to the root of the installation and let it merge with the existing data.

If by chance, you get the theme packaged as a collection of 3 folders, don’t worry.

The folder containing the PHTML files and the one containing the XML files go into root/app/design/frontend/default/themename while the one containing the CSS files, images and other assets goes into root/skin/frontend/default/themename.

Right now, this is all you need to do. I’ll explain why each part goes to a specific location later below. You can activate your theme now.

Tutorial Image

Navigate to System -> Design and click on Add Design Change.

Tutorial Image

Choose the theme you want, click on save and you’re done.

Magento Connect

Using Magento Connect is easier provided it is available there. Navigate to System ->Magento Connect -> Magento Connect Manager.

After logging in, you’ll be asked to enter the extension key of the theme you want to install. Enter the key and wait for the system to do it’s thing.

Tutorial Image
Tutorial Image

After it has downloaded the necessary files and placed them where they need to be, you can now activate the theme like before.


Magento Design Concepts You Need to Master

When working with Magento, there are a few design related concepts you need to wrap your mind around before you can even start modifying the default theme.

Layouts

Layouts is a clever, new idea in Magento. This system lets you define a page’s, any page’s, structure through properly formed XML tags.

Essentially, you can dictate which section of the page goes where by changing just a few attributes in an XML file. Each view or module gets it’s layout specified by its own XML file.

Layouts in Magento is a big topic and just a few paragraphs here won’t do it justice. Along the way, I’ll cover all the necessary information you need to build your own theme along with a detailed article on layouts to cover all the advanced things you can do with this functionality.

For now, if you’re interested, here is a small snippet to get an idea of what layouts are:

<block type="page/html_notices" name="global_notices" as="global_notices" template="page/html/notices.phtml" />

            <block type="page/html_header" name="header" as="header">
                <block type="page/template_links" name="top.links" as="topLinks"/>
                <block type="page/switch" name="store_language" as="store_language" template="page/switch/languages.phtml"/>
                <block type="core/text_list" name="top.menu" as="topMenu"/>
                <block type="page/html_wrapper" name="top.container" as="topContainer" translate="label">
                    <label>Page Header</label>
                    <action method="setElementClass"><value>top-container</value></action>
                </block>
            </block>

            <block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>

            <block type="core/text_list" name="left" as="left" translate="label">
                <label>Left Column</label>
            </block>

            <block type="core/messages" name="global_messages" as="global_messages"/>
            <block type="core/messages" name="messages" as="messages"/>

Templates

Templates consist of PHTML files filled with regular HTML markup and PHP code. Similar to WordPress, you use a number of predefined methods to specify the output. Just like with other popular systems, important sections like the header, footer and the sidebar are placed in separate files and pulled in when necessary.

You can have different templates for each view of Magento. For example, you can have different code for a wish list or a checkout page instead of using the same look for the entire site.

Here is a piece of a template for the curious:

<ul class="products-grid">

         <li class="item">
              <p class="product-image">
                    <a href="<?php echo $_product->getProductUrl() ?>"
		        title="<?php echo $this->htmlEscape($this->getImageLabel($_product, 'small_image')) ?>">
                        <img src="<?php echo $this->helper('catalog/image')
				         ->init($_product, 'small_image')
				         ->resize(100, 100); ?>"
		                          width="100" height="100"
		                          alt="<?php echo $this->htmlEscape($this
				         ->getImageLabel($_product, 'small_image')) ?>"
		                          title="<?php echo $this->htmlEscape($this
			          	 ->getImageLabel($_product, 'small_image')) ?>" />
                    </a>
              </p>
              <h5 class="product-name">
				<a href="<?php echo $_product->getProductUrl() ?>"
				title="<?php echo $this->htmlEscape($_product->getName()) ?>">
				<?php echo $this->htmlEscape($_product->getName()) ?></a>
	     </h5>
                <?php echo $this->getReviewsSummaryHtml($_product, 'short') ?>
                <?php echo $this->getPriceHtml($_product, true, '-new') ?>

            </li>
        <?php if ($i%$_columnCount==0 || $i==count($_products)): ?>
</ul>

Looks a little messy, I know but strip out the PHP parts and you’ll see how similar it is to other systems.

Skins

Skins are nothing but the CSS files, JavaScript files, images and other assets you’re using in the markup to create your design. Essentially all non PHP assets go here. Fonts for embedding? Some swanky flash demo? A spiffy piece of SVG? All of those fall under this category.

Blocks

Blocks are the integral building blocks of a theme and let you build your theme in a modular fashion.

As part of layouts, this forms the backbone of Magento’s strong templating system. Blocks are essentially sections which you can move around using the XML mentioned above to modify how a page is presented.

Blocks need to reference a relevant template file so that Magento can pull in the required file. A little confused? Here is an example.

<block type="page/html_breadcrumbs" name="breadcrumbs" as="breadcrumbs"/>

We essentially define a new block, which template to load by specifying the type of block and a name. It’s a little different from what we’ve been used to but trust me you’ll get it once you get started developing. Either way, I’ll cover blocks a bit more in detail when we’re building our theme and still more I’ll do a full write up on layouts and blocks down the line so don’t worry if it doesn’t make complete sense now. Just get a general feel for the topics at hand.

Structural Blocks

A structural block defines the basic structure of a page. Think HTML 5 header, footer and aside sections. They were created for the sole purpose of visual demarcation of a design.

Tutorial Image

From the Magento docs

Content Blocks

Content blocks are similar to your regular container/wrapper DIV elements you use in a design. Just like with design, each content block contains a specific functionality or purpose. A menu in your header, a callout in the sidebar, legal clarifications in the footer all go into separate content blocks.

Remember, content blocks are still blocks and map to a specific PHTML file to generate and render its HTML contents.

Tutorial Image

From the Magento docs

Interface

Mentioned finally because from a strict theming perspective of a beginner, this shouldn’t come into play for quite a while.

To be simple, an interface is a named collection of themes you can leverage to define the look of your store.


Important Locations to Keep in Mind Whilst Theming

Just like other powerful software, Magento has a complex file structure. However, for theming along, you can narrow your focus down considerably.

Tutorial ImageTutorial Image

Here are the locations you’ll be working on when creating a theme:

  • root/app/design/frontend/default – The folder of the default interface. Aptly named default, by default. (Heh!)
  • root/app/design/frontend/default/Cirrus – The folder for the theme we will be building. I’ve named our theme, Cirrus
  • root/skin/frontend/default – The folder of the default interface.
  • root/skin/frontend/default/Cirrus – The folder where all the assets for our theme will be placed.

A Theme’s Directory Structure

Magento requires that your executable PHP content be placed seperately from your static assets which is why you have a separate skin directory on your root. While this may seem counter-productive at first, once you’ve slightly adapted your workflow, you’ll realize that this move increases the general security of your installation..

Nevertheless, a theme is typically split into the following parts.

  • Layouts – root/app/design/frontend/default/Cirrus/layouts
  • Templates – root/app/design/frontend/default/Cirrus/templates
  • Skins – root/skin/frontend/default/Cirrus

The [Second to] Last Word

And we are done! We looked at the basic concepts behind theming Magento and managing themes. Hopefully this has been useful to you and you found it interesting. Since this is a rather new topic for a lot of readers I’ll be closely watching the comments section so chime in there if you’re having any doubts.

Questions? Nice things to say? Criticisms? Hit the comments section and leave me a comment. Happy coding!


What We’ll Build in the Upcoming Parts

So far, we’ve been dealing strictly theoretically with the platform. A necessity considering Magento’s size and scope. But now that we have all the basics nailed down we can move on to the fun part.

Remember how when creating a skin for a CMS/generic system you always start from a skeleton and build outwards? Like Kubrick for WordPress? If you thought we were going to take one and start building a theme out of it, you thought wrong. No, sir. We’re going to build a custom, bare bones skin similar to the Blank skin completely from scratch. A skin you can use yourselves as a base for your own skin.

All this and more in the upcoming parts. Stay tuned!


The Full Series


Purchase Magento Themes from ThemeForest

ThemeForest

Did you know that your friendly neighborhood ThemeForest sells premium quality Magento themes? Whether you’re a skilled Magento developer looking to start profiting from your efforts, or a buyer, hoping to build your first eCommerce store, we’ve got you covered!



Quality Copy Writer Needed

Quality Copy Writer Needed
A quality copywriter is needed for 100 articles.
Must be committed, have good english, deliver on time.
I can pay $4 per articles. If you can’t deliver quality articles for that price the please do not bid, as it can’t be negotiated.
5 articles must be delivered every day.
Payment is made weekly. If you want upfront payment then please do not bid.
The articles will need to be researched and completely original.
Any articles that are not original will be returned for unpaid.

Online Music Store In Magento

Online Music Store In Magento
Our on line music and video selling portal platform will be for multiple vendors of music (labels) music sales will be in two formats digital download and physical copy dispatch through courier. We will provide them account for sub admin accessibility to manage their music database, create compilations and fix prices and offer discounts etc.

All reporting and analysing features like

View sales reports, shipping’s, inventory, Viewers graph i.e. which is most popular amongst viewers, how many visitors listened demo tracks Combined sales report (with date range)
All tracks report (sold/viewed)
Invoices, taxes, commissions, bank transfer to them by main admin

The entire multiple vendors’ tracks will be stored in one place of the server When visitor search any song, category, sub category etc. the result will show all the available tracks of all vendors showing previews, track details prices etc. like in
http://www.amazon.com/s/ref=nb_sb_noss?url=search-alias%3Ddigital-music&field-keywords=marathi&x=20&y=17

We can provide more details to interested bidders.

Website Creation/design 2

Website Creation/design 2
Hello,

I’m looking for someone who can build me one of my client’s website for me.

It has already been designed, so we know what we want.

I was going to build this myself, but my time has become too tight for the time being, and i’m not proficient enough with the coding.

The site will NOT be ecommerce – it’s more a brochure of what the company provides to its clients.

The site wants to be dynamic with moving images/logo, with other images fading in etc (all has been designed and decided)

I have attached an excel file which describes the structure and with certain features i want. There’s also an image file which shows the look and feel of the site.

Not all the site’s pages have been designed yet – but the details with supporting images will be provided by my client in due course. However, for now the site needs building upto a point – a lot can be done, and for pages that are to be created i want just a bit of text saying “Under Construction”.

My client has an existing site on their domain, so i’m thinking we should build the new site on a domain i have until we’re happy to move it in one go to my client’s domain.

It’s an obvious point, but i am on a tight budget and so hopefully i’ll be able to get someone good at a reasonable cost.

The cost of this project will be to take the site as far as it presently can be built. I will transact the payment when i am satisfied this has been done.

I welcome any questions

Thanks

James Forster

Simple Mlm Website (php/mysq 2

Simple Mlm Website (php/mysq 2
Hi,

I want to create a very simple MLM site details in attached files, experience in MLM site is added + . Somebody close to my timezone or in my timezone (IST) preferred.

Done give me those copy paste applications, read my specifications and mention the project deadline in application as a proof that you have read the doc file attached.

I’ll discuss more about the project in messages with deserving candidate, also post if you have any doubts.

Escrow to only rated profiles. Newbies or non-rated no upfront.

Thanks,
Subhadeep Gayen

Php Guru Needed

Php Guru Needed
I have an ecommerce program written in PHP that I need to have commented so that I know exactly what each part of the code does. I have the manual to what different pages do, but i want to know what each function, variable, array does and why and i wan it commented in the proggie itself. I need someone fluent in English and loves to teach.

Academic Writer Wanted

Academic Writer Wanted
Academic writer watned on urgent basis:

We are looking for experienced/non-expericed essay, thesis and dissertation writers. If you have an academic degree and want to be part of the best writing team out there to help others succeed, you are more than welcome to join us.

If your application proves successful, you enjoy an opportunity to receive a high yield flexible income while further refining your academic skills in the areas of your choice.