Digital experiences for all disciplines
Forum Replies Created
-
-
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.
Hey Kyle – I just did this. The permalink code is coming from your swift framework when the plugin is enabled. I disabled the framework and activated all plugins and permalinks were fine. Then I activated the swift framework and disabled all other plugins and code is showing in permalinks.
So this is most likely a bug! Can you investigate this further please.
Thank you 🙂
This reply has been marked as private.Mohammad! This is amazing – thank you so much my friend 🙂
On another note, since you can reference the our-menu page displaying products on my site. When you add a product, the ajax feature is not working sicne I added the code to show the quanitity buttons. Can you provide your expertise on this and how can I get it back!? Its enabled in the theme settings?
Thanks Kyle,
What about the checkout page? you can set email support or other modal from the theme options> woocommerce area. How does these modals work?
This reply has been marked as private.I Have not> do I just open the text block and then use the shortcode modal to set it up?
What isn’t clear to me is making a menu link a modal popup?
Thanks!
Thank you Kyle!
This reply has been marked as private.March 16, 2016 at 1:42 pm in reply to: Hiding Add to Cart Button not working – Keeps Saying Adding #255808This reply has been marked as private.March 16, 2016 at 4:50 am in reply to: Hiding Add to Cart Button not working – Keeps Saying Adding #255704This reply has been marked as private.March 15, 2016 at 8:05 pm in reply to: Hiding Add to Cart Button not working – Keeps Saying Adding #255645Hi Mohammad!
To add to my message, I am having with the ajax when I am adding an item to my cart.
I added the following snippet from woothemes to change the text on the button from add to cart to just add.
Now, when I added this, I lost the Ajax feature. Instead of the item just adding and staying at the product, it now loads to the top of the page..
Can you please assist on this and get it back to the way it was prior – but still have the text changed!
Thanks so much!
add_filter( ‘add_to_cart_text’, ‘woo_custom_single_add_to_cart_text’ ); // < 2.1
add_filter( ‘woocommerce_product_single_add_to_cart_text’, ‘woo_custom_single_add_to_cart_text’ ); // 2.1 +function woo_custom_single_add_to_cart_text() {
return __( ‘ADD TO BAG’, ‘woocommerce’ );
}
add_filter( ‘add_to_cart_text’, ‘woo_custom_product_add_to_cart_text’ ); // < 2.1
add_filter( ‘woocommerce_product_add_to_cart_text’, ‘woo_custom_product_add_to_cart_text’ ); // 2.1 +function woo_custom_product_add_to_cart_text() {
return __( ‘+ ADD’, ‘woocommerce’ );
}
function move_add_to_cart(){
remove_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 30 );
add_action( ‘woocommerce_single_product_summary’, ‘woocommerce_template_single_add_to_cart’, 15 );
}
add_action( ‘wp’, ‘move_add_to_cart’ );There is a new model of WC – 2.5.5. Is this compatibale? Or should I wait to update to the latest woo?
-