Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#529 2010-10-13 01:57:27

jacknails
Member
From: Israel
Registered: 2009-12-12
Posts: 17
Website

Re: yab_shop (simple textpattern shop with paypal support)

This plugin looks amazing! It can be a great solution for simple e-commerce sites that don’t need a membership option. But if it could work with some sort of membership plugin it has the potential to be a complete solution.

Is it possible to have more than 3 options for each product? If so that would be fantastic :)

Kudos trenc!!!

Offline

#530 2010-10-13 07:58:23

trenc
Plugin Author
From: Malmö
Registered: 2008-02-27
Posts: 572
Website GitHub

Re: yab_shop (simple textpattern shop with paypal support)

Hi Daniel,

Is it possible to have more than 3 options for each product? If so that would be fantastic :)

No sorry, this is not possible in this version.

Offline

#531 2010-10-20 09:39:17

miles
Member
From: Plymouth
Registered: 2008-05-22
Posts: 78
Website

Re: yab_shop (simple textpattern shop with paypal support)

Hi Hope someone can help.

Couple of questions.

1. Is it possible so that when someone clicks add to basket on a item it will go right to the checkout.

2. The box to leave a message to the seller doesn’t seem to work. It doesn’t show on paypal at all

Many thanks,

Miles

Offline

#532 2010-10-31 07:04:22

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: yab_shop (simple textpattern shop with paypal support)

Hi Tommy, wondering if there is any update on making yab_shop MLP compatible? I have a project that requires MLP and yab_shop to play nice together. Please email me if its a case of funding some development work.

Offline

#533 2010-10-31 11:58:03

els
Moderator
From: The Netherlands
Registered: 2004-06-06
Posts: 7,458

Re: yab_shop (simple textpattern shop with paypal support)

jstubbs wrote:

Hi Tommy, wondering if there is any update on making yab_shop MLP compatible? I have a project that requires MLP and yab_shop to play nice together. Please email me if its a case of funding some development work.

I would be interested as well!

Offline

#534 2010-11-04 14:10:41

trenc
Plugin Author
From: Malmö
Registered: 2008-02-27
Posts: 572
Website GitHub

Re: yab_shop (simple textpattern shop with paypal support)

Hi All,

I wrote Jonathan some lines per mail. For all others, who are interested in: It’s sadly a not so trivial task and it’s not a matter of funding. It’s a matter of time. :(

Yab_shop needs also a complete code rewrite im my eyes. The code base is nearly two years old and meanwhile hard to manage. Before implementig new features I would like to rewrite the code to some OOP and more atomic approach and sort out the bugs there currently exists (See some minor bugs and cosmetics in the posts above).

Additionally to this I’m currently in poor health and my hoster for my private projects had some problems with his new hardware/filesystem, so the demoshop and my plugins are currently not available.

The latest version of yab_shop can be temporarily found here: yab_shop_v0.8

If you need another version or plugin, please drop a line!

Tommy

Offline

#535 2010-11-04 18:09:04

els
Moderator
From: The Netherlands
Registered: 2004-06-06
Posts: 7,458

Re: yab_shop (simple textpattern shop with paypal support)

Hi Tommy, thanks for your update on this. No problem, and most important: get well soon!

Offline

#536 2010-11-26 05:40:31

PaperQuilling
New Member
Registered: 2010-11-26
Posts: 1

Re: yab_shop (simple textpattern shop with paypal support)

Hi, wondering if anyone can help me. I just installed yab_shop and setup a product, but it and the checkout page aren’t styled. I looked at the source code and can see yab_shop classes (ex. class=“yab-shop-required yab-shop-surname”) but there was no css file included in download. I don’t know much css and am hoping it is available as a separate download file?
Thanks,
Debbie

Offline

#537 2010-11-26 07:17:07

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: yab_shop (simple textpattern shop with paypal support)

The demo shop CSS can be fund here: http://demoshop.yablo.de/design.css

Should help you get started with styling.

Offline

#538 2010-11-26 10:06:32

Kreeltje
Member
Registered: 2008-12-23
Posts: 21

Re: yab_shop (simple textpattern shop with paypal support)

Hi, how can i add an onChange attribute to the select-tag?
I want to use this on the payment selection field, or is this not possible?

Offline

#539 2010-11-26 14:20:13

jstubbs
Moderator
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: yab_shop (simple textpattern shop with paypal support)

Should be, but you’d have to check the yab_ code.

Offline

#540 2010-11-27 09:41:38

trenc
Plugin Author
From: Malmö
Registered: 2008-02-27
Posts: 572
Website GitHub

Re: yab_shop (simple textpattern shop with paypal support)

Hi, how can i add an onChange attribute to the select-tag?
I want to use this on the payment selection field, or is this not possible?

You don’t have to edit the code to add an onChange Attribute.
Everey select tag generated by yab_shop has an unique HTML id, so you can do this with some DOM javascript.

Example with jQuery, where #html-id is the id of the select tag:

<script type="text/javascript"> 
/* <![CDATA[ */
	$(document).ready(function() {
		$('#html-id').change(function () {
			// your function here;
		})
	});
/* ]]> */
</script>

Offline

Board footer

Powered by FluxBB