wocoommerce integration

  • Author
    Posts
  • #2336

    Andrew Misplon
    Keymaster

    For sure 🙂 Thanks for support, appreciate it. More to come in this regard (WooCommerce).

    #2337

    m.boccarossa84
    Participant
    This reply has been marked as private.
    #2339

    Andrew Misplon
    Keymaster

    Apologies. Checking.

    #2340

    m.boccarossa84
    Participant
    This reply has been marked as private.
    #2341

    Andrew Misplon
    Keymaster

    Thanks. Diving in now. To avoid putting several WooCommerce templates into Ultra I moved around the div closing structure. This allowed us to handle the WooCommerce wrapper from /inc/woocommerce.php and not have to do it all from WooCommerce template files. Sounds like I missed a beat. With you shortly.

    #2342

    m.boccarossa84
    Participant
    This reply has been marked as private.
    #2343

    Andrew Misplon
    Keymaster

    I’m not able to re-create the sidebar issue. Did you use the child theme above or move some of the files over to an existing child theme?

    #2344

    m.boccarossa84
    Participant
    This reply has been marked as private.
    #2345

    Andrew Misplon
    Keymaster

    If you don’t mind, could we perhaps keep private replies for sensitive data, that way others might be able to follow thread. If you’d rather shift everything over to email we can do that too.

    The challenge with this integration was that I needed to move the .container close from all template files into footer.php. That’s why all of the Ultra template files are in the child theme. After the next update this won’t be necessary of course. I’d you’d like, please, send me your child theme and I’ll work this up for you. Apologies for the hassle. [email protected].

    The warning that @fredriksegeranpt is referring to has to do with the way I’ve moved the title tag from the main area into the Ultra title tag area. I’m working on that right now.

    Thanks everyone.

    #2346

    m.boccarossa84
    Participant

    now works! i haven’t updated all rows of footer.php, and in the update i lost tag

    Thanks for the support!

    #2347

    Andrew Misplon
    Keymaster

    Awesome 🙂 Glad that helped.

    Once more small change. In /inc/woocommerce.php, please, remove the following:

    // Remove the WooCommerce page title
    add_filter( 'woocommerce_show_page_title', false );

    and replace it with:

    if ( ! function_exists( 'ultra_woocommerce_page_title' ) ) :
    /**
     * Filter the WooCommerce page title to remove it.
     */
    function ultra_woocommerce_page_title() {
    	return false;
    }
    add_filter( 'woocommerce_show_page_title', 'ultra_woocommerce_page_title', 10, 1 );
    endif;

    Thanks for your help and support.

    #2348

    fredriksegeranpt
    Participant

    Hi!
    Thank you very much for the help, Just an other question, is it possible to change the nr of how many products that are shown on each page? Because right now the products are shown on 2 pages even toe there is room for all of my products on one side…

    Thanks! 🙂

    #2349

    Andrew Misplon
    Keymaster

    Sure 🙂 The easiest way to adjust this is from Settings > Reading > Posts per page.

Viewing 13 posts - 16 through 28 (of 28 total)

You must be logged in to reply to this topic.

Scroll to top