Zen Cart Logo
Forums / All Other Contributions/Addons / site wide, category & product mark up issue

site wide, category & product mark up issue

Locked

Views: 2,148

Results 1 to 12 of 12
This thread is locked. New replies are disabled.
28 Jul 2009, 11:00 AM
#1
airbag avatar

airbag

New Zenner

Join Date:
May 2006
Posts:
7
Plugin Contributions:
0

site wide, category & product mark up issue

Hello, can anyone confirm that the "site wide, category & product mark up" module is working for zen cart 1.3.8a.
The download link says it is working, and it works fine in 1.3.8 install, but for 1.3.8a the module adjusts the prices sitewide, but will not work when specifying categories or products.

Any info will help with our troubleshooting thanks.
airbag

19 Oct 2009, 6:05 AM
#2
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Yep - Im having the same problem. Im thinking that a literal needs to be escaped somewhere.... Im going to try to figure it out but if anyone already did, please let us know. Will save me time! ;)

19 Oct 2009, 8:28 AM
#3
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Put a semicolon in front of the first (only) requirement and it will work. For some reason that I cant figure out explode is dropping the first value! Really weird.

ex dont use p(2334)150%
use ;p(2334)150%

dont use p(2334)150%;p(2336)200%
use ;p(2334)150%;p(2336)200%

Maybe one of you expert php peops can tell me why explode would lose its first argument? It looks fine to me.

function calculateMarkUp($product_id, $products_final_price) {
		$mark_up_nospace = str_replace(' ','', MARK_UP_STRING);
		$mark_up_condition_array = explode(';',$mark_up_nospace);
		
		foreach($mark_up_condition_array as $key=>$condition) {
			if ($key==0) {
19 Oct 2009, 6:19 PM
#4
timdwyer42 avatar

timdwyer42

Zen Follower

Join Date:
Apr 2009
Posts:
149
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Is anyone else having problems with this if you have specials prices? For me, it does adjust the specials price on the site correctly, but when the product is added to the shoping cart the price is incorrect.

9 Dec 2009, 3:35 AM
#5
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Mine does not work either...

9 Dec 2009, 3:46 AM
#6
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Mine does not work either... It appears to mark up the price a second time when entering the cart: for instance

For instance: Mark up 25%

Initial price 1.00
New marked up price 1.25
Add a special of .05 cents

Price shows shows 1.25 crossed out and special price of 1.20 but when you get to cart 25% is added back on so check out price is 1.50. (1.20 +.30).

Maybe author can speedily fix?

9 Dec 2009, 4:59 AM
#7
makenoiz avatar

makenoiz

Zen Follower

Join Date:
Mar 2006
Posts:
284
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Try removing the override/config.core.php file. I just renames the override folder to override_ to test. My cart is happy.

11 Feb 2010, 1:26 AM
#8
jrennaker avatar

jrennaker

New Zenner

Join Date:
Aug 2006
Posts:
17
Plugin Contributions:
0

Re: site wide, category & product mark up issue

I am having an entirely different problem. When I export my products to googlebase, it uploads the cost of the product instead of the marked up price. Any one seen this one?

11 Apr 2010, 3:00 PM
#9
alexhigh avatar

alexhigh

New Zenner

Join Date:
Nov 2009
Posts:
27
Plugin Contributions:
0

Re: site wide, category & product mark up issue

I'm getting the same problem as jrennaker in regard to my google feed. I'm not sure why but google is collecting my non marked-up price for products.

Does anyone out there have any idea how to solve this problemo?

12 Apr 2010, 8:20 PM
#10
divavocals avatar

divavocals

Totally Zenned

Join Date:
Jan 2007
Location:
Los Angeles, California, United States
Posts:
10,011
Plugin Contributions:
3

Re: site wide, category & product mark up issue

alexhigh:

I'm getting the same problem as jrennaker in regard to my google feed. I'm not sure why but google is collecting my non marked-up price for products.

Does anyone out there have any idea how to solve this problemo?Dunno how to fix it, but you might wanna try posting this question on the Gooogle Base support thread as anyone who can help you would have to be familiar with the Googlebase mod as well as this mod..

15 Apr 2010, 5:09 PM
#11
alexhigh avatar

alexhigh

New Zenner

Join Date:
Nov 2009
Posts:
27
Plugin Contributions:
0

Re: site wide, category & product mark up issue

I managed to mark up my prices via other means in the end using sql & cron, outlined here: http://www.zen-cart.com/forum/showthread.php?p=870791#post870791

Although it should be noted that the technique outlined is only really suitable for those that also have their prices being fed automatically into their site by a seperate feed before this cron job is executed, otherwise prices will increase exponentially.

7 Dec 2010, 12:36 AM
#12
ppco avatar

ppco

New Zenner

Join Date:
May 2009
Posts:
44
Plugin Contributions:
0

Re: site wide, category & product mark up issue

Hello.

I have installed the sitewide markup 1.1 tool but am not sure where the sql installer goes. I just ftp this to the core of my site but perhaps it should go into "includes"?

I do not see anywhere in my admin that I can now adjust the markup site wide.

Thanks for any help.