SJW
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Wont submit on apple iphonesIs there no log available which may help pinpoint issues?
Forum: Plugins
In reply to: [Contact Form 7] Wont submit on apple iphonesTHEME: Child of https://www.ads-software.com/themes/quark/
Plugins:
- Advanced Custom Fields PRO
- Advanced Custom Fields: Font Awesome
- Classic Editor
- Cloudflare
- Contact Form 7
- Enable Media Replace
- EWWW Image Optimizer
- Flamingo
- ManageWP – Worker
- Post SMTP
- Redirection
- Site Kit by Google
- TaxoPress
- W3 Total Cache
- Wordfence Security
- Yoast SEO
Forum: Plugins
In reply to: [Contact Form 7] How to manually intercept and submit formThe onSubmit callback is attached to the button click so I did think about that but it wont work.
Forum: Fixing WordPress
In reply to: How to remove grey borders from around an image?The border may not be on the image but on the surrounding div container.
Use the chrome inspector to test and play around.
https://developer.chrome.com/docs/devtools/css/Forum: Plugins
In reply to: [Contact Form 7] How to manually intercept and submit formdocument.getElementsByClassName("wpcf7-form")[0].submit();
This works but it bypasses the CF7 checks and submits the form without validating fields.
How can I resume normal transmission after interception?
Forum: Fixing WordPress
In reply to: How to remove grey borders from around an image?border: https://www.w3schools.com/css/css_border.asp
set it to 0 or none
Forum: Plugins
In reply to: [WP Fastest Cache] WP Fastest Cache blocking loading of base64 encoded fontsI have deactivated the plugin but it was on https://www.thewordshop.com.au/
Forum: Plugins
In reply to: [EWWW Image Optimizer] AV now flagging malwareProbably? You don’t know if the file is a part of the ewww plugin?
Forum: Plugins
In reply to: [EWWW Image Optimizer] AV now flagging malware@adamewww Thanks.
What about /wp-content/ewww/gifsicle – this file is outside the ewww plugin directory and is not included in the install file but the dir ewww appears to indicate it’s a related file.
Forum: Fixing WordPress
In reply to: Table editor issuesWordPress provides extremely limited support for tables other than inserting them into the Editor.
You will need to look at the code editor and edit the table yourself with HTML or apply CSS to the table to get your desired result.There is no other way to do it – You need to know how to code in PHP because the PHP files need to be edited to make it work.
The example uses action hooks so you will need to have an understanding on how hooks work:
https://wpklik.com/wordpress-tutorials/woocommerce-hooks/#how-to-change-positions-of-price-and-ratingsThe hook is the bit that inserts the code into the right spot – the code to generate the rating is in the original answer.
Figuring it out is not simple. You would need to identify exactly where in the code the function needs to go, identify the correct action hook (looks like it might be this one:
add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 10 );
) and then add the code to add the reviewThis can’t be done with CSS but instead needs PHP coding.
You really need to be experienced with PHP and find the action hook that inserts into the right spot and enter this code:function action_callback( $arg ) { $product = wc_get_product( get_queried_object_id() ); // Return the review count. return $product->get_review_count(); } add_action( 'woocommerce_action', 'action_callback', 10, 2 );
NOTE: woocommerce_action needs to replaced with the appropriate action hook – you can find the right one here: https://woocommerce.github.io/code-reference/hooks/hooks.html
Forum: Fixing WordPress
In reply to: Mobile version cachingI too experience this issue – it is related to the phones caching.
You need to clear the cache, view in incognito mode or wait 24 hours for the cache to expire.Forum: Fixing WordPress
In reply to: There has been a critical error on this website.You will need to check your error_log in CPanel / FTP to find what the cause is
Forum: Fixing WordPress
In reply to: 404 ErrorPossibly Permalink related – try updating permalinks.
Otherwise, it is most likely going to be something highly technical in the site/server config that you will need to debug and identify.
e.g.
Rewrite rules
Redirects
htaccess config