jellyspoons1074
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] CSV Import Variable Products – “Used for variations” uncheckedBump, would very much appreciate some help with this one if anyone has any experience with importing variable products
Forum: Plugins
In reply to: [IP2Location Redirection] Changes Aren’t SavingExcellent, thank you, that’s working now
Forum: Plugins
In reply to: [IP2Location Redirection] Changes Aren’t SavingSee screenshot here: https://unsee.cc/24b87579/
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Can’t get custom post catégorieI’m having the same problem. Did you find a solution?
Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginOh, and I’m not using any hooks either.
Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginHere’s a screenshot of my settings.
Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginI should have mentioned this, but I am no loner using Custom Post Type UI any more. The custom post type was created with Post My CF7. Still having the same problem.
Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginNo worries, here’s my debug.log. Website URL changed for privacy, hope that’s okay.
And my Javascript console is showing the following:
Load denied by X-Frame-Options: https://www.facebook.com/xti.php?xt=AZUpbFqkCP-rIpDIzJ1ex8rcNTYAECM1qfIazbB_DeqjdzdtWcoZlkc3A_MnxoKCOwVd2tcKyfSI8kVBe1X4HWwJS_o0HyDdxuBV22pEXj1n9KzhTvRYk97gI9zAkRglfvvyfWBeFa2loPCOVCZjw0bdWRHmjFMSUWiVx2siKMqDil6KTm3yvh4qb1dZY2TRn9Susu8nQ6Td6xcqdrJkK-RqxHcjYTa1iODdZGxLY6cqhf-R5UabzuKxqe8VwkQeN5-APm9s0Ne610VHUZi9e-OYRdYHeV1cnf4QXBAaQcVIUbFdo8b8kNsqCtRiTVjSFjD6-KsAQB2B2W-Kl5i2QSLvs4EblpOKXgibsQ3t6zyblwx2t13yRQAmhkwfSVkAs8bWkdAX8e3cMtoTDAicJd6s6noL9iqriafz_1IdznCE0JymGnfamj5IAouBaSFcrXHgS5pPiB-REzMIWbwIpYd5QmhlO0Lrm6RdId7MSlzubhURBn-d5olG5xUVVww_K0wejcXcIUr6lDHlHH9IhFoLBvyPPbjwyK1keO2MIgwaS681B64ErueeiLTf08kzHCb3RpH-LnM_naRG3TmNEwqcef1PsQQ8sJMhXLrLIIuwd6puFp76CsH2Omtf-92w1o7I9GTmSpWK43M_qdAIHolMPZZazaGsVIPKlKsFrPfpPez3XidGfCthSJ8wnxRrtVWXrj6eqapKZFB2hJdhjiXsmTkUTdBAjhVU-cOP8Ay9f2kxTH17mFoSgyVJSok4eE7tMxU9l0PMMJ0OnOzfgnaetM3Rc6SSuACZZIS4edqxwX7xfEzvOz-2lY0ib3bLFbCgLd7nzyY4IOwPNbYj978aSAIaPvrc5M_0vV4ZnmoOeg&isv=1&cts=1515249031&csp does not permit cross-origin framing. JQMIGRATE: Migrate is installed, version 1.4.1 jquery-migrate.min.js:2:542 perf_trace {"name": "e2e", "parent": "PageEvents.BIGPIPE_ONLOAD"} 3CsmirK3Bqr.js:184:2813Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginI’m not running any custom hooks or filters.
I have just tried to use only Post My CF7 Form. I disabled the other plugin and created a new post type with your plugin, but I am having the same problem. The URL just redirects me to the homepage.
Forum: Plugins
In reply to: [Post My CF7 Form] Conflict with Custom Post Type UI PluginHi Aurovrata, thanks for your response.
most likely you will find that disabling the Custom Post Type UI plugin also fixes the issue 😉
I gave that a try, but it didn’t seem to work.
Are you creating a custom post-type for your mapped forms using the Custom Post Type UI plugin and then trying to use the Post My CF7 Form plugin to map the form to this custom post-type?
Yep, that’s exactly what I’m doing.
Forum: Plugins
In reply to: [WooCommerce] Remove The "Read More" Button For Products With No Price?I managed to figure this one out.
Here’s the original code, found at /woocommerce/loop/add-to-cart.php
global $product; echo apply_filters( 'woocommerce_loop_add_to_cart_link', sprintf( '<a rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="%s">%s</a>', esc_url( $product->add_to_cart_url() ), esc_attr( isset( $quantity ) ? $quantity : 1 ), esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( isset( $class ) ? $class : 'button' ), esc_html( $product->add_to_cart_text() ) ), $product );All you need to do is add an if statement.
global $product; if ( $price_html = $product->get_price_html() ) : echo apply_filters( 'woocommerce_loop_add_to_cart_link', sprintf( '<a rel="nofollow" href="%s" data-quantity="%s" data-product_id="%s" data-product_sku="%s" class="%s">%s</a>', esc_url( $product->add_to_cart_url() ), esc_attr( isset( $quantity ) ? $quantity : 1 ), esc_attr( $product->id ), esc_attr( $product->get_sku() ), esc_attr( isset( $class ) ? $class : 'button' ), esc_html( $product->add_to_cart_text() ) ), $product ); endif;This means it will only show the ‘Add To Cart’ button if a price is set.
Forum: Plugins
In reply to: [WooCommerce] Add "Call For Price" Text To Products Without Price?I have resolved this myself, but I’ve provided the solution in case any one else has this problem too. It’s just a bit of simple PHP, but finding where to edit it was the tricky part.
In /woocommerce/loop/price.php there is the following code:
global $product; ?> <?php if ( $price_html = $product->get_price_html() ) : ?> <span class="price"><?php echo $price_html; ?></span> <?php endif; ?>All you need to do is add an ‘else’ to it and include your prefered text.
global $product; ?> <?php if ( $price_html = $product->get_price_html() ) : ?> <span class="price"><?php echo $price_html; ?></span> <?php else : ?> <span class="price">Contact Us</span> <?php endif; ?>Forum: Plugins
In reply to: [WooCommerce] Remove The Link From Product Category>Sorry for not being clearer. Here’s a screenshot: link
The green square outlines the elements that are linked to the product page. I want to remove this link so that it’s not possible for customers to view the actual product page.
Forum: Plugins
In reply to: WooCommerce hook to remove linkI’m looking for a solution to this too. I don’t suppose you’ve managed to find one?