Title: Veseloops's Replies | WordPress.org

---

# Veseloops

  [  ](https://wordpress.org/support/users/veseloops/)

 *   [Profile](https://wordpress.org/support/users/veseloops/)
 *   [Topics Started](https://wordpress.org/support/users/veseloops/topics/)
 *   [Replies Created](https://wordpress.org/support/users/veseloops/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/veseloops/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/veseloops/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/veseloops/engagements/)
 *   [Favorites](https://wordpress.org/support/users/veseloops/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Yoast WordPress SEO Plugin DOES NOT WORK!](https://wordpress.org/support/topic/yoast-wordpress-seo-plugin-does-not-work/)
 *  [Veseloops](https://wordpress.org/support/users/veseloops/)
 * (@veseloops)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/yoast-wordpress-seo-plugin-does-not-work/page/2/#post-3263082)
 * And how can we know what is the file causing the error?
    anyone solve the problem?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Yoast WordPress SEO Plugin DOES NOT WORK!](https://wordpress.org/support/topic/yoast-wordpress-seo-plugin-does-not-work/)
 *  [Veseloops](https://wordpress.org/support/users/veseloops/)
 * (@veseloops)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/yoast-wordpress-seo-plugin-does-not-work/#post-3263078)
 * Same problem here, any solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] [Plugin: WooCommerce – excelling eCommerce] Woocommerce shop desconfigurated](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-shop-desconfigurated/)
 *  Thread Starter [Veseloops](https://wordpress.org/support/users/veseloops/)
 * (@veseloops)
 * [14 years, 1 month ago](https://wordpress.org/support/topic/plugin-woocommerce-excelling-ecommerce-woocommerce-shop-desconfigurated/#post-2654456)
 * Fixing the layout
 * On the most part, WooCommerce templates will integrate nicely with most WordPress
   themes. Where you may run into problems is when the default WooCommerce content
   wrappers do not match your chosen theme’s. This will manifest itself by breaking
   your layout on WooCommerce pages and shifting your sidebars into incorrect positions.
   There are two ways to fix this; using WooCommerce hooks (resulting in maximum
   flexibility) or, since 1.4 using our catch-all woocommerce_content() function(
   less flexible).
 * Using woocommerce_content() (1.4+)
 * If you’re using 1.4 there’s an option to create a new template within your theme
   which will be used for all WooCommerce content. While an easy catch-all solution,
   it does have a draw back in that this template will be used for all WooCommerce
   pages. Product categories, user accounts, cart, checkout, everything. “Short-
   cuts lead to long delays” – you’ve been warned!
 * The easiest way to implement this is to copy/paste page.php within your theme,
   rename it was woocommerce.php and replace the standard page loop with <?php woocommerce_content();?
   >. Upload and you’re done!
 * Using hooks
 * First unhook the WooCommerce wrappers;
    remove_action( ‘woocommerce_before_main_content’,‘
   woocommerce_output_content_wrapper’, 10);
 * remove_action( ‘woocommerce_after_main_content’, ‘woocommerce_output_content_wrapper_end’,
   10);
 * Then hook in your own;
    add_action(‘woocommerce_before_main_content’, create_function(”,‘
   echo “<section id=\”main\”>”;’), 10);
 * add_action(‘woocommerce_after_main_content’, create_function(”, ‘echo “</section
   >”;’), 10);
 * Making sure that the markup matches that of your theme. If you’re unsure of which
   classes or ID’s to use take a look at page.php for a guide.

Viewing 3 replies - 1 through 3 (of 3 total)