Denis ?oljom
Forum Replies Created
-
Forum: Plugins
In reply to: [YOP Poll] Uncaught SyntaxError: Invalid regular expression: missing /I’ve send the email to you but no reply… Any help would be appreciated
Forum: Plugins
In reply to: [Jigoshop] Jigoshop sorting widgetOk, so I’ve noticed that the widget has different sorting slug than when you choose to place the sorting above content
https://www.example.com/shop/?sorting_widget_=price_lowest
vs
https://www.example.com/shop/?sorting=price_lowest
which seems to work (for regular products, variable ones will be messed up).
I changed the widget.php in the plugin \includes\templates folder for the select to have the
name="sorting"
but this limits the widget to one per page, and is a temporary fix…Client has latest Jigoshop (v 1.17.8 ), and latest plugin (v 1.2.8).
Forum: Plugins
In reply to: [Jigoshop] Pull the price in custom loopOk disregard my question, I wasn’t looking enough. I just put
$product = new jigoshop_product( $post->ID );
In my loop and it worked like a charm ??
Forum: Fixing WordPress
In reply to: Error after updating to 4.2From Function Reference/register sidebar
If you do not set the id argument value, you will get E_USER_NOTICE messages in debug mode, starting with version 4.2.
So if you did not have id in your functions.php while using register_sidebar() function, and you updated to wp 4.2, you’ll get this notice (in debug mode).
Just add a counter $i, and when going through your sidebars, increase i by 1 ($i++) and add
'id' => 'sidebar-'.$i,
in your
register_sidebar()
function.Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Icons on my site disappeared after updatingYup, happens for me too. The font-awesome from the plugin overwrites any default icon font on the theme.
Forum: Plugins
In reply to: [ExchangeWP: Simple WP Ecommerce] On sale feature?I resolved the issue ??
Forum: Plugins
In reply to: [ExchangeWP: Simple WP Ecommerce] Unsetting Super Widget?Hi! Thank you for answering ??
I created a function, and just set the superwidget to null. That way it’s set, but it’s not showing, so you cannot buy anything, and that’s exactly what I need (catalog) ??
Forum: Plugins
In reply to: [ExchangeWP: Simple WP Ecommerce] Unsetting Super Widget?Anybody?
Forum: Plugins
In reply to: [ExchangeWP: Simple WP Ecommerce] On sale feature?I’ve found out that I can add_action to ‘it_exchange_get_store_product_featured_images_loop_elements’, but I don’t know how to check if the product is out of stock. In woocommerce that’s easy.
Also, how to just append element to that action? Because if I just echo something out as a test, the image disappears.
Forum: Plugins
In reply to: [WordPress Importer] Debug: InfoI’m getting the same warning when going to Tools -> Import.
Forum: Plugins
In reply to: [WooCommerce] Shortcodes causing error in menuI’ve resolved the issue, it was the theme in question causing the problem.
Forum: Plugins
In reply to: [WooCommerce] Shortcodes causing error in menuAnyone else has this problem?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce interfering with menu addingIt’s not resolved. And it happens only when I use woocommerce shortcodes for featured products, recent products etc.
Forum: Plugins
In reply to: [WooCommerce] How to wrap sidebar in a separate div from shop items?Never mind, figured it out ??
Forum: Plugins
In reply to: [Compare List for WooCommerce] Putting button where I want it?Ok, got it, Just had to add
<?php remove_action( 'woocommerce_after_shop_loop_item', 'wccm_add_button' ); ?>
After it, and it works…