How to let users create lists of woocommerce products?

As you are already using woocommerce to showcase your plants , you can use woocommerce wishlists https://woocommerce.com/products/woocommerce-wishlists/ to create lists , most of the features are built in but you may need to manage the way it shows in front-end. I am pretty confident you can pull this by the way you got this stunning … Read more

jquery bookmark links

You must output the propper HTML to make it working. Specifically, the href-attribute needs to contain the URL and the title separated with the | sign, like <a href=”http://example.com/post-url|post-title” rel=”shareit” …. That will enable the script you’ve posted above use a concrete URL and title. As I don’t know you PHP code from your theme … Read more

querying user bookmarks from a large number of bookmarks

It looks like the default get_bookmarks() http://codex.wordpress.org/Function_Reference/get_bookmarks is using this query: SELECT * FROM wp_links WHERE 1=1 AND link_visible=”Y” ORDER BY link_name ASC; You can check the function in /wp-includes/bookmark.php. The get_bookmarks() function has limit and order parameters that you might find helpful. The option get_bookmarks(“limit=5”) gives this query: SELECT * FROM wp_links WHERE 1=1 … Read more