using add_filter to create a wrapper around woocommerce_after_shop_loop_item
up vote
0
down vote
favorite
I want to be able to add a wrapper around the content in woocommerce_after_shop_loop_item the only way I have been able to do it is like this;
add_filter( 'woocommerce_after_shop_loop_item', 'funky', 9);
function funky(){
echo '<div class="btn_cont">';
}
add_filter( 'woocommerce_after_shop_loop_item', 'funky1', 11);
function funky1(){
echo '</div>';
}
Isn't there a way I can just use one function to echo the wrapper and the content? I know I can do this inside the templates but thats not what I want. Thanks
php woocommerce hook add-filter
add a comment |
up vote
0
down vote
favorite
I want to be able to add a wrapper around the content in woocommerce_after_shop_loop_item the only way I have been able to do it is like this;
add_filter( 'woocommerce_after_shop_loop_item', 'funky', 9);
function funky(){
echo '<div class="btn_cont">';
}
add_filter( 'woocommerce_after_shop_loop_item', 'funky1', 11);
function funky1(){
echo '</div>';
}
Isn't there a way I can just use one function to echo the wrapper and the content? I know I can do this inside the templates but thats not what I want. Thanks
php woocommerce hook add-filter
1
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I want to be able to add a wrapper around the content in woocommerce_after_shop_loop_item the only way I have been able to do it is like this;
add_filter( 'woocommerce_after_shop_loop_item', 'funky', 9);
function funky(){
echo '<div class="btn_cont">';
}
add_filter( 'woocommerce_after_shop_loop_item', 'funky1', 11);
function funky1(){
echo '</div>';
}
Isn't there a way I can just use one function to echo the wrapper and the content? I know I can do this inside the templates but thats not what I want. Thanks
php woocommerce hook add-filter
I want to be able to add a wrapper around the content in woocommerce_after_shop_loop_item the only way I have been able to do it is like this;
add_filter( 'woocommerce_after_shop_loop_item', 'funky', 9);
function funky(){
echo '<div class="btn_cont">';
}
add_filter( 'woocommerce_after_shop_loop_item', 'funky1', 11);
function funky1(){
echo '</div>';
}
Isn't there a way I can just use one function to echo the wrapper and the content? I know I can do this inside the templates but thats not what I want. Thanks
php woocommerce hook add-filter
php woocommerce hook add-filter
asked Nov 22 at 15:44
Reece
6951723
6951723
1
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55
add a comment |
1
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55
1
1
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53434372%2fusing-add-filter-to-create-a-wrapper-around-woocommerce-after-shop-loop-item%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
There is no problem in using 2 hooked functions instead of one… This requires that 2 functions or overriding the template. There is no other way.
– LoicTheAztec
Nov 22 at 22:16
@LoicTheAztec Thanks I wasn't sure if I was doing it wrong
– Reece
Nov 23 at 10:55