Shortcode in two column area?

Discussion in 'Figero WordPress Theme' started by falcott, Aug 10, 2013.

Thread Status:
Not open for further replies.
  1. falcott

    falcott Member

    Joined:
    Dec 28, 2011
    Messages:
    32
    Likes Received:
    0
    Hi,

    I have two questions about the right column of the two column area on the homepage.

    1. I would like to rotate testimonials in that area. Is it possible to use a Testimonial rotator plugin that uses shortcodes?

    2. Is it possible to remove the image in the right column?

    Thanks.
     
  2. Gourav

    Gourav Support Staff

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

    1.For your first issue

    Go to front-page.php present in your theme directory and replace current code

    Code:
    <?php echo stripslashes
    with code given below

    Code:
    <?php echo do_shortcode
    Sending image for reference

    2013-08-10_1537.png



    Now, go to Appearance > Theme Option > Homepage Two Cols > Right Column Description

    and add your plugin shortcode there.


    2. For your second issue

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

    Code:
    .testimonial_holder .testimonial_jcarousel img {
    display: none;
    }

    This will solve your issue.
     
  3. falcott

    falcott Member

    Joined:
    Dec 28, 2011
    Messages:
    32
    Likes Received:
    0
    Thanks Gourav :)
     
Thread Status:
Not open for further replies.

Share This Page