Forum Replies Created

Viewing 20 posts - 11,401 through 11,420 (of 14,509 total)
  • Author
    Posts
  • in reply to: Hyperlink in gallery image #11899
    Sakin
    Keymaster

    @Nixos: You don’t need to re-upload. You can just edit those image and add the link. But you might need to recreate gallery.

    in reply to: Hyperlink in gallery image #11886
    Sakin
    Keymaster

    @Nixos: Yes you can do that from “Custom Link” options. See this screenshot http://pinterest.com/pin/548594798329863531/

    in reply to: Text/Image box in side bar #11884
    Sakin
    Keymaster

    @keithphotos: In that Widget you will see one ad code box, this is for those who want to add the ads code from Google Adsense and other. But if you want image then you can just paste the image URL in the image input box.

    in reply to: Problem with dropdown menu and future slider #11883
    Sakin
    Keymaster

    @armandosarris: Thanks for your appreciation.

    in reply to: Change language #11882
    Sakin
    Keymaster

    @Marianne: Yes you can make it drop down menu through Menus. Go to “Appearance => Menus” and build your own menu. Read more at http://en.support.wordpress.com/menus/

    For text file you can download it from http://catchthemes.com/languages/simple-catch-language.rtf .In this file there is text in msgid. For example: msgid “We are sorry! This page is not available.” and you need to translate it in your language.

    in reply to: Nexus 7 Landscape Menu Display Problem #11867
    Sakin
    Keymaster

    @arichardc: You can upload screenshot in your own site or in any image sharing site. Then you can post the url here.

    in reply to: Can't Download Theme? #11866
    Sakin
    Keymaster

    @illibo: I have restore your account. Now you should be able to download it from your account at http://catchthemes.com/my-account/. If you still have issue, then you can contact to our sales and account directly at http://catchthemes.com/contact-us/

    in reply to: Hyphens #11864
    Sakin
    Keymaster

    @saludypaz: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    .site-content article {
    	-webkit-hyphens: none;
    	-moz-hyphens: none;
    	hyphens: none;	
    }
    in reply to: Automatic Slider #11863
    Sakin
    Keymaster

    @Bill Pagonas: If you are using Simple Catch Pro theme and you want your latest post to go in the slider, then you must use “Featured Category Slider”.

    To use featured category slider,
    1. Go to “Appearance => Theme Options => Featured Slider => Slider Options”. Then in “Select Slider Type”, you need to select “Featured Category Slider”.
    2. After you select the “Featured Category Slider”. You need to select the category from “Featured Category Slider Options”. If you want from all category then you can select multiple category.

    in reply to: Text/Image box in side bar #11862
    Sakin
    Keymaster

    @keithphotos: In Catch Box Pro theme, it’s really simple. You can just login to your WordPress Dashboard. Go to “Appearance => Widgets”. Then you can drag and drop “Catch Box Adspace Widget” to your sidebar.

    in reply to: Change language #11860
    Sakin
    Keymaster

    @Marianne: Can you check the following article. We already have .pot file, you just need to create .mo and .po file for Danish language.
    See this http://wp.tutsplus.com/tutorials/theme-development/translating-your-theme/

    If you think it’s complicate. Then let me know it. I will send you text file and you can just convert the text.

    in reply to: Change the text in comments form #11859
    Sakin
    Keymaster

    @Bill Pagonas:
    You need to build child then. Then create the file functions.php and add the following code.

    /**
     * Altering Comment Form Fields
     * @uses comment_form_default_fields filter
     */
    function simplecatch_comment_form_fields( $fields ) {
    	$req = get_option( 'require_name_email' );
    	$aria_req = ( $req ? " aria-required='true'" : '' );
    	
        $fields['author'] = '<label for="author">' . __('Name','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Name', 'simplecatch' ) .'&nbsp;'. ( $req ? esc_attr__( '( required )', 'simplecatch' ) : '' ) .'" name="author"'. $aria_req .' />';
    	$fields['email'] = '<label for="email">' . __('Email','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Email', 'simplecatch' ) .'&nbsp;'. ( $req ? esc_attr__( '( required )', 'simplecatch' ) : '' ) .'" name="email"'. $aria_req .' />';
    	$fields['url'] = '<label for="url">' . __('Website','simplecatch') . '</label><input type="text" class="text" placeholder="'.esc_attr__( 'Website', 'simplecatch' ) .'" name="url"'. $aria_req .' />';
    
        return $fields;
    } // simplecatch_comment_form_fields
    in reply to: Problem with dropdown menu and future slider #11857
    Sakin
    Keymaster

    @armandosarris: You can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #branding { z-index: 90; }

    in reply to: Having trouble centering header #11856
    Sakin
    Keymaster

    @klhaight: You can just add the following CSS in your child theme style.css or in “Appearance => Theme Options => Custom CSS” box
    .logo-wrap { float: none; }

    in reply to: Featured Content Re-location #11855
    Sakin
    Keymaster

    @MikeGilbert: Ok I have just send your the Child Theme in your email. You can just upload and use it.

    in reply to: Widgets are visible on all pages? #11848
    Sakin
    Keymaster

    @HR-Flex: That is footer widget, which will show in all pages. Either you need to build child theme and remove the code or you can hide it through css. For css, I can give you the code. You can add the following css in “Appearance => Theme Options => Custom CSS” box.

    #footer-sidebar { display: none; }
    .home #footer-sidebar { display: block; }
    in reply to: Homepage Featured Content #11847
    Sakin
    Keymaster

    @albertoc: Ok I have just forwarded the previous email.

    in reply to: Change language #11846
    Sakin
    Keymaster

    @Marianne: Oh sorry about that. I see that Simple Catch Theme is not yet translated in Danish

    It is currently translated in Polish, Russian, Finnish, French, Dutch, Croatian, Chinese, German, and Italian.

    You can help us in translation. As all translation are done voluntary by our users only.

    in reply to: Featured Content Re-location #11845
    Sakin
    Keymaster

    @MikeGilbert: In you child theme. You need to create the file functions.php and only add the following code.

    // Unhook default parent functions
    function unhook_default_functions() {
    	remove_action( 'catcheverest_main', 'catcheverest_homepage_featured_display', 10 );
    }
    add_action('init','unhook_default_functions');
    // Add Featured Content after seconday
    add_action( 'catcheverest_after_secondary', 'catcheverest_homepage_featured_display', 10 );
    in reply to: “Footer Area One/Two/Three” widget breaking line #11832
    Sakin
    Keymaster

    @udisa: This is repeat question. I have already answered you in http://catchthemes.com/support-forum/topic/header-size-and-menu-bar-color/

    Please post it only one time. Do not duplicate it.

Viewing 20 posts - 11,401 through 11,420 (of 14,509 total)