theamountof
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Hiding AttributesHere is a link, but again this is more for a backend fix, I have looked at hiding via css, but there are no classes for me to target. http://www.laserfaxupload.com.php56-23.dfw3-2.websitetestlink.com/product/compatible-toner-cartridge-for-tn350/
As for hiding the whole tab that is not an option because not all the attributes need to be hidden just some.
This doesn’t answer the question, even if I installed the other plugin, I don’t see how that would allow me to just target a single role. I am trying to make it so that only some customers can use the invoice payment option, not all.
Forum: Plugins
In reply to: [WooCommerce] Remove sidebar from shop pageI had this same question and am also using Divi. Anyone who also uses Divi the option is located in Theme Options -> General. (at least as of 3.0.15)
Forum: Hacks
In reply to: Can't get jquery to workthanks bcworks, that is on the right track to getting this to work. When I hover over the “THE A OF THE I
COUNTRY” div, it does the hover transformation, but the main div explore does not.Forum: Hacks
In reply to: Can't get jquery to workI have removed the external js file and link to it, and the code I have in my previous response, which is what was in the js file, is located just before </head>.
Forum: Hacks
In reply to: Can't get jquery to workI wish I could see the same thing you two are because whenever I inspect the script I am able to bring it up, but aside from that, I removed the external js file and just placed the script code in the header after the jquery load, and I still can’t get it to work.
The script should make it if you hover over the first bucket in explore “THE A OF THE I COUNTRY” it should cause the gray background to change like in the jsfiddle.
This is the script I have in the header:
<script type='text/javascript'> jQuery(function() { jQuery('.explore > .country').hover(function() { jQuery(this).parent().toggleClass('hover'); }) jQuery('.explore > .community').hover(function() { jQuery(this).parent().toggleClass('hover2'); }) }); </script>Forum: Hacks
In reply to: Can't get jquery to workI have used firebug and I am not seeing what you are seeing. I have even go through and made the code relative, and even added the script into the header itself, and both ways the script will not function.
Sorry my bad, I meant to update this yesterday. I figured out that my theme, divi, has some woocommerce css and there was a clear: none; class that was causing the products to float weirdly if a product had a three line name and then there was a title with a 2 line name next to it. For anyone else who encounters this problem you have to remove this from the divi style.css:
.et_pb_shop_grid .woocommerce ul.products li.product,.woocommerce-page ul.products li.product { clear: none;}
Just note that you will have to remove this after doing a theme update since this is not something you can override, or at least I wasn’t able to.
Forum: Plugins
In reply to: [Predictive Search for WooCommerce] Search just one CategoryAny word if this is a feature or if this can be done with this plugin?
Thank you for the response, that worked.
I had figured it was not a default option, it is just that I have looked through the php files and cannot seem to figure out where I would go about making the changes.
I am so sorry, that is my mistake. I have been using the business directory and event manager on that site so often that they blended together and when I encountered this issue I just thought you would know the answer.
Here is a link to an event – http://techzibits.com/events/ineltec-licht-technology-fair-for-automation-electronics/
Under Event Specs & Links you will see Event Website and Contact are linked. In the screenshot of the backend you will see that the show_website has content, but the show_contact field does not yet both are showing up.
Forum: Plugins
In reply to: [WooCommerce] Simple Single Product Price MissingI am not the best at coding php, and that is the code I found to display custom fields. So I changes $wp_query with $product and ended up with:
<?php global $product; $postid = $product->post->ID; echo get_post_meta($postid, 'amount', true); ?>Which works and displays the correct custom field.
Thank you!
Forum: Plugins
In reply to: [WooCommerce] Simple Single Product Price MissingI removed the wp_reset_query but when I am on a single product page the products under You may also like… still show the custom field for the main product on the page instead of the custom field for the other products.
ie If I am on the 5w-30 Single (1 Quart) page, it is showing the 6 Pack and Case products under You may also like…, but For the 6 Pack and Case products the custom field shows Single (1 Quart)