Download Archive Purchase Buttons

Output purchase button below the full content on download archive pages.

Auto Vote 5 sao cho bài viết mới

function auto_vote_5_stars_on_publish($ID, $post) { if ($post->post_status === 'publish') { if (function_exists('kk_star_ratings_insert')) { kk_star_ratings_insert("5", $ID); } }…

Add Vendor Ratings / Feedback to Product Page

add_action('woocommerce_before_add_to_cart_form','vendor_feedback_product_page'); function vendor_feedback_product_page() { $vendor_id = get_the_author_meta('ID'); $vendor_shop = urldecode( get_query_var( 'vendor_shop' ) ); if (…

Allow "Mark received" for Digital Product

add_filter( 'wcvendors_pro_mark_order_received_status', '__return_false' );

Adjust Currency Symbols | Display Eventbrite Events

The Display Eventbrite plugin has a table that converts currency code to symbols. Sometime a user…

WordPress Typography Enhancement: Preventing Widows in Conten

This code is a WordPress filter designed to prevent "widows" in typography within the content displayed…

create_folder_and_upload_file

Creating a folder directly inside the WordPress Media Library through code requires understanding that the WordPress…

Limit Uploaded Image Size

Set a max width and height for your image uploads to save space.

Defining SparkPost Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

MemberPress: Bulk Delete All Expired Subscriptions

Running this code snippet will delete all expired and canceled subscriptions in bulk each time the…

1 79 80 81 82 83 124