• Hot
  • Top
  • New
1
votes

You have ... votes left in this category for this week!

Generate Fancy Open Graph Images

Trendy websites like github.com:
https://www.google.com/search?q=wordpress+pwa+site%3Agithub.com&tbm=isch

or tr-ex.me:
https://www.google.com/search?q=buenos+dias+hermosa+site%3Atr-ex.me&tbm=isch

generate gorgeous Open Graph images.

We can create such images for filtered archives – autogeneration of og:image should be an option just like the title, description, h1, above-products-html or below-products-html.

PHP GD Library functions are total crap, so it has to be a headless browser taking a screenshot of the requested HTML template.
dev.to uses: https://docs.htmlcsstoimage.com/ but it’s a bit pricey, a custom Vercel/Netlify serverless function would be better:

https://dev.to/vasyl_zubach/automate-open-graph-image-creation-3lf3
https://pociot.dev/33-dynamically-generate-open-graph-images

LIVE PROGRESS

2
votes

You have ... votes left in this category for this week!

completed

Add existing filters to woocommerce breadcrumbs

This should be an optional configuration: Do not reset filters when clicking breadcrumbs

The default category breadcrumb URLs should contain filters just like FWW Product Categories widget with this option enabled: https://prnt.sc/w64m3a

e.g. existing filter is black: https://foundthru.com/product-category/dogs/dog-bowls/black/

I would like to change my breadcrumbs
from this: https://foundthru.com/product-category/dogs/
to this: https://foundthru.com/product-category/dogs/black/

LIVE PROGRESS

2
votes

You have ... votes left in this category for this week!

completed

Add accordion to FWW widgets

screen: https://prnt.sc/sidya8

– add option to enable it per widget
– add option to set min-width of the screen per widget in order to control when and if a widget should be closed by default

video: https://mega.nz/file/HOBnkSKR#ChWH2JA8kNHSPD7o_vEdLodW1OJBvrN_ujW4PCDNPS0

LIVE PROGRESS

5
votes

You have ... votes left in this category for this week!

completed

Allow filtering products by any custom taxonomy terms (e.g. brand or product tag) – new FWW Fast Custom Taxonomy Widget

Can you please add a new FWW Fast Custom Taxonomy Widget, so we can use any custom taxonomy for filtering our products and all FWW filters can be used on term archive pages?

e.g.
/product-tag/tag-slug
/brand/nike/
/tax-base/term-slug/

More on this (see point 5): https://trello.com/c/qy1GHWHG/41-fww-add-generated-sitemap-urls-tab-and-allow-users-to-configure-top-and-bottom-text-including-bulk-edit#comment-5e8b51e7f4f85802626d32b9

Implementing this would resolve the issues with the ‘brand’ plugins:
https://www.prelive.superspeedyplugins.com/suggestions/make-fww-work-with-woo-brands-plugin/
https://www.prelive.superspeedyplugins.com/suggestions/filter-by-brands-perfect-woocommerce-brands/

View Live Progress

A Trello card has been created for this bug report. You can watch progress live using the card below.

Trello Card

LIVE PROGRESS

2
votes

You have ... votes left in this category for this week!

FWW Recommended Products

Youtube, Google Play Store and other big boys websites show on their homepages recommended products based on recently viewed products. We can do something similar based on product categories and attributes.

e.g. user visits:

1) Product ID 1:
– product_cat – Mens
– pa_brand – Nike
– pa_colour – White

and

2) Product ID 2:
– product_cat – Mens
– pa_brand – adidas
– pa_colour – Black

FWW Recommended Products widget shows products:

– product_cat – Mens
– pa_brand – Nike OR adidas
– pa_colour – White OR Black
– exclude – Product IDs 1 and 2 // not sure if this is actually necessary

———————————

‘tax_query’ => array(
‘relation’ => ‘OR’,
array(
‘taxonomy’ => ‘product_cat’,
‘field’ => ‘slug’,
‘terms’ => array(‘mens’),
),
array(
‘taxonomy’ => ‘pa_brand’,
‘field’ => ‘slug’,
‘terms’ => array(‘nike’,’adidas’),
),
array(
‘taxonomy’ => ‘pa_colour’,
‘field’ => ‘slug’,
‘terms’ => array(‘black’,’white’),
),
),

I think this is doable and similar to the FWW Recently Viewed Products (Ajax) widget.

It would be nice to have access to this query – just an array of product IDs would be enough – so we can use it in custom templates.

LIVE PROGRESS