Tagged: woocommerce
-
AuthorPosts
-
December 9, 2019 at 6:36 pm #1164122
Hi,
I’ve recently added woocommerce to an enfold website, and we are trying to create a link to all featured products. It’s great to see that it’s an option to choose Product Visibility – Featured as a taxonomy overview page to link to, but somehow the link doesn’t work (just go back to the homepage when clicking on it).
I’ve tried with Product Type too, same issue.
I can’t seem to find another solution, would really appreciate any advice.
Thank you
December 10, 2019 at 10:04 pm #1164638Hey uchijjang,
Can you show us please? SO we can try understand properly what you mean?
Best regards,
BasilisDecember 10, 2019 at 11:57 pm #1164672Thank you for the reply. Link below. It’s the image that’s linked to ‘Featured’ Products.
Thanks
December 12, 2019 at 4:15 am #1165041Hi,
Thank you for the update.
Are you trying to display posts from the “featured” category? If you are, then the URL should look something like the following.
http://site.com/?product_cat=featured
Best regards,
IsmaelDecember 12, 2019 at 9:36 am #1165138Hi,
Thank you for the reply. Not really, in the layout builder, when you set a link to the website, you go to Link Settings tab, and in there, I’ve chosen Product Visibility, and then Featured. These are featured products based on WooCommerce’s default Featured function, not a category. so the link URL was generated through this process.
Screenshot below. You can see the setting can correctly identify that there’s only one featured product for now.
December 13, 2019 at 8:46 am #1165423Hi,
Thank you for the info.
Can we access the dashboard and check the settings? Please post the login details in the private field. Temporarily, try to define the link manually as shown above.
Best regards,
IsmaelDecember 14, 2019 at 5:39 pm #1165907Hi Ismael,
Info below.
Thank you.
Tonia
December 16, 2019 at 4:36 am #1166230Hi,
Thank you for the update.
The site looks different and WooCommerce is not installed in it. Did you move the site? Please check the info carefully.
Best regards,
IsmaelJanuary 3, 2020 at 2:27 pm #1169311Hi Ismael,
Sorry for the delayed reply – had some issues changing DNS of the domain, but it should all work now. If you could take a look that would be amazing.
Thank you.
January 6, 2020 at 1:06 am #1170587Hi,
Thank you for following up.
We just found out that the product_visibility taxonomy is by default not publicly accessible, but you can use the following filter to adjust its parameters.
add_filter('woocommerce_taxonomy_args_product_visibility', function($args) { $args['public'] = true; return $args; }, 10, 1);
Add it in the functions.php file.
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.