jim28100
Forum Replies Created
-
Forum: Plugins
In reply to: [Calculated Fields Form] CFF Form no longer workingOK. Got it. It’s working now.
Thanks for your help.
Forum: Plugins
In reply to: [Calculated Fields Form] CFF Form no longer workingThanks for coming back so quickly…
If I’m understanding you correctly, all shortcode variables are now appended with the precursor ” cff_var.”, which will result in the following shortcode.
[CP_CALCULATED_FIELDS id=”12″ cff_var.famdisc=”5″ cff_var.maxfamdisc=”12.5″ cff_var.affindisc=”5″ cff_var.maxaffindisc=”20″ cff_var.joinvalue=”0″ cff_var.joinnums=”0″ cff_var.minisub=”40″ cff_var.juniorsub=”70″ cff_var.studentsub=”91″ cff_var.offpeaksub=”184″ cff_var.seniorsub=”222″ cff_var.assocsub=”15″ cff_var.countrysub=”74″]
If this is correct then unfortunately it still isn’t working.
https://www.crowthornetennisclub.co.uk/tennis-club-membership/subscription-costs-test/If you have a secure method of communication then I can send over a WP login if it will make things easier?
Jim
Sorry. My mistake. I’d not turned them on in ‘The Plus Addons’?
Forum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Two feature requestsLooks like this is already being looked into:
Forum: Plugins
In reply to: [Page Builder Gutenberg Blocks – CoBlocks] Two feature requestsHi Anthony,
Thank you for your response. Unfortunately, your soft-return (Shift+Enter) option doesn’t work for me as I need to be able to add un-indented titles. You can see what I’m trying to do here.Forum: Plugins
In reply to: [Lightweight Grid Columns] Can you have nested columns?Hi Tom,
Any reply whether it’s possible to have an LGC columns inside an LGC column? It would be really handy?
JimForum: Plugins
In reply to: [Lightweight Grid Columns] equal_heights not working for me?Stet that. They are working!!
It was my mistake. I coloured the wrong divs – sorry.Hi,
Thank you for looking at this. I have now loaded your updated plugin.
The form is now no longer exploding. However, the form validation is not working. It was triggering the mandatory field messages to trigger on the on-page form. I’ve removed the on-page for but it still doesn’t trigger the validation on the modal form?
Jim
Hi,
At the moment only the site’s ‘Administrator’ can see the plugin inside the WP admin area. I need to be able to allow the ‘editor’ role the right to be able to edit popups?
Jim
Doh!
My fault. It worked fine once I setup the client and customer notifications?I’m having the same problem using WP 4.0.1
Forms created prior to 4.0 work fine but new ones do not clear.
Anyone solved this one yet?Ok, fixed it.
For some reason, when I opened up the file ‘product-enquiry-for-woocommerce.php’ in my editor it added extra returns between each line of code. This included two extra lines after the closing ‘?>‘ tag. Removing these solved the problem.Hope this helps someone else?
Jim
Forum: Plugins
In reply to: [WooCommerce] How to add a custom field on the New-Order email?Did you find out how to do this? I’m looking for a similar fix and would be interested to know?
Forum: Plugins
In reply to: [Nivo Slider for WordPress] Add extra captions to each slide?FlyFX
Did you ever solve this issue. I have a similar requirement for extra caption fields and would be interested if you managed to get this to work?Forum: Plugins
In reply to: [Custom Post Type UI] Displaying Posts on a PageHi Bree,
An alternative way of grouping and showing your Custom Posts might be to use ‘Categories’. If you’ve already created your Custom Post Type using this plugin then you’ll need to go back to ‘Manage Post Types’ in the plugin menu and Click ‘Advanced Options’ and then ‘Categories’ next to the ‘Built-in Taxonomies’.
You can now create and assign any number categories to your Custom Post recipes and call them via a category link [www.yoursite.com/category/aRecipeCategory] or add the individual categories to you menu[s].
Note: Initially I had a problem getting this to work and found I had to add the following code to functions.php.
add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { $post_types = get_post_types(); if ( is_category() || is_tag()) { $post_type = get_query_var('article'); if ( $post_type ) $post_type = $post_type; else $post_type = $post_types; $query->set('post_type', $post_type); return $query; } }
Shout if you have a problem understanding the above.