secci
Forum Replies Created
-
Forum: Plugins
In reply to: [WP eCommerce] Call to a member function calculate_shipping()…Righto, how i fixed this for the time being, i removed all lines in the tables wp_wpsc_visitors, wp_wpsc_visitor_meta that were references to the user account I was having issues with. I’ll post again if the error returns.
Forum: Plugins
In reply to: [WP eCommerce] Call to a member function calculate_shipping()…I too am having this error, except I get more…
Warning: Attempt to modify property of non-object in /home/sportzpr/public_html/wp-content/plugins/wp-e-commerce/wpsc-includes/wpsc-meta-visitor.php on line 618
Fatal error: Call to a member function calculate_shipping() on a non-object in /home/sportzpr/public_html/wp-content/plugins/wp-e-commerce/wpsc-includes/cart.class.php on line 1065
The error only happens on one account when logged in, and apparently they created a coupon (for the first time) just before it so i’m thinking this will probably hold some bearing on the issue.
Forum: Plugins
In reply to: [WP eCommerce] Category image missing on product category pageForum: Plugins
In reply to: [WP eCommerce] Category image missing on product category pageYep, i’ve got the same deal. Going to dig a bit deeper into this, will keep you guys posted.
Forum: Plugins
In reply to: wp_localize_script adds a backslash | admin-ajax.phpas a workaround encode/decode the url?
wp_localize_script('cb_ajax_request', 'cbAjax', array('ajaxurl' => urlencode(admin_url('admin-ajax.php'))));var ajaxurl = decodeURIComponent(cbAjax.ajaxurl);or something of the like.
Forum: Plugins
In reply to: [BP Profile Privacy] [Plugin: BP Profile Privacy] not work for multisite^^^ what he said 🙂 just wasted an hour.
Forum: Plugins
In reply to: [MP3-jPlayer] mp3-jplayer: stopped workingdid you find out the exact solution?
cheers itst! been wondering that for months!
Forum: Fixing WordPress
In reply to: Remove sidebars from some pages@chikajm change the CSS id #content width to say 880px and at the bottom of the template file there should be something along the lines of get_sidebar();? just remove that and should have a sweet design.
Forum: Fixing WordPress
In reply to: Spammer Hourly Hitting My Comment Sectionyep, akismet is the way to go jeffrey!
Forum: Fixing WordPress
In reply to: listing subpages only from parent pagenice function buddy
Forum: Fixing WordPress
In reply to: can i run my site with no robots.txt file?It’s not crucial, but it can be beneficial. Can you paste your robots.txt here?
Forum: Fixing WordPress
In reply to: How to center a div inside parent?actually i think you’ll find you can remove a lot of unneeded css as well if you use that…
Forum: Fixing WordPress
In reply to: How to center a div inside parent?change the class .entry from max-width to just width so its a static width…
so eg width: 940px;
and then maybe make another class for those images
.centerimg { margin: 0px auto; display: block; }
something along those lines will make it work.
Forum: Fixing WordPress
In reply to: is_home() and is_front_page() known to be borked?i’ve been wondering why i could never get the front page and headspace to work, it was because of the multiple loops… god dam this has been bugging me for weeks.. thanks for the fix!