ablears
Forum Replies Created
-
I’m using Roots too. Try using the wp_footer action instead. For example:
function my_theme_deregister_plugin_assets_footer() { wp_dequeue_style('yarppRelatedCss'); } add_action( 'wp_footer', 'my_theme_deregister_plugin_assets_footer' );Forum: Plugins
In reply to: [WP eCommerce] Gift certificates plugin for WP E-Commerce?Apparently not. Sorry.
I’ve tried emailing the current owners of http://wpecommercegiftcertificate.com (the original devs sold the plugin to another team). I haven’t heard back in over a month so I assume they are no longer interested in supporting the product.
Their documentation is useless too. It supports PayPal – but which PayPal? Standard? Express? Payments Pro? No idea.
I’m also a developer and want to customise one of the plugins to add PayPal Express and percentage-based discounts. Let me know if you find anything out.
Forum: Plugins
In reply to: [WP e-Commerce Related Products] Using php insert to manually displayI know it’s an old post but in case anyone else has the same issue… I think you’ve moved the WP e-Commerce theme files to your theme folder and should add the code there instead.
You can check by going to Settings -> Store -> Presentation, look for the ‘Advanced Theme Settings’ section which will show if you’ve moved the files.
If you have, edit the wpsc-single_product.php file located at
/wp-content/themes/yourtheme/Hey there, I had the same problem. I used stripslashes around the output and this fixed it for me.
At line 386 in stray-quotes/inc/stray_functions.php, preceding
return $outputI added this:
$output=stripslashes($output);cheers
AnthonyForum: Plugins
In reply to: [WP eCommerce] Remove Discount / Coupon line from PayPal receipts?I would love to know this as well.
Thank you @johnaustinny, that worked for me.
Forum: Plugins
In reply to: permalink to custom post type gives me 404 errorI had the same issue – custom post type causing a 404. Going to the permalinks page didn’t solve the problem for me.
What I realised what that my custom post type was called the same as a registered taxonomy (both called ‘gallery’). As soon as I changed the taxonomy item to something else my custom post type started working.
Hello. What halwp is saying is that he had removed those lines. Adding them back fixed it for him.
In my case (as I had the same issue) I have those lines in my .htaccess file. It still wouldn’t work. I was running jquery 1.4 though. Switching back to 1.3 fixed it.
Anthony