orvils
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Braintree Payment Gateway] A couple of errors using SandboxI am having the same issue.
Has anyone managed to solve this?Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered Nav Filter Displays wrong countBy the way. My solution was just a workaround to fix the situation for that one time, the cached values are not updated.
$_products_in_term = wc_get_term_product_ids( $term->term_id, $taxonomy );
in class-wc-widget-layered-nav.php will always return the same values.Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered Nav Filter Displays wrong countNo the problem was with the default WordPress Layered nav filter.
I found that the cached product_ids were not updated.
I deleted all rows withmeta_key
LIKE ‘product_ids’ from mywp_woocommerce_termmeta
and the problem was solved.Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered Nav Filter Displays wrong countThanks for the help.
This helped somewhat. The counts for the visible atributes are correct now, but some of the attributes are not shown in the navigation.
Eg – https://bit.ly/1U3cwwO
On the page you can see the two shoe models available, but the count in the navigation is 0.
Any ideas on this?Forum: Plugins
In reply to: [WooCommerce] WooCommerce Layered Nav Filter Displays wrong countI am having the same problem.
Did you found a solution?
The solution that worked for me was to add a little change to the aioseop_sitemap.php file.
and make/** Return post data using get_posts(). **/ function get_all_post_type_data( $args ) { $defaults = array( 'numberposts' => $this->max_posts, 'offset' => 0, 'category' => 0, 'orderby' => 'post_date', 'order' => 'DESC', 'include' => array(), 'exclude' => array(), 'post_type' => 'any', 'meta_key' => '', 'meta_value' => '', 'meta_compare' => '', 'meta_query' => '', 'cache_results' => false, 'no_found_rows' => true );
look like this
/** Return post data using get_posts(). **/ function get_all_post_type_data( $args ) { $defaults = array( 'numberposts' => $this->max_posts, 'offset' => 0, 'category' => 0, 'orderby' => 'post_date', 'order' => 'DESC', 'include' => array(), 'exclude' => array(), 'post_type' => 'any', 'meta_key' => '', 'meta_value' => '', 'meta_compare' => '', 'meta_query' => '', 'cache_results' => false, 'no_found_rows' => true, 'lang' => 'ru,en,lv' );
where the ‘lang’ contains all the languages defined on the site
Forum: Plugins
In reply to: [Ceceppa Multilingua] Can not translate the name of a shipping optionTo see the option go to WooCommerce -> Settings select Shipping and choose any of the shipping options. Each shipping methods has a title that is visible to the user.
https://www.wtf.lv/ftp/Raivis/bildes/2015-04-24_085204.pngAlso check the Checkout tab. It has info about payment options that have some text fields as well
https://www.wtf.lv/ftp/Raivis/bildes/2015-04-24_085325.pngGood luck and thanks for your effort!
Forum: Plugins
In reply to: [Polylang] Update to 1.7.3 broke Nextgen GalleriesThanks, this solved my problem.
Forum: Plugins
In reply to: [Polylang] Update to 1.7.3 broke Nextgen GalleriesWhen I try to roll back I get the following error
Fatal error: Call to a member function set_home_url_scheme() on a non-object in /public_html/visitgulbene.lv/wp-content/plugins/polylang/include/model.php on line 199
Will keep looking.
Forum: Plugins
In reply to: [WooCommerce Product FAQs] Can not post answersThis issue seems to have resolved itself.
Thanks!