wp_fish
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Where do I put the shortcodeI’ve put it into loop-start.php and it renders but it doesn’t filter the products when I click a checkbox
Forum: Plugins
In reply to: [WooCommerce] Change markup in products list pageYeah I worked it out eventually. I am getting to grips with how it works now. Thanks for the help ??
Forum: Plugins
In reply to: [WooCommerce] Change markup in products list pageadd_action( ‘woocommerce_before_shop_loop_item’, function(){ echo(”); }, 10 );
add_action( ‘woocommerce_after_shop_loop_item’, function(){ echo(”); }, 5 );
The above, I was expecting, should of got rid of the wrapping anchor tags but it doesn’t. I’ve put that in my theme’s function file.
Forum: Plugins
In reply to: [WooCommerce] Change markup in products list pageThat’s helpful but I need a little more, I can see these are responsible for outputting individual elements,
add_action( ‘woocommerce_before_shop_loop_item’, ‘woocommerce_template_loop_product_link_open’, 10 );
add_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_product_link_close’, 5 );
add_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10 );
add_action( ‘woocommerce_before_shop_loop_item_title’, ‘woocommerce_template_loop_product_thumbnail’, 10 );
add_action( ‘woocommerce_shop_loop_item_title’, ‘woocommerce_template_loop_product_title’, 10 );
add_action( ‘woocommerce_before_subcategory’, ‘woocommerce_template_loop_category_link_open’, 10 );
add_action( ‘woocommerce_shop_loop_subcategory_title’, ‘woocommerce_template_loop_category_title’, 10 );
add_action( ‘woocommerce_after_subcategory’, ‘woocommerce_template_loop_category_link_close’, 10 );
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_price’, 10 );
add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_template_loop_rating’, 5 );But, I don’t want them all wrapped in the same anchor tag.
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Shortcode not displaying filtersWill the premium version allow me to use it outside of the WooCommerce pages you mention, eg header.php?
Forum: Plugins
In reply to: [Advanced AJAX Product Filters] Shortcode not displaying filtersI’m using the shortcode within one of the custom theme templates, header.php to be precise.
Worked it out, I hadn’t entered the Payment Data Transfer token in the backend, doh! Apologies
I’ve finally managed to get a response from my hosting company and they have confirmed cURL is installed and activated.
I noticed that since this thread was started a new version of the plugin was availabe so I installed that and upgraded to the very latest version of WordPress (3.8). It still doesn’t work, exact same issues ?? ??
I am having trouble contacting the hosting company. I will keep trying and keep you posted.
“Should be fixed”, meaning not having cURL should no longer affect the admin area loading up
That is a confusing sentence. I don’t have cURL yet you say v2.13 should no longer affect the admin area loading up? The admin area does not load up, your response suggests that it should even if I don’t have cURL.
I will look into installing cURL and let you know what happens.
Thanks
When you say, “should be fixed in v2.13” what do you mean? Will installing
cURL fix it?Zip: ‘ZipArchive’ class exists, ‘zip_open’ function exists
cURL:That’s all it says
Version 2.13 of your plugin and WordPress V3.7
Forum: Fixing WordPress
In reply to: How to add extra field to appearance menu itemThanks for the response. I was contemplating using jquery to add the extra field but if there is a way to do it using a wordpress php filter then I would rather do it that way. However, I can’t find a filter that caters for this. ??
Forum: Fixing WordPress
In reply to: Custom Post Type or custom db tableThere’s a whole bunch of other data that I need to associate with the member, expirey dates, payment reference, 2 different addresses and a variety of form checkbox answers. So thought the best route might be a custom db table.