- This topic has 27 replies, 3 voices, and was last updated 9 years, 2 months ago by Andrew Misplon.
Tagged: ultra woocommerce
- AuthorPosts
- September 21, 2015 at 10:46 am #2336
Andrew MisplonKeymasterFor sure 🙂 Thanks for support, appreciate it. More to come in this regard (WooCommerce).
September 21, 2015 at 10:54 am #2337
m.boccarossa84ParticipantThis reply has been marked as private.September 21, 2015 at 11:02 am #2339
Andrew MisplonKeymasterApologies. Checking.
September 21, 2015 at 11:03 am #2340
m.boccarossa84ParticipantThis reply has been marked as private.September 21, 2015 at 11:05 am #2341
Andrew MisplonKeymasterThanks. 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.
September 21, 2015 at 11:10 am #2342
m.boccarossa84ParticipantThis reply has been marked as private.September 21, 2015 at 11:15 am #2343
Andrew MisplonKeymasterI’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?
September 21, 2015 at 11:18 am #2344
m.boccarossa84ParticipantThis reply has been marked as private.September 21, 2015 at 11:22 am #2345
Andrew MisplonKeymasterIf 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.
September 21, 2015 at 11:32 am #2346
m.boccarossa84Participantnow works! i haven’t updated all rows of footer.php, and in the update i lost tag
Thanks for the support!
September 21, 2015 at 11:42 am #2347
Andrew MisplonKeymasterAwesome 🙂 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.
September 21, 2015 at 8:07 pm #2348
fredriksegeranptParticipantHi!
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! 🙂
September 21, 2015 at 8:08 pm #2349
Andrew MisplonKeymasterSure 🙂 The easiest way to adjust this is from Settings > Reading > Posts per page.
- AuthorPosts
You must be logged in to reply to this topic.