Filter the Event Title | Display Eventbrite Events

Example, adding Organizer Name to the front of Event Title. (Note this code snippet applies for…

Use the Variation Name instead of Slug within the Product Name detail of Product exports

function custom_woo_ce_get_product_title_attribute_formatting( $format = 'slug', $post_id ) { // Set the format to Attribute Title $format…

<10

WP Simple Pay - Add Customer Shipping Address to Payment Metadata

Maps the customer's shipping address to the one-time payment record's metadata.

Enable WooCommerce Product Attributes in Search Appearance

By default, AIOSEO does not include support for WooCommerce Product Attributes in our Search Appearance settings,…

<10

Sort Events Category by Publish Date (Oldest First)

function sort_posts_by_category($query) { if ($query->is_main_query() && !is_admin()) { $oldest_first_categories = array(1483,1486,1485,1484,1482,1391); // Replace with the IDs…

Untitled Snippet

add_filter( 'aioseo_robots_meta', 'aioseo_filter_robots_meta' ); function aioseo_filter_robots_meta( $attributes ) { $url = home_url( $_SERVER['REQUEST_URI'] ); if (strpos($url,'product_search=')…

Send Sale Alerts From Customer Email

Sets the From address of New Sale alert emails to the customer's email address

Grandfather Renewal Rate

Allows a custom renewal discount to be set for customers who purchased before a custom date

Change Vendor Pending Message

Changes the message shown to vendors when their account is pending.

Auto Generate Virtual Coupon After a Customer Completed an Order

/** * Generate a virtual coupon when order is completed. * * @param int $order_id Order…

Custom fields to vendor settings page

add_action('wcvendors_settings_after_paypal', 'pv_add_custom_merchant_id_field'); function pv_add_custom_merchant_id_field() { ?>

How To Show Last Modified Date On Blog Post Instead Of Published Date in WordPress

If you want to display the last modified date on your blog post without using a…

Add vendor id and name to CSV commissions export

Add vendor id and name to CSV commissions export

Event URL (Additional Data) | Display Eventbrite Events

This filter allows you to adjust the event URL. This is primarily so you can add…

1 17 18 19 20 21 48