Multiple Queries
-
Hi there,
Our client would like the following on their website, which we are struggling to implement with the pro version of your plugin:
1) The client would like to display the store’s website address (a custom registration field, added via https://ietsieouliks.co.za/store-manager/memberships-settings/) on the store list page (i.e. https://ietsieouliks.co.za/verkopers-sonder-kaart/), but we cannot find the hook/filter anywhere that would allow us to do so.
>> We managed to get it right on https://ietsieouliks.co.za/store/toets-winkel2/, with the following filter:
add_action( ‘wcfmmp_store_after_address’, function( $store_id ) {
$website = get_user_meta( $store_id, ‘website’, true );
if( $website )
echo ‘<p class=”header_store_name”><i class=”fa fa-globe” aria-hidden=”true”></i><span>‘ . $website . ‘</span></p>’;
}, 50 );2) If you click on a single product page, i.e. https://ietsieouliks.co.za/product/horlosie/, there must be two buttons/links below the price of the product; one that links to the vendor’s store page and another button that links to the store’s website, Facebook page or whichever platform they enter via on the product’s edit page
>> We tried to do this at https://ietsieouliks.co.za/store-manager/settings/#wcfm_settings_form_marketplace_head > Product Custom Field tab, but it’s not allowing us to enter the vendor’s store and/or website’s (or social media platform’s) URL
>> We also checked the “Sold By” option at https://ietsieouliks.co.za/store-manager/settings/ > Marketplace Settings, but it’s not showing on https://ietsieouliks.co.za/product/horlosie/ (this was just to at least show the link to the store’s page on the website).3) When a store/vendor is deleted, all their products and photos of those products must also be deleted at the same time. Currently each product and the photos must be deleted manually/one-by-one
>> Is there a way to do this?Thank you in advance for your feedback in this regard.
The page I need help with: [log in to see the link]
- The topic ‘Multiple Queries’ is closed to new replies.