Search results for: admin
Untitled Snippet
google.com, pub-9567597566014925, DIRECT, f08c47fec0942fa0
WPForms Login Page Redirect
This snippet will redirect the default WordPress login page to your custom login page. This makes…
om-available.js
document.addEventListener('om.Campaign.load', function(event) { console.log(event.detail); } );
Disable SEO Preview feature
This code snippet can be used to remove the "SEO Preview" feature in All in One…
Creating a Form With Floating Labels
form#wpforms-form-1682 { position: relative; } form#wpforms-form-1682 .floating label:nth-of-type(2) { display: none; } .floating input { position:…
Add custom page to the vendor dashboard
// Hook into the navigation add_filter( 'wcv_pro_dashboard_urls', 'add_test_page_nav', 9 ); function add_test_page_nav( $pages ){ $pages[ 'test_page'…
Change the Default Taxonomy Slug “locations-category”
This filter can be used to change the default taxonomy slug “locations-category”.
Generate a virtual coupon when order is completed.
This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…
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…
Hide file-specific download options
This plugin hides file-specific download options so that All Access customers can only view/download the first…
om-change-view.js
// Show the Yes/No view om{{id}}.changeView('yesno'); // Show the Optin view om{{id}}.changeView('optin'); // Show the Success…
Change Arabic Currency symbol to the currency short code
example change د.إ to AED and all the Arabic currencies
Set a minimum order amount in WooCommerce – No Plugin used
Post More Detail Learn how to Set a minimum order amount in WooCommerce. Customer will not…
Estimated reading time
// Estimated reading time function readTime ( $content = '', $words_per_minute = 250, $with_gutenberg = false…