Plugin interferes with other actions
-
Jetpack (4.2.2) is activated with Contact-Form feature enabled as well. The theme is StoreFront (2.0.7), and after installing this plug-in (1.0.2), customizing the contact section, enabling the contact form, nothing actually happened until I created a new page and manually added contact form in the editor, and set the template to homepage.
Note: Woocommerce is running 2.6.4 with WordPress 4.6.
Now the weird part is that below the contact form, I see all major categories
- Shop by Category
- New In
- We Recommend
- Fan Favorites
- On Sale
- Best Sellers
- Contact Us
I see that under storefront_template_hooks.php, there are already pre-existing code
add_action( ‘homepage’, ‘storefront_homepage_content’, 10 );
add_action( ‘homepage’, ‘storefront_product_categories’, 20 );
add_action( ‘homepage’, ‘storefront_recent_products’, 30 );
add_action( ‘homepage’, ‘storefront_featured_products’, 40 );
add_action( ‘homepage’, ‘storefront_popular_products’, 50 );
add_action( ‘homepage’, ‘storefront_on_sale_products’, 60 );
add_action( ‘homepage’, ‘storefront_best_selling_products’, 70 );How do I go about skipping all these actions, and enforce only ‘storefront_homepage_contact_section’, when we view contact us page?
https://www.ads-software.com/plugins/storefront-homepage-contact-section/
- The topic ‘Plugin interferes with other actions’ is closed to new replies.