Hi,
i must integrate Ultra theme with Woocommerce, but don’t work…
can i have help?
wocoommerce integration
This reply has been marked as private.
Apologies. Checking.
This reply has been marked as private.
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.
This reply has been marked as private.
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?
This reply has been marked as private.
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.
now works! i haven’t updated all rows of footer.php, and in the update i lost tag
Thanks for the support!
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.
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! 🙂
Sure 🙂 The easiest way to adjust this is from Settings > Reading > Posts per page.