Senff - a11n
Forum Replies Created
-
Hey @ryandarlington1
You’ll want to disable the Infinite Scroll section for your site: in WP-admin, go to Jetpack → Settings → Writing (or, if you’re in WordPress.com, go to Manage → Settings → Writing), and set the option for Infinite Scroll to “Load more posts using the default theme behavior“.
Let us know if that helps!
Forum: Themes and Templates
In reply to: [Storefront] Like Button RemovalHey @anthonypa2000
The Like button functionality is a feature of Jetpack. You can remove them by disabling this under Jetpack → Settings → Sharing → Like Buttons
Let us know if that helps!
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Cart Overlap issueHey @ltribble
I checked your cart page, but I’m not seeing anything overlapping immediately. Here’s what I see on my end:
Image link: https://d.pr/i/rEkFQsCan you give us a bit more details on what’s not looking good on your end?
Forum: Plugins
In reply to: [WooCommerce] Stop product title length being responsive Pt.2Hey @mikedrum155
Adding the following CSS code should fix that:
@media screen and (min-width: 961px) { .woocommerce ul.products li.product:nth-child(3n+1), .woocommerce-page ul.products li.product:nth-child(3n+1) { clear: both; } }Forum: Plugins
In reply to: [WooCommerce] How can I remove blank space of the image multiple choiceHey @gloyly
Depending on your theme, and which add-ons plugin you’re using exactly, you’ll probably need some CSS to remove blank space. If you can share a link to your site, we can take a look and see if we can help with that CSS code.
Forum: Plugins
In reply to: [WooCommerce] Some product categories gives 500 internal error.If that is the full line, then it’s missing a proper closing. You’ll need to add that at the end:
$comment_form['comment_field'] .= '<p class="comment-form-comment"><label for="comment">' . esc_html__( 'Your review', 'woocommerce' ) . ' <span class="required">*</span></label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required>';Forum: Plugins
In reply to: [WooCommerce] How to customize search results page?Hey @jesseguttenberg
It depends on your theme, but in general, the contents of the product search results page come from archive-product.php (located in woocommerce/templates
Note that this file template is also used for the main shop page, so keep that in mind when you edit it.
Forum: Plugins
In reply to: [WooCommerce] Some product categories gives 500 internal error.Hi @fly2sky
As the error message shows, there is an issue in the code on line 102 in the file single-product-reviews.php within your theme. I suggest you check that line to see if there may be a typo by any chance.
Forum: Plugins
In reply to: [WooCommerce] Styling a product in a linked iFrameHi @jason1993
I’m not entirely sure how the iFrame is generated (is that done by using an additional plugin?), though I can see there are some styles applied in there:
Image link: https://d.pr/i/59yj9TWhat styles are not working for you exactly?
Forum: Plugins
In reply to: [WooCommerce] Some product categories gives 500 internal error.Hi @fly2sky
500 Internal Errors are usually issues with the server, or with the code on your site. I would suggest to check the server logs, which may tell you a bit more about the cause of the error.
You can either check the server logs with your host, or you can try and see if there are any fatal error logs by going to WooCommerce → Status → Logs and look for log files starting with
fatal-error...in the dropdown at the top right.Hey @juliano189
Thank you, I missed that language switch.
I tried this on your site, but I don’t see any issues. I’m able to add a product to my cart by going to https://silkroad-club.com/zh/shop/ and then select a button under a product, and then when I go to https://silkroad-club.com/zh/%e8%b4%ad%e7%89%a9%e8%bd%a6/ I am also able to remove it again from the cart.
If you’re still seeing this issue, have you tried it in various browsers?
Forum: Plugins
In reply to: [WooCommerce] Hide other shipping methods when “Free Shipping” is availableHi @saudadosa
What’s the code you added to your functions.php file?
Forum: Plugins
In reply to: [WooCommerce] Product Data missingHi @dani09
It’s possible that this issue may be caused due to a theme conflict, or possibly a third-party plugin. I’d recommend the conflict-testing steps here to isolate the source of the issue:
https://docs.woocommerce.com/document/how-to-test-for-conflicts/The best way to determine if the issue is being caused by a theme and/or plugin is to do the following:
– Temporarily switch your theme back to a default theme, such as Storefront.
– Disable all plugins except for WooCommerce.
– Clear your browser cache, and the cache on your site if you have one there.
– Test to see if the issue has been resolved.If that resolves the issue, then one-by-one you can switch back your theme and re-enable your plugins, testing in between, until the problem appears again. This will then give you an idea about which plugin is the one causing the conflict.
Hi @juliano189
I checked your site to see if I could spot anything, but since it’s not in my language I got a bit lost.
It’s possible that this issue may be caused due to a theme conflict, or possibly a third-party plugin. I’d recommend the conflict-testing steps here to isolate the source of the issue:
https://docs.woocommerce.com/document/how-to-test-for-conflicts/The best way to determine if the issue is being caused by a theme and/or plugin is to do the following:
– Temporarily switch your theme back to a default theme, such as Storefront.
– Disable all plugins except for WooCommerce.
– Clear your browser cache, and the cache on your site if you have one there.
– Test to see if the issue has been resolved.If that resolves the issue, then one-by-one you can switch back your theme and re-enable your plugins, testing in between, until the problem appears again. This will then give you an idea about which plugin is the one causing the conflict.
Forum: Plugins
In reply to: [WooCommerce] main page does not show categoriesHi @jorisjurka1
To show just the main categories on a page, add this shortcode to the content of the page:
[product_categories number="0" parent="0"]When you view the page, you will then see the main categories listed only, and not any subcategories.
You can read a bit more about which shortcodes you can use right here:
https://docs.woocommerce.com/document/woocommerce-shortcodes/- This reply was modified 5 years, 8 months ago by Senff - a11n.