katmacau
Forum Replies Created
-
I have this issue too. I have set the rule for my accessory product to have dependency rules as purchase based and based on a category. This works for adding the product to the cart but if I go to cart and remove the main product, the accessory still remains, no notice and I can go to the checkout with that product only.
Forum: Plugins
In reply to: [W3 Total Cache] Https not being used by w3CThank you. I’ve applied those settings and will see how it goes.
Forum: Plugins
In reply to: [W3 Total Cache] W3 Ttotal Cache breaking word docs on ipadsSorry but no luck. tried that and also disabling for the directory which has pages that link to word docs but still the error. Only thing that allows word docs to open on the ipad is to disable plugin entirely.
Forum: Fixing WordPress
In reply to: Post Thumbnail not showingadd_theme_support(‘post-thumbnails’); is just there to allow you to set a featured image for your posts in the admin. Your theme has to then include it somewhere in the layout for it to be used. For example, duplicate your single.php from the parent theme and then add in this code where you want the thumbnail to show:
<?php
if ( has_post_thumbnail() ) {
the_post_thumbnail(‘medium’);
}
?>You can set the size as thumbnail, medium, large or full if you need too.
Forum: Fixing WordPress
In reply to: Post Thumbnail not showingIf the hayden theme does not include the thumbnail as part of the theme, you will need to make a child theme version of the single.php template and include the_post_thumbnail() in it.
Forum: Fixing WordPress
In reply to: Fatal error: Allowed memory size of….Your site is trying to do something that uses up more memory than your current PHP memory limit is set to. You can try fixing the plugin, looking at your error log etc. Or you can also try increase your memory limit. This link shows you how to do that:
https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/After doing some more research I noticed this in the changelog:
the filter yoast-ga-push-array-universal has been mapped to monsterinsights_frontend_tracking_options_analytics_end.
Does that mean that I need to change to use the monstersights_etc filter name instead now? If so are the parameters the same?
Forum: Plugins
In reply to: [Contact Form 7] Not working on same server but latest CF7 / WordPressThanks Neil. It was the server. There was a php.ini file in the root directory that was blocking the CF7. Removed that file and problem solved.
Forum: Plugins
In reply to: [Simple Lightbox] Please deactivate loading google web fontI’d also like to do this. Hope we get a solution soon.
I also have this same issue. Using W3TC and Gallery plugin. Getting that error in my error log. Debug enabled and dont see error when viewing the page but comes up on error. Definetly using wp_footer in the theme.
Forum: Plugins
In reply to: [Max Mega Menu] Mega Menu blocked by robots.txt for search botsOh right. The script link appeared right after your mega-menu code was called in the header code and the change only happened after a mega-menu update. Must have been a coincidence instead. Thanks for confirming.
Worked it out. The second address line for shipping was set to required. But as that appears without a label and was just called “shipping” it wasnt’t obvious. Set that field to not required and fixed the issue.
I am having the same problem. Did you solve this?
Thanks George. I suspected that was the case but the reviews made it sound like it could have been that this plugin may have had premium addons. Thanks for clarifying.
Forum: Plugins
In reply to: [Contact Form 7] Multiple submissions when click submit many timesAny solutions to this? Also having an issue with impatient users pressing submit multuple times.