Vendor Email Tag

Show the Shop Vendor's email for each download purchased

Untitled Snippet

add_filter( 'woocommerce_product_single_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); add_filter( 'woocommerce_product_add_to_cart_text', 'saphie_custom_add_to_cart_text' ); function saphie_custom_add_to_cart_text() { return 'ADD TO BAG'; }

Joana Hranova
<10

Redirecting Vendors to Vendor Dashboard on Login

Snippet To Redirect Vendors to their Dashboard on login

Add menu item to vendor dashboard

// Add this to your themes functions.php function add_menu_item( $pages ){ $pages[] = array( 'label' =>…

3 Dots for popup text in WordPress

With this snippet 3 highlighted dots appear when you create small items of text that you…

Huttons News Importer

final class Huttons_News_Importer { private const CRON_HOOK = 'huttons_news_hourly'; private const CATALOG_URL = 'https://www.huttonsgroup.com/property-news'; private const…

<10

Framework_Fluid_CSS

Fluid Design Framework - Fonts: Viewport MIN - 320 -- Viewport MAX - 1200 Space: Viewport…

Rename the Speaker Detail Field Labels

Renames the labels on a speaker page, for example "Title" to "Role". You can also point…

Show Left Sidebar Before Content on Mobile

By default the sidebar always displays below the content on mobile. This code will allow you…

1 142 143 144 145 146 233