Forum Replies Created

Viewing 20 posts - 11,961 through 11,980 (of 14,500 total)
  • Author
    Posts
  • in reply to: embed youtube in featured content #10147
    Sakin
    Keymaster

    @arthidalgo: Yes, you can add embed code in the Homepage Featured Content section. Just add the embed code to “Content” box.

    in reply to: Removing space between content and footer #10146
    Sakin
    Keymaster

    @amyfanton: I see that you have set “Front Page” in “Settings => Readings”. You can just set that as latest post “our latest posts” and disable that from “Appearance => Theme Options => Homepage Settings => Homepage / Frontpage Settings” and uncheck “Enable Latest Posts” and save it.

    in reply to: How to show BOTH Tags AND Categories? #10145
    Sakin
    Keymaster

    @Fat_Nakago: To display both tag and categories in Simple Catch theme. You need to build child them and copy the function simplecatch_loop() from simplecatch_functions.php and add it in your child theme functions.php and then edit the condition

    $tag = get_the_tags();
    if (! $tag ) { ?>
        <div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
    <?php } else { 
             the_tags( '<div class="tags"> Tags: ', ', ', '</div>'); 
    }

    to

    <div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
    <?php 
    $tag = get_the_tags();
    the_tags( '<div class="tags"> Tags: ', ', ', '</div>'); ?>
    in reply to: Featured Image Question/Issue #10144
    Sakin
    Keymaster

    @pele: I don’t get it what you mean. When I check in your site. Everything looks nice. Can you explain to me or send the screenshot of what you mean.

    in reply to: Trouble changing text color of footer #10143
    Sakin
    Keymaster

    @jihn_1: You can change the font size in the following CSS and add it in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { font-size: 13px; }

    in reply to: Please Help on Pages and Headers! #10142
    Sakin
    Keymaster

    @xcaliber: for Page with updated posts. You can assign that page with the template “Blog”.

    To remove the search in the header right. You can just add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-right .widget_search { display: none; }

    But if you want to remove the Header Right Section itself then you can just go to “Appearance => Theme Options => Header Right Section” and select “Disable Header Right Section” and save it.

    in reply to: Settings for Home and Blog pages #10141
    Sakin
    Keymaster

    @xcaliber: That’s the normal blog layout of Simple Catch Theme. Can you show me your site. Maybe you have missed adding in the Featured Image in the post. The picture in the side in the Featured Image of that post. To add in the Featured Image see this http://en.support.wordpress.com/featured-images/#setting-a-featured-image

    in reply to: How to remove some things #10140
    Sakin
    Keymaster

    @impresnet: Now the css is same for pro and free version.

    in reply to: Additional Social Media Link #10139
    Sakin
    Keymaster

    @shaneskinner: Build the child theme and then copy the function catcheverest_social_networks() from catcheverest-functions.php file and add in in our child theme functions.php file and edit the text

    in reply to: Hyperlinks Contain Spaces After #10138
    Sakin
    Keymaster

    Same thing it also have image script. Check your script carefully. There is http://assoc-amazon.com/ image. See the code as below:
    <p><strong>To read more about “Survivor,” <a target="_blank" href="http://www.amazon.com/exec/obidos/ASIN/0758280688/readforplea0b-20">click here</a><img width="1" height="1" border="0" src="http://www.assoc-amazon.com/e/ir?t=readforplea0b-20&l=as2&o=1&a=0758280688" alt="" style="border: none !important; margin: 0px !important;">.</strong></p>

    in reply to: Featured post slider not working #10136
    Sakin
    Keymaster

    @Elisabetta: The issue has been fixed. I just updated to latest version 2.4.3

    in reply to: Footer Widget #10117
    Sakin
    Keymaster

    @mg13: Send me your site URL and can you show me screenshot of what you want.

    in reply to: Featured Slider Questions #10116
    Sakin
    Keymaster

    @striderbl: Thanks for putting back the footer. I see that there is some issue with the slider with the version. So, I have just push the update, but it will be only release once the WordPress theme review team makes it live. For now you have to manually update the theme. You can download theme from http://wordpress.org/themes/download/simple-catch.2.4.3.zip

    in reply to: remove featured slider from posts #10114
    Sakin
    Keymaster

    @dbentzen: Can you replace that with the following
    .single-post #main-slider { display: none; }

    But at this in the top section of Custom CSS box.

    in reply to: How to remove some things #10110
    Sakin
    Keymaster

    @impresnet: What happen in Pro version?

    in reply to: Featured post slider not working #10108
    Sakin
    Keymaster

    @Elisabetta: It looks like there is some issue with the slider script. Do debug, I need to check in your site. So, I will contact you through email.

    in reply to: Header Issues #10107
    Sakin
    Keymaster

    Oh sorry I forgot the existing css. So, can you replace it with the following

    #hgroup-wrap #site-logo img, #main-feat-img {
        box-shadow: none;
        opacity: 1;
    } 
    in reply to: Header Issues #10101
    Sakin
    Keymaster

    @aceenrichment: You can replace the above css with the following.

    #main-feat-img, #site-logo img {
        box-shadow: none;
        opacity: 1;
    }
    in reply to: Leave A Reply Form Template #10075
    Sakin
    Keymaster

    @Derek: Check this for enabling and disabling comments http://en.support.wordpress.com/enable-disable-comments/

    in reply to: Please Help on Pages and Headers! #10074
    Sakin
    Keymaster

    @xcaliber: There no limit. It’s just a suggested size. You can upload the Header Image of any size. Just to note, after you upload the image from “Appearance => Header”. You will get “Crop Header Image” box. There you can just click on “Skip Cropping, Publish Image as Is”.

    You can create the post in the categories. But you cannot assign category in page. There is only one option, where you can assign the page template as “Blog” there it will show all the posts.

Viewing 20 posts - 11,961 through 11,980 (of 14,500 total)