Title: pcmdv's Replies | WordPress.org

---

# pcmdv

  [  ](https://wordpress.org/support/users/pcmdv/)

 *   [Profile](https://wordpress.org/support/users/pcmdv/)
 *   [Topics Started](https://wordpress.org/support/users/pcmdv/topics/)
 *   [Replies Created](https://wordpress.org/support/users/pcmdv/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/pcmdv/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/pcmdv/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/pcmdv/engagements/)
 *   [Favorites](https://wordpress.org/support/users/pcmdv/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/pcmdv/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/pcmdv/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Random Post Thumbnails] Critical Error – syntax error](https://wordpress.org/support/topic/critical-error-syntax-error/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [9 months, 2 weeks ago](https://wordpress.org/support/topic/critical-error-syntax-error/#post-18574084)
 * Amazing thank you!!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Error on submission after upgrade to Version 5.1.1](https://wordpress.org/support/topic/error-on-submission-after-upgrade-to-version-5-1-1/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/error-on-submission-after-upgrade-to-version-5-1-1/#post-11258459)
 * Resolved for me!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] Error on submission after upgrade to Version 5.1.1](https://wordpress.org/support/topic/error-on-submission-after-upgrade-to-version-5-1-1/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/error-on-submission-after-upgrade-to-version-5-1-1/#post-11258457)
 * Thanks Neil,
 * I have reinstalled both the Contact Form 7 plugin and the Contact Form 7 Mailchimp
   Extension plugin.
 * The error appearred initially to persist but then I realised that we didn’t have
   a [your-name] entry field but MailChimp required that.
 * Once I added the [your-name] text field the error stopped. Looks like this is
   being forced now.
 * I hope that helps the others!
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ProgPress] Progpress – NaNoWriMo Support 1.2.2 Update Failure](https://wordpress.org/support/topic/progpress-nanowrimo-support-1-2-2-update-failure/)
 *  [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [9 years, 1 month ago](https://wordpress.org/support/topic/progpress-nanowrimo-support-1-2-2-update-failure/#post-8946312)
 * I just installed the plugin for the first time.
 * I am also getting the message that I need to update the plugin to v1.2.2 when
   I click “update now” it appears to update. It gives me a tick and says I’m now
   running v1.2.2 however if I refresh the page or navigate away and then come back
   to the Plugins page it again tells me I need to update and that I am running 
   v1.2.1
 * There is definitely a gritch here.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Payment Plugins Braintree For WooCommerce] Adaptive Payments with Braintree](https://wordpress.org/support/topic/adaptive-payments-with-braintree/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/adaptive-payments-with-braintree/#post-8650936)
 * Thanks so much for getting back to me on this!
 * Our charities are mostly based in the UK so this will be a problem!
 * Regarding your questions above:
 * 1. The whole site is only selling one product ie to subscribe to the website.
   We are creating individual products to differentiate between the charities they
   wish to support. So there will never be a situation where there are multiple 
   items in the basket that need various split payments.
 * 2. Yes I was planning to rely on Woocommerce subscriptions to manage the recurring
   subscription
 * 4. All the payments will need to be split. There are no additional sign up fees.
   The first transaction to start the subscription and each subsequent monthly subscription
   payment will be split exactly the same.
 * This seems to be something that is considered for marketplace situations. But
   in an ideal world I don’t want to have to set up the actual marketplace to enable
   split payments. Is there any kind of timeline for bringing split payments to 
   the UK market?
 * Thanks for you support!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] types_render_termmeta on a Post Page with a given taxonomy](https://wordpress.org/support/topic/types_render_termmeta-on-a-post-page-with-a-given-taxonomy/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/types_render_termmeta-on-a-post-page-with-a-given-taxonomy/#post-7345803)
 * Just to follow up – I initially thought it was more fixed then it was.
 * I ended up with this to dynamically get the term id based on which taxonomy the
   post was assigned to:
 *     ```
       // get the id of the post
       $the_id = get_the_ID();
   
       // get the custom taxonomy term name
       $source_archive_name = wp_strip_all_tags( get_the_term_list( $the_id, 'source-archive', '', ' / ' ) );
   
       // read all the data for the term into an array
       $term_data = get_term_by( 'name', $source_archive_name, 'source-archive', ARRAY_A );
   
       // pull the term id out of the array
       $the_term_id = $term_data["term_id"];
   
       echo wp_strip_all_tags( get_the_term_list(get_the_ID(), 'source-archive', '', ' / ') );
       echo types_render_termmeta("archive-blurb", array("term_id" => $the_term_id,"show_name"=>"false","output"=>"normal","id"=>"$archive-blurb"));
       echo types_render_termmeta("archive-logo", array("term_id" => $the_term_id,"show_name"=>"false","output"=>"html","id"=>"$archive-logo","size"=>"large" ));
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Toolset Types - Custom Post Types, Custom Fields and Taxonomies] types_render_termmeta on a Post Page with a given taxonomy](https://wordpress.org/support/topic/types_render_termmeta-on-a-post-page-with-a-given-taxonomy/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/types_render_termmeta-on-a-post-page-with-a-given-taxonomy/#post-7345722)
 * Ah thanks, thats great and has sorted my problem.
 * I had to go into PHPmyAdmin to find the term id in wp_termmeta. I couldn’t seem
   to find the term id from within the dashboard like you can for posts etc when
   you hover over them.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Slick Slider and Image Carousel] Image size gets enlarged and distorted on retina screens](https://wordpress.org/support/topic/image-size-gets-enlarged-and-distorted-on-retina-screens/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/image-size-gets-enlarged-and-distorted-on-retina-screens/#post-7329611)
 * I’ve solved it with this code in my css file.
 * But this seems messy and I’d like to hear how the plugin authors would have solved
   this.
 *     ```
       @media  only screen and (min-device-pixel-ratio: 1.5),
               only screen and (min-resolution: 192dpi) {
       .wpsisac-slick-carousal-1 {max-height: 425px; }
       .wpsisac-slick-carousal-1 .slick-track {max-height: 400px;}
       .wpsisac-slick-carousal-1 .slick-track img {max-height: 400px; width: auto;}
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Slick Slider and Image Carousel] Image size gets enlarged and distorted on retina screens](https://wordpress.org/support/topic/image-size-gets-enlarged-and-distorted-on-retina-screens/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/image-size-gets-enlarged-and-distorted-on-retina-screens/#post-7329597)
 * update – I think what the carousel is doing is fetching the original image size
   on retina screens.
 * Unfortunately this makes a mess of my carousels which have images of variable
   widths so all images are constrained to a particular height. eg 400px.
 * I would like retina screens to maintain this height as well. How can I ensure
   that retina screens use the correct image size?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Slick Slider and Image Carousel] Carousel not working in full screen mode](https://wordpress.org/support/topic/carousel-not-working-in-full-screen-mode/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/carousel-not-working-in-full-screen-mode/#post-7321428)
 * Ok I’ve figured it out!
 * The default for the carousel setting is: slidestoshow=”3″ So if you only have
   3 images in your carousel (regardless of whether they are all in view or not!)
   they will not scroll.
 * Once I changed this to slidestoshow=”2″ is worked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Events are no longer showing up on the calendar.](https://wordpress.org/support/topic/events-are-no-longer-showing-up-on-the-calendar/)
 *  [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/events-are-no-longer-showing-up-on-the-calendar/#post-7306653)
 * Thanks for the heads up!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Events are no longer showing up on the calendar.](https://wordpress.org/support/topic/events-are-no-longer-showing-up-on-the-calendar/)
 *  [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years ago](https://wordpress.org/support/topic/events-are-no-longer-showing-up-on-the-calendar/#post-7306651)
 * I’m having this problem too. All events after the 4th of May are not showing 
   up in the calendar but can be found via search.
 * WordPress has been updated and all our plugins are updated.
 * Problem likely started after the update.
 * Has anyone got any ideas on how to solve this? When the 4th of May comes along
   will the calendar just not work at all?
 * Thanks
    Patricia
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Booster for WooCommerce – PDF Invoices, Abandoned Cart, Variation Swatches & 100+ Tools] Prices and Currencies by Country is not working – only showing default price](https://wordpress.org/support/topic/prices-and-currencies-by-country-is-not-working-only-showing-default-price/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/prices-and-currencies-by-country-is-not-working-only-showing-default-price/#post-6788502)
 * I’ve been trying to figure out what is going on here and I’ve come to the conclusion
   that the tick box for “Price by Country on per Product Basis” does not work.
 * The Prices and Currencies by Country ONLY works as a currency conversion.
 * Also we have been finding that sometimes orders will not go through to PayPal
   properly and return the “This invoice has already been paid” error message. I
   believe this plugin is causing this error by not feeding the information through
   properly to PayPal.
 * Unfortunately my initial request for assistance through promptly acted upon has
   since been completely ignored.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Widget Context] Widget not showing once woocommerce product filter is applied](https://wordpress.org/support/topic/widget-not-showing-once-woocommerce-product-filter-is-applied/)
 *  Thread Starter [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/widget-not-showing-once-woocommerce-product-filter-is-applied/#post-5975301)
 * I meant to say, using the * wildcard doesn’t work
 * Neither does adding the full filter url in the Target by URL section
    category/
   category_name/?filtering=1&filter_mob-filter=34
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Woocommerce Filter Not working](https://wordpress.org/support/topic/woocommerce-filter-not-working/)
 *  [pcmdv](https://wordpress.org/support/users/pcmdv/)
 * (@pcmdv)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/woocommerce-filter-not-working/#post-5509555)
 * Hi Guys,
    Did you find an answer to this? Same thing has happened to me. Filters
   were working fine. Then as the client was adding the attributes to the products
   it stopped working. It looked like we had hit the max_input_vars limit. But now
   that that has been increased and it’s still not working. Nothing else has changed
   on the site. Did you resolve this? Can you point me in the right direction? Thanks

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/pcmdv/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/pcmdv/replies/page/2/?output_format=md)