sweettea2
Forum Replies Created
-
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] URL for Specific Conditional FieldThanks so much!!
Thanks for your help and quick response!
Forum: Plugins
In reply to: [Super Page Cache] Issue: Password Protected Page Not WorkingIs there a way I can send the info to you privately? Thanks!!
Forum: Plugins
In reply to: [Super Page Cache] Issue: Password Protected Page Not WorkingI’m having the same issue as AJ. My WordPress password protected pages are intermittently working. I have added the URLs to the plugin “Prevent the following URIs to be cached” and it’s still giving issues. I’ve also excluded the pages from caching in the individual page dropdown.
Forum: Plugins
In reply to: [Yoast SEO] AggregateOffer Schema OutputOk, thanks! Your answer as well as this page https://developers.google.com/search/docs/advanced/structured-data/product#guidelines and a few other online articles helped to clarify this for me. Thanks again!
I can confirm that I also get a similar error as the first one you’ve mentioned. The error shows up for me in the wp-admin folder’s error_log file.
PHP Warning: file_get_contents(xxx/wp-content/plugins/cloudflare/src/WordPress/composer.json): failed to open stream: No such file or directory in xxx/wp-content/plugins/cloudflare/src/WordPress/PluginActions.php on line 216
Forum: Plugins
In reply to: [Cloudflare] CloudFlare Analytics API DeprecatedThank you!!
Forum: Plugins
In reply to: [WooCommerce] Custom Breadcrumbs in SEO TitleThank you!
Forum: Plugins
In reply to: [Yoast SEO] Custom Breadcrumbs in SEO TitleYes, thanks for your response! I ultimately want to be able to have the list of breadcrumbs in the Yoast SEO meta title and description of the WooCommerce product category and product pages.
So, for example, the highest product category page would have a title of “FORD title”, the next level would be “FORD FOCUS title”, the next level would be “FORD FOCUS 2001 title” and so on.
I don’t really mind how this is achieved as long as it works. Hope this clarifies things!
Forum: Plugins
In reply to: [WooCommerce] Custom Breadcrumbs in SEO TitleThanks for your help. This hasn’t fixed the issue with the breadcrumbs displaying more than once, but it may be something with Yoast that’s causing the problem. Will ask them.
Yes, I need assistance with this as well!
Forum: Plugins
In reply to: [WC Fields Factory] Showing custom field twiceI am also experiencing the error with Variable Subscriptions and the Quantity count.
I can see that the “wccpf_fields_clone_count” value increases with the quantity and decreases when the quantity is lowered, but the extra “wccpf-fields-group” divs don’t go away when the quantity is lowered.
Things were still working on this as of Woocommerce 3.3.5, Woocommerce Subscriptions 2.2.18 and WC Fields Factory 2.0.8, but I really want to upgrade these plugins without the error.
Thanks for the help!
Update…I was able to get the scan to complete by disabling:
– Check the strength of passwords
– Scan comments for known dangerous URLs and suspicious content
– Scan posts for known dangerous URLs and suspicious content
– Scan file contents for backdoors, trojans and suspicious codeThe max execution time is set at 15.
If you have any suggestions on how to fix so we can leave these options enabled, I’d appreciate it! Thanks.
As per this post (https://wordpress.stackexchange.com/questions/57439/displaying-category-archive-of-custom-post-types), a variation of the below worked for me by putting it in the child theme’s functions.php file I was working on!
function query_post_type($query) { $post_types = get_post_types(); if ( is_category() || is_tag()) { $post_type = get_query_var('actors'); if ( $post_type ) { $post_type = $post_type; } else { $post_type = $post_types; } $query->set('post_type', $post_type); return $query; } } add_filter('pre_get_posts', 'query_post_type');
Forum: Plugins
In reply to: [WooCommerce] Remove link on featured image – since 3.0.0This should work…
function custom_single_product_image_html( $html, $post_id ) { $post_thumbnail_id = get_post_thumbnail_id( $post_id ); return get_the_post_thumbnail( $post_thumbnail_id, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ) ); } add_filter('woocommerce_single_product_image_thumbnail_html', 'custom_single_product_image_html', 10, 2);