Topic RSS
9:01 pm
February 4, 2011
OfflineHi there – hoping someone can help. I just updated a client site to 4.2.7, and lost my custom stylesheet settings (even though I didn't overwrite the custom style file). Anyway, I'm trying to set the stylesheet to 'no custom stylesheet' and the settings keep reverting to Cookies and Cream for some reason. Where might I address this to fix it? Thanks!
same thing here, can't change back to "No Custom Stylesheet" and it has messed up a lot of work to home page. I upgraded due to having shipping problems that I hoped 4.27 would fix.

First order after upgrading to 4.25 c
Despite having set a base price for shipping that any additional item would add a per item cost, Paypal charged base price for each item.
I had set to also accept CC's through Authorize.net. After first order, got a new look email notifcation through website email, with weird characters in product title, had correct shipping. Then received second email 'New Order Notification" from customer's email through PayPal with normal PayPal invoice, shipping incorrect as per above.
I need to resolve this!

Here are the changes: (These are changes to version fix 4.27 only)
1. Open the Market Theme "functions.php" file for editing. (You can use the theme editor tool under the "Appearance" menu tab if you want.)
2. On or around line 36 you'll find the line:
if ($mkt_options['mkt_custom_style_sheet'] == null) { $mkt_options['mkt_custom_style_sheet'] = 'cookiesandcream'; }3. Delete that line.
4. Now, scroll down to around line #49 to the section that says this:
// **** START - Set Default Payment Gateway ****/
if (get_option($mkt_options_ver) == null) {
$mkt_options['mkt_pk_paypal'] = '1';
}
// **** END - Set Default Payment Gateway ****/5. Change this section to this:
// **** START - Set Default Payment Gateway and Custom Style ****/
if (get_option($mkt_options_ver) == null) {
$mkt_options['mkt_pk_paypal'] = '1';
$mkt_options['mkt_custom_style_sheet'] = 'cookiesandcream';
}
// **** END - Set Default Payment Gateway and Custom Style ****/6. Next, scroll down to around line #572 where you'll find this line:
$options = get_option($mkt_options_ver);
7. Immediately AFTER this line, add the following code:
// **** START - Set Default Custom Style ****/
if (get_option($mkt_options_ver) == null) {
$options['mkt_custom_style_sheet'] = 'cookiesandcream';
}
// **** END - Set Default Custom Style ****/8. Finally, scroll down to on or around line #601 and find the line that says this:
if ($options['mkt_custom_style_sheet'] ==null) { $options['mkt_custom_style_sheet'] = $mkt_options['mkt_custom_style_sheet']; }
9. Delete that line.
10. Save the file, and that should do it.
I hope this helps.
Most Users Ever Online: 40
Currently Online:
23 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Member Stats:
Guest Posters: 428
Members: 2252
Moderators: 1
Admins: 1
Forum Stats:
Groups: 1
Forums: 4
Topics: 2983
Posts: 16042
Newest Members: Allsed, deleteduser, shanm, slidesketch, jimharrison, vmi
Moderators: Market Admin (5051)
Administrators: Market Admin (5051)

Log In
Register
Home


