Xmod08
Forum Replies Created
-
Thank you for your reply. The code above worked. With regards to sending the extra product options through API when I click add to cart, do you have a guide or code on how to do that?
Thanks
I guess you are referring to the order meta data.
What I would like to achieve is in our headless WC store, I will be displaying the product details via API, I would like to display also the extra fields that I created using your plugin. How do I expose those extra fields data in API so I can use them on my headless store app?Thank you, @mohsinoffline! I will look into it.
Forum: Plugins
In reply to: [WooCommerce] Analytics > Settings Page Blank after UpdateForum: Plugins
In reply to: [OptionTree] Add Font Family in TypographyThank you! ??
The solution would be in file page2cat/page2cat_class.php line 101, wrap get_the_content() with do_shortcode function. Result would be like this:
echo '<div class="aptools-category-content">'.do_shortcode(get_the_content()).'</div>';
If this could be added on the next update, that would be great.
I tried filtering the content(to avoid changing the core) by adding it to functions.php but doesn’t work for me. Here was my code:
add_filter('the_content', 'do_code', 21); function do_code($content) { if(is_category()) { $content = do_shortcode($content); } return $content; }
Forum: Fixing WordPress
In reply to: image upload issue since upgradeworks for me! thank you scionkaushik!