Niall Madhoo
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Custom taxonomy in WordPressHello @webamies,
I recommend following these guides: https://www.wpbeginner.com/wp-tutorials/how-to-create-custom-post-types-in-wordpress/ and https://www.wpbeginner.com/wp-tutorials/create-custom-taxonomies-wordpress/. They explain how to add custom post types and custom taxonomies to your site and how to display them.
You may also need custom fields, which you can learn how to do here: https://www.wpbeginner.com/wp-tutorials/wordpress-custom-fields-101-tips-tricks-and-hacks/.
Forum: Developing with WordPress
In reply to: pano2vrPlayer is not definedHello @marcoale,
Did you manage to fix the problem you were having? The site seems to work for me.
If not, there are many missing JavaScript files that prevent this feature from loading properly on the site. I also recommend enqueuing these scripts by following this guide: https://www.wpbeginner.com/wp-tutorials/how-to-properly-add-javascripts-and-styles-in-wordpress/.
Forum: Everything else WordPress
In reply to: Product not showing up on WooCommerce blocks@jigtak I recommend asking at https://ww.wp.xz.cn/support/plugin/woocommerce/ so the WooCommerce developers and support community can help you with this.
Hello @owenlee2,
As you uploaded your theme using Filezilla, could you please try deleting the theme using the same method?
Then, please attempt to disable all plugins, and use one of the default (Twenty*) themes. If the problem goes away, enable the plugins one by one to identify the source of your troubles.
If you can install plugins, install and activate Health Check: https://ww.wp.xz.cn/plugins/health-check/
It will add a new feature under Tools > Site Health.
On its Troubleshooting tab, you can Enable Troubleshooting Mode. This mode will disable all plugins, switch to a standard WordPress theme (if available), allow you to turn your plugins on and off, and switch between themes, without affecting normal visitors to your site. Following these steps allows you to test for various compatibility issues.Thereβs a more detailed description about how to use the Health Check plugin and its Troubleshooting Mode at https://make.ww.wp.xz.cn/support/handbook/appendix/troubleshooting-using-the-health-check/.
I also see the following HTML comment when I view the site’s page source</strong (view-source:http://www.optimizedlifestyle.org/) and nothing else:
<!-- Backend functions -->Could you please try running your theme’s PHP code through https://phpcodechecker.com/, as I think there may be some syntax errors somewhere?
Forum: Requests and Feedback
In reply to: Exclude category from blog pageYou’re welcome! Glad the solutions worked!
Forum: Fixing WordPress
In reply to: Email changed on admin password resetYou’re most welcome, @mrgingles! Glad it worked!
Forum: Fixing WordPress
In reply to: The requested URL was not found on this serverDear Olga,
I’m sorry to hear that.
Could you please see the following instructions that explain the steps to take if you think your site has been hacked: https://ww.wp.xz.cn/support/article/faq-my-site-was-hacked/?
This article may also be useful for you: https://www.wpbeginner.com/beginners-guide/beginners-step-step-guide-fixing-hacked-wordpress-site/.
Best,
NiallForum: Requests and Feedback
In reply to: Help with CSS code for All Colors themeHello @katlyplus,
It would be better to post a question as a new topic. If anyone else has a similar issue, it would be easier for them to find the post. π
The background appears to have been created by the Simple Full Screen Background Image plugin: https://ww.wp.xz.cn/plugins/simple-full-screen-background-image/. Could you please try deactivating that plugin under Plugins inside your WordPress Admin dashboard (see https://www.wpbeginner.com/beginners-guide/how-to-easily-deactivate-wordpress-plugins/)?
Forum: Fixing WordPress
In reply to: [NSFW] I receive false sales notificationsYou’re welcome @edmundovaldez.
If your question has been answered, it would be great if you would mark this topic as resolved in the sidebar. This helps the forum’s volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Forum: Requests and Feedback
In reply to: Help with CSS code for All Colors themeYou’re very welcome @mikeflynn08! π
Forum: Fixing WordPress
In reply to: Simple plugin for cost calculator sliderYou’re welcome @oarthus! Glad the solution worked!
Hello @nainschiffsmodelle,
I recommend asking at https://ww.wp.xz.cn/support/plugin/woocommerce/ so the WooCommerce developers and support community can help you with this.
Product Add-Ons is one option: https://woocommerce.com/products/product-add-ons/. You can set it up to allow customers to add additional toppings to the standard pizza.
WooCommerce Product Add-Ons Ultimate is another option: https://pluginrepublic.com/wordpress-plugins/woocommerce-product-add-ons-ultimate/. Here’s a demo of a pizza product created using that plugin: https://pluginrepublic.dev/product-extras/product/create-your-own-pizza/
Forum: Requests and Feedback
In reply to: Exclude category from blog pageHello @neallos,
Neal, you have the code mostly correct. It needs to use
is_home, which is the conditional tag required for the blog page: https://developer.ww.wp.xz.cn/reference/functions/is_home/Could you please try the following code instead:
// Remove category 31 from blog page function exclude_category_blogpage( $query ) { if ( $query->is_home() ) { $query->set( 'cat', '-31' ); } return $query; } add_filter( 'pre_get_posts', 'exclude_category_blogpage' );Niall
Forum: Everything else WordPress
In reply to: Product not showing up on WooCommerce blocksHello @jigtak,
Have you tried adding categories to your site and adding your products under these categories? This guide explains how to do that: https://docs.woocommerce.com/document/managing-product-taxonomies/.
Forum: Fixing WordPress
In reply to: Fatal error– failed to open stream — Missing the file referred toHello @seanbanksbliss,
I recommend manually updating your site, which will add that file back to your site and update WordPress to the latest version. This guide explains how to do that: https://ww.wp.xz.cn/support/article/updating-wordpress/#step-1-replace-wordpress-files.
Just make sure you have a backup of your site before trying the manual update.