seanuk
Forum Replies Created
-
Forum: Plugins
In reply to: [Tabby Responsive Tabs] display default as accordionThanks for the speedy response.
I’ll have a play with your suggestion.Forum: Plugins
In reply to: [Tabby Responsive Tabs] display default as accordionIs there anyway of having one tabby block as tabs and another as accordions, within the same breakpoint?
If not, may I request “Tabby Accordions”? 🙂
Forum: Plugins
In reply to: [WooCommerce] Buyer's address not being sent to Paypaljust to clarify (I made a mistake in previous post)
Tested four WC installs. Only send address to Paypal if ‘Send shippping address’ checked in WC settings. If unchecked it does not send address.
Forum: Plugins
In reply to: [WooCommerce] Buyer's address not being sent to PaypalThere are some common plugins used on most sites, but even a site with no plugins installed has the problem.
Forum: Plugins
In reply to: [WooCommerce] Buyer's address not being sent to PaypalOK, I’ve done some testing, and if I select to ‘send shipping address to paypal’ in the WooComm settings, it works. If I unselect it, it doesn’t send anything. Unselected it’s supposed to send the billing address, right?
I’ve tested four WooComm stores and none of them send address with selecting ‘send shipping address’.
Forum: Plugins
In reply to: [Features by WooThemes] Multiple Features using Shortcode?doesn’t look like it, I’ve tried.
you can specify a single id, but not an array
‘id’ => 0 (display a specific item)
maybe a feature request?
Forum: Alpha/Beta/RC
In reply to: Create new menu is pre-populatedyes, I updated my build last night and issue has gone, please close 🙂
Forum: Hacks
In reply to: Adding page templates from a pluginok, I found this http://codex.ww.wp.xz.cn/Plugin_API/Filter_Reference/single_template and I have added 3 functions to my plugin, one for each archive_template, single_template and taxonomy_template
is there a way to combine them into one function?
function get_single_template($single_template) { global $post; if ($post->post_type == 'portfolio') { $single_template = dirname( __FILE__ ) . '/single-portfolio.php'; } return $single_template; } add_filter( "single_template", "get_single_template" ) ; function get_archive_template($archive_template) { global $post; if ($post->post_type == 'portfolio') { $archive_template = dirname( __FILE__ ) . '/archive-portfolio.php'; } return $archive_template; } add_filter( "archive_template", "get_archive_template" ) ; function get_taxonomy_template($taxonomy_template) { global $post; if ($post->post_type == 'portfolio') { $taxonomy_template = dirname( __FILE__ ) . '/taxonomy-portfolio.php'; } return $taxonomy_template; } add_filter( "taxonomy_template", "get_taxonomy_template" ) ;Forum: Plugins
In reply to: [Plugin: WooCommerce] Cart broken/not adding productsI had this same problem.
I was running PHP on my CentOS / Plesk server as a FastCGI application – so changed it to run PHP as an Apache module and it solved the problem.
Forum: Fixing WordPress
In reply to: PDF in Media Library, not in uploads folderI’m having the same problem – did you resolve this Selena?