interzone2
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] /?wc-ajax=get_refreshed_fragmentsI see, but the problem seems to be in WooCommerce last update. Here is workaround for fixing the URL temporarily.
add_action( 'woocommerce_widget_shopping_cart_buttons', function(){
// Removing Buttons
remove_action( 'woocommerce_widget_shopping_cart_buttons', 'woocommerce_widget_shopping_cart_button_view_cart', 10 );
// Adding customized Buttons
add_action( 'woocommerce_widget_shopping_cart_buttons', 'custom_widget_shopping_cart_button_view_cart', 10 );
}, 1 );
// Custom cart button
function custom_widget_shopping_cart_button_view_cart() {
$original_link = wc_get_cart_url();
$custom_link = home_url( '/cart' ); // HERE replacing cart link
echo '<a href="' . esc_url( $custom_link ) . '" class="button wc-forward">' . esc_html__( 'View cart', 'woocommerce' ) . '</a>';
}Forum: Plugins
In reply to: [WooCommerce] /?wc-ajax=get_refreshed_fragmentsHaving the same exact issue and nothing seems to help.
Forum: Plugins
In reply to: [Learning Management System (LMS) Chat Application] Always refreshing pageSame issue here!
I am currently using free version, is it availible only in pro version?
Hi,
thank you for finding time for me. The thing is, spordiala_10 is not suitable for me, because it’s some kind of category mark for them. That means It shows only spordiala_10 values, not spordiala values what comes after it.I try to explain to you, spordiala_10 is football, but there is a big list of sport organisations and I want to show what sports type every organisation is offering. So that means it shows only spordiala_10 sport type which is football. But there are also spordiala_28 for example which stands for bicycle sport. So that means the actual value comes in “spordiala” not in “spordiala_10” or any other “spordiala_NUMBER”.
So how to take “spordiala” not “spordiala_10”?