Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 10-22-2012, 07:05 AM   PM User | #1
sakina
New Coder

 
Join Date: Oct 2012
Posts: 25
Thanks: 10
Thanked 0 Times in 0 Posts
sakina is an unknown quantity at this point
Problems using Woocommerce hooks

Hi,

I am developing a site using the WooCommerce plugin for Wordpress, and I am trying to re-adjust the order of the loop on my product page so that the title displays next to the image instead of above it. I have not had trouble getting the title moved, but for some reason, I cannot remove it from its original location (it appears twice). Can someone please help me figure out what I'm doing wrong.

Here is what the original woocommerce-hooks.php file looked like:

PHP Code:
        add_action'woocommerce_single_product_summary''woocommerce_template_single_title'5);
    
add_action'woocommerce_single_product_summary''woocommerce_template_single_price'10);    
        
add_action'woocommerce_single_product_summary''woocommerce_template_single_excerpt'20);
    
add_action'woocommerce_single_product_summary''woocommerce_template_single_meta'40);
    
add_action'woocommerce_single_product_summary''woocommerce_template_single_sharing'50); 
Here is what I changed:
PHP Code:
    add_action'woocommerce_single_product_summary''woocommerce_template_single_price'10);    
        
add_action'woocommerce_single_product_summary''woocommerce_template_single_title'15);
        
add_action'woocommerce_single_product_summary''woocommerce_template_single_excerpt'20);
    
add_action'woocommerce_single_product_summary''woocommerce_template_single_meta'40);
    
add_action'woocommerce_single_product_summary''woocommerce_template_single_sharing'50); 
I also tried to add this instead:

PHP Code:
       remove_action'woocommerce_single_product_summary''woocommerce_template_single_title'5);
       
add_action'woocommerce_single_product_summary''woocommerce_template_single_title'15); 
sakina is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 12:53 AM.


Advertisement
Log in to turn off these ads.