Forum Replies Created

Viewing 15 posts - 151 through 165 (of 177 total)
  • Posted in:
  • in reply to: Header Question – #256155
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    in reply to: Header Question – #256148
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    in reply to: Header Question – #256140
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    in reply to: Header Question – #256133
    dej888
    Member
    Post count: 181

    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 🙂

    in reply to: Mobile Portait View Alignment issue? #256101
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    in reply to: Mobile Portait View Alignment issue? #256095
    dej888
    Member
    Post count: 181

    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?

    in reply to: Creating a Menu Page as a Modal Form? #256088
    dej888
    Member
    Post count: 181

    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?

    in reply to: Header Question – #256086
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    in reply to: Creating a Menu Page as a Modal Form? #256083
    dej888
    Member
    Post count: 181

    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!

    in reply to: Header Question – #256082
    dej888
    Member
    Post count: 181

    Thank you Kyle!

    in reply to: Mobile Portait View Alignment issue? #256081
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    dej888
    Member
    Post count: 181
    This reply has been marked as private.
    dej888
    Member
    Post count: 181

    Hi 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’ );

    in reply to: Woocommerce Page Templates Expired? #255611
    dej888
    Member
    Post count: 181

    There is a new model of WC – 2.5.5. Is this compatibale? Or should I wait to update to the latest woo?

Viewing 15 posts - 151 through 165 (of 177 total)