makemymark
Forum Replies Created
-
Ran into the same issue. Put the standard names of the fields in here, but didn’t work and looks like they are looking for the key. Which is very odd and not sure why the plugin looks for the key rather than the name of the fields that are actually in the UI. But none the less, to get the keys, if you use the export feature in ACF, search for the field names in that XML and you will see the corresponding keys in the above format.
Thanks again!
Spoke to soon, actually looks like still running into issues. To confirm
if($tw_search) {
$apioptions[‘q’]=$tw_search;Should be replaced with this?
if($tw_search) {
$apioptions[‘lang’]=’en’;Or should “$apioptions[‘lang’]=’en’;” be added after the line “$apioptions[‘q’]=$tw_search;”. When replacing it looks like I’m getting and error after clearing my cache. I put it after it looks like lots of multi languages are still coming through. Any thoughts? Thank you!
Wow, you rock, thanks so much, worked perfectly!
Thanks for getting so quickly. Can you point me in the right direction on how I would implement it?
That is, it’s fine if currently there isn’t a short code parameter for it, and wouldn’t mind temporarily hard coding a change such as lang=en somewhere in the plugin code and updating that each time I update the plugin temporarily until it’s been officially added to the plugin.
Hoping it’s just a matter of adding lang=”en” or something somewhere. I can look myself but imagine you will have a good starting place.
Oh and yes, its okay if some non english get through, as long as it filters out most, so I’m fine with whatever lang=”en” results include based on their filters.
Forum: Plugins
In reply to: [Favorites] get_user_favorites_list() posts ids separated by commasLooked over the help docs again and realized I was using the wrong function. The following did what I was looking for:
<?php $user_favorites_array = get_user_favorites(); $user_favorite_ids = implode(',', $user_favorites_array); echo $user_favorite_ids; ?>Noticed this the other week on one site, where I discovered there were 1000s upon thousands of messages being sent from the plugin, and just realized its happening other sites to. While I see earlier in this thread in mentions this was resolved, currently using latest stable version of WP and the plugin and postman and issue persists.
Forum: Plugins
In reply to: [WooCommerce] Simple Product or Variable Product or Grouped Product?After researching the options and looking at the pros and cons of each, while none of the three were a perfectly match ended up having to rule out Variable Products and Group Products because of limitations with those and ended up having to use Simple Products. Took a lot of working and planning, but ultimately have it all working though do wish WooCommerce better catered to this not too uncommon use case.
Forum: Plugins
In reply to: [Email Cart for WooCommerce] Backend Send Cart Not Accounting For Min/MaxThanks for the update, appreciate it!
Forum: Plugins
In reply to: [Email Cart for WooCommerce] Backend Send Cart Not Accounting For Min/MaxUpdate actually appears it half works. When adding an item in the backend it defaults to quantity 1. When trying to publish it then it pops up an alert mentioning the min quantity required which the admin then has to enter manual.
So the issue appears to be the the quantity number is not updated automatically as it is on the front end.
Forum: Plugins
In reply to: [Multiple Featured Images] Can’t see the additional featured imagesRan into the same issue, where was trying to have this show up on WooCommerce product pages. Updating
'post_type' => array( 'page' ),in ones function.php to'post_type' => array( 'product' ),resolved the issue.- This reply was modified 9 years, 4 months ago by makemymark.
Forum: Plugins
In reply to: [WooCommerce] specific product attribute displayMr. Jolly noted the code:
$product->get_attributes();
Could you provide an example on how that could be used to echo an actual attribute? For instance say the WooCommerce Attribute was “Fabrics”. Would the format be…
echo $product->get_attributes(‘pa_fabrics’);
or
echo $product->get_attributes(‘fabrics’);
or something totally different? Haven’t been able to find the answer in the documentation.
Forum: Plugins
In reply to: [WooCommerce] Simple Product or Variable Product or Grouped Product?Riaan,
Thanks for your response.
Yes, currently using https://www.woocommerce.com/products/brands/ for Brands and haven’t run into any issues with that.
In regards to https://codecanyon.net/item/woocommerce-show-single-variations/13523915 that also appears to have the same limitation as the other plugin example noted in my post (https://ww.wp.xz.cn/plugins/woocommerce-direct-variation-link/) that it doesn’t allow for separate URLs for each product variation other than through url parameters unfortunately as noted. But if you are familiar with a plugin or method for unique urls (not url parameters) for each product using product variations can certainly take a look.
Otherwise still seems to be either between simple products or grouped products, but as noted still unsure how then best to deal with showing multiple thumbnails for the other products in a collection when viewing a product.
Forum: Plugins
In reply to: [Rich Reviews by Starfish] Permissions IssueActually looks like its in /lib/rich-reviews-admin.php, line 239.
Forum: Plugins
In reply to: [Rich Reviews by Starfish] text_only=”true” Option?Great, thanks!