change media owner
Allows the admin to assign any media library file from one user to another
Talkwithkallie.com
talkwithkallie.com
Show Invoice for Refunded
Makes PDF Invoices available for refunded payments
Price Option Not Checked
Prevent variable pricing options from being checked by default
Add Custom Settings Tab to Vendor Dashboard
// Add the tab to the tab nav add_filter( 'wcv_store_tabs', 'add_custom_tab_nav' ); function add_custom_tab_nav( $tabs ){…
Hide “Everywhere Else” on the countries dropdown
if ( ! function_exists( 'wcv_hide_everywhere_else' ) ) { /** * Hide the "Everywhere else" option in…
home slider css
/* Increase the image size in the slider */ .container { width: 100%; max-width: 90%; /*…
Escaping Data
// instead the _e(), __() or _x() use the escaped version _e('Email Summary', 'duplicator-pro'); // this…
Widget Content | Display Eventbrite Events
The widget usually uses the excerpt. This is generally fine, but other plugins can change it.…
Display both published and modified date
‹?php // Code from codewp.ai function codewp_display_dates( $content ) { if(get_post_type() != 'post') { return $content;…
om-nextjs14.js
'use client'; import { usePathname } from 'next/navigation'; import { useEffect, useState } from 'react'; export…
om-change-view.js
// Show the Yes/No view om{{id}}.changeView('yesno'); // Show the Optin view om{{id}}.changeView('optin'); // Show the Success…