.lq-readmore span {
display: none !important;
}
.lq-readmore:after {
content: ‘mehr erfahren’;
}
It would be awesome if you guys helped me out, I’m at my wit’s end here and sadly the plugin doesn’t offer easier solutions on how to style these 3 things.
Regards, MH
TIA
there is no alert message applied on check mark. There is just deactivated “send” button. Is there any option how to add this message?
Many thanks,
?árka
I have added a Privacy Policy checkbox to our WordPress registration form.
Everything works great, except the checkmark inside the checkbox is not saving after purposely (or inadvertenly) leaving either the Username or Email field blank and clicking the Register button. Click here for details.
The checkbox was created by adding the code snippet provided below to our functions.php file.
Any ideas on how to modify the code snippet to ensure the checkmark is saved after clicking the Register button?
Thank you!
—————————
Add Privacy Policy Checkbox to WordPress Registration Form:
// Add the checkbox to registration form
add_action( 'register_form', 'foo_add_privacy_policy_field' );
function foo_add_privacy_policy_field() {
?>
<p>
<input type="checkbox" name="foo_privacy_policy" id="foo_privacy_policy" class="checkbox" style="margin-top: .2px; height: 1rem; width: 1rem;" />
<label for="foo_privacy_policy" style="display: inline!important;"><?php _e( 'I have read and accept your <a href="/privacy/" rel="noopener noreferrer" target="_blank"><u>Privacy Policy</u></a>.', 'foo' ) ?>
</label>
</p>
<?php
}
// Validate the checkbox value in the registration form so that it is required
add_filter( 'registration_errors', 'foo_privacy_policy_auth', 10, 3 );
function foo_privacy_policy_auth( $errors, $sanitized_user_login, $user_email ) {
if ( !isset( $_POST['foo_privacy_policy'] ) ) :
$errors->add( 'policy_error', "<strong>Error</strong>: Privacy Policy not accepted." );
return $errors;
endif;
return $errors;
}
// Fill the meta 'foo_privacy_policy' with the value of the checkbox
add_action( 'personal_options_update', 'foo_privacy_policy_save' );
add_action( 'edit_user_profile_update', 'foo_privacy_policy_save' );
add_action( 'user_register', 'foo_privacy_policy_save' );
function foo_privacy_policy_save( $user_id ) {
if ( isset( $_POST['foo_privacy_policy'] ) ){
update_user_meta( $user_id, 'foo_privacy_policy', $_POST['foo_privacy_policy'] );
}else{
update_user_meta( $user_id, 'foo_privacy_policy', 'off' );
}
}
// Add the checkbox to user profile home
add_action( 'show_user_profile', 'foo_show_extra_profile_fields' );
add_action( 'edit_user_profile', 'foo_show_extra_profile_fields' );
function foo_show_extra_profile_fields( $user ) {
?>
<h3><?php esc_html_e( 'Privacy Policy', 'foo' ); ?></h3>
<table class="form-table">
<tr>
<td>
<input type="checkbox" name="foo_privacy_policy" id="foo_privacy_policy" class="checkbox" style="height: 1rem; width: 1rem;" <?php if(get_the_author_meta('foo_privacy_policy', $user->ID)=='on' ){ echo "checked"; } ?> />
<label for="foo_privacy_policy"><?php _e( 'Privacy Policy', 'foo' ) ?>
</label></td>
</tr>
</table>
<?php
}
]]>I want to display the Woocommerce “checkmark” after adding a product in the cart. On archives pages it is working. But not on a single product page. The checkmark is not showing after add the product on the product page. Any idea how i can fix this? Thanks!
]]>We’re hoping Team WordPress will agree with us on this one:
Can you guys please update the Site Health Status “Great job!” checkmark?
It’s time for a refresh, don’t ya think?
Thank you!
]]>I love your plugin – thank you for it.
I’ve just noticed that for no particular reason, the tick boxes in the quiz stopped working. Here is a good example. When I start the quiz and choose an answer, it is highlighted with color but the check mark in the box does not appear – the box just stays empty. There are no checkmarks either when “Skipping to results” and going through the answers.
I’ve tried deactivating all plugins but it does not seem to resolve anything.
How can this be fixed?
Thank you.
]]>Widgets and extensions in my website
All-in-One WP Migration
Contact Form 7
Elementor
Essential Addons for Elementor
Facebook for WooCommerce
Livemesh Addons for Elementor
Mailchimp for WooCommerce
Ocean Extra
Ocean Social Sharing
Ocean Stick Anything
Premium Addons for Elementor
Smush
Sticky Header OceanWP
TI WooCommerce Wishlist Plugin
Variation Swatches for WooCommerce
WooCommerce
WooCommerce Admin
WooCommerce PayPal Checkout Gateway
WooCommerce Product Carousel, Slider and Grid Ultimate
WooCommerce Services
WooCommerce Stripe Gateway
Here is system report
### WordPress Environment ###
WordPress address (URL): https://dragonswrath.com
Site address (URL): https://dragonswrath.com
WC Version: 3.8.1
REST API Version: ✔ 1.0.2
Log Directory Writable: ✔
WP Version: 5.3.1
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: –
WP Cron: ✔
Language: en_GB
External object cache: –
### Server Environment ###
Server Info: LiteSpeed
PHP Version: 7.0.33 - We recommend using PHP version 7.2 or above for greater performance and security. How to update your PHP version
PHP Post Max Size: 128 MB
PHP Time Limit: 120
PHP Max Input Vars: 5000
cURL Version: 7.62.0
OpenSSL/1.0.2k
SUHOSIN Installed: –
MySQL Version: 5.5.5-10.2.27-MariaDB
Max Upload Size: 128 MB
Default Timezone is UTC: ✔
fsockopen/cURL: ✔
SoapClient: ✔
DOMDocument: ✔
GZip: ✔
Multibyte String: ✔
Remote Post: ✔
Remote Get: ✔
### Database ###
WC Database Version: 3.8.1
WC Database Prefix: wp_
MaxMind GeoIP Database: ✔
Total Database Size: 14.06MB
Database Data Size: 11.62MB
Database Index Size: 2.44MB
wp_woocommerce_sessions: Data: 0.13MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_comments: Data: 0.31MB + Index: 0.39MB + Engine InnoDB
wp_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_litespeed_img_optm: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
wp_litespeed_optimizer: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_mailchimp_carts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_mailchimp_jobs: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_options: Data: 2.16MB + Index: 0.08MB + Engine InnoDB
wp_postmeta: Data: 4.52MB + Index: 0.53MB + Engine InnoDB
wp_posts: Data: 3.52MB + Index: 0.28MB + Engine InnoDB
wp_shipment_batch_process: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_term_relationships: Data: 0.05MB + Index: 0.02MB + Engine InnoDB
wp_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_tinvwl_analytics: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_tinvwl_items: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_tinvwl_lists: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_usermeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_admin_notes: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
wp_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
wp_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
wp_wc_product_meta_lookup: Data: 0.05MB + Index: 0.09MB + Engine InnoDB
wp_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
wp_woo_shipment_status_email: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
wp_woo_shippment_provider: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
### Security ###
Secure connection (HTTPS): ✔
Hide errors from visitors: ✔
### Active Plugins (21) ###
Ocean Extra: by OceanWP – 1.5.19
Livemesh Addons for Elementor: by Livemesh – 2.8
All-in-One WP Migration: by ServMask – 7.12
Contact Form 7: by Takayuki Miyoshi – 5.1.6
Elementor: by Elementor.com – 2.8.1
Essential Addons for Elementor: by WPDeveloper – 3.6.2
Facebook for WooCommerce: by Facebook – 1.9.15 – Not tested with the active version of WooCommerce
Mailchimp for WooCommerce: by Mailchimp – 2.3 – Not tested with the active version of WooCommerce
Ocean Social Sharing: by OceanWP – 1.0.15
Ocean Stick Anything: by OceanWP – 1.0.3
Premium Addons for Elementor: by Leap13 – 3.9.7
Sticky Header OceanWP: by Oren Hahiashvili – 1.0.5
TI WooCommerce Wishlist Plugin: by TemplateInvaders – 1.15.3
WooCommerce Product Carousel, Slider and Grid Ultimate: by AazzTech – 1.7.1
Variation Swatches for WooCommerce: by Emran Ahmed – 1.0.68
WooCommerce Admin: by WooCommerce – 0.23.1
WooCommerce PayPal Checkout Gateway: by WooCommerce – 1.6.18
WooCommerce Stripe Gateway: by WooCommerce – 4.3.1
WooCommerce Services: by Automattic – 1.22.2
WooCommerce: by Automattic – 3.8.1
Smush: by WPMU DEV – 3.3.2
### Inactive Plugins (0) ###
### Settings ###
API Enabled: –
Force SSL: –
Currency: USD ($)
Currency Position: left
Thousand Separator: ,
Decimal Separator: .
Number of Decimals: 2
Taxonomies: Product Types: external (external)
grouped (grouped)
simple (simple)
variable (variable)
Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
exclude-from-search (exclude-from-search)
featured (featured)
outofstock (outofstock)
rated-1 (rated-1)
rated-2 (rated-2)
rated-3 (rated-3)
rated-4 (rated-4)
rated-5 (rated-5)
Connected to WooCommerce.com: ✔
### WC Pages ###
Shop base: #6 - /shop/
Basket: #7 - /basket/
Checkout: #8 - /checkout/
My account: #9 - /my-account/
Terms and conditions: #753 - /terms-of-service/
### Theme ###
Name: OceanWP
Version: 1.7.3
Author URL: https://oceanwp.org/about-me/
Child Theme: ❌ – If you are modifying WooCommerce on a parent theme that you did not build
personally we recommend using a child theme. See: How to create a child theme
WooCommerce Support: ✔
### Templates ###
Overrides: oceanwp/woocommerce/cart/mini-cart.php
oceanwp/woocommerce/content-single-product.php
oceanwp/woocommerce/loop/loop-start.php
oceanwp/woocommerce/single-product/title.php
### TI WooCommerce Wishlist Templates ###
Overrides: –
### Action Scheduler ###
Complete: 648
Oldest: 2019-11-12 19:17:01 +0000
Newest: 2019-12-13 18:33:43 +0000
Pending: 1
Oldest: 2019-12-13 19:33:43 +0000
Newest: 2019-12-13 19:33:43 +0000
Canceled: 3
Oldest: 2019-11-16 11:56:08 +0000
Newest: 2019-12-13 05:19:31 +0000
In-progress: 0
Oldest: –
Newest: –
Failed: 0
Oldest: –
Newest: –
]]>