Remove Price

Discussion in 'ClassiCraft WordPress Theme' started by j9hagop, Aug 12, 2013.

  1. j9hagop

    j9hagop New Member

    Joined:
    Aug 5, 2013
    Messages:
    9
    Likes Received:
    0
    I would like to remove the price from the list view on all my pages. But I want the price to show when the user is viewing the actual ad. How would I do that?
     

    Attached Files:

  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .thumb_item .price {
    display: none!important;
    }
    .post.classi .price_center {
    display: none!important;
    }
     
  3. j9hagop

    j9hagop New Member

    Joined:
    Aug 5, 2013
    Messages:
    9
    Likes Received:
    0
    How do I get rid of the dollar sign?
     

    Attached Files:

  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to single-ad.php present in your theme directory and remove the code given below

    Code:
    echo get_option('currency_symbol');
    Sending image for reference

    2013-08-14_1110.png



    This will solve your issue.
     

Share This Page