han

Forum Replies Created

Viewing 15 posts - 106 through 120 (of 434 total)
  • Author
    Posts
  • in reply to: thumbnails are not cropped #3082
    han
    Keymaster

    Hi Joanna, that page and thumbanails are generated from Shortcode ultimate plugin, so it’s not Omega theme issue. Please tell the plugin author about this issue.

    in reply to: Omega + pugin : how have 3 columns ? #3081
    han
    Keymaster

    Go to “Appearance > Widget”, you’ll find new widgetized areas: Footer 1, Footer 2, Footer 3

    in reply to: Post type "attachment" #3078
    han
    Keymaster

    attachment uses default template. You can add your own attachment template if you want

    in reply to: Omega + pugin : how have 3 columns ? #3077
    han
    Keymaster

    Thanks for purchasing the plugin. To add three columns in the footer, install Code Snippets plugin and insert this code

    function omega_custom_theme_setup() {
    	add_theme_support( 'omega-footer-widgets', 3 );
    }
    
    add_action( 'after_setup_theme', 'omega_custom_theme_setup', 11  );
    in reply to: remove featured image from within posts? #3033
    han
    Keymaster

    Awesome! Glad you found it.

    in reply to: Adding Yoast Breadcrumbs to Church theme? #3029
    han
    Keymaster

    Use this snippet if you want to display on all pages including homepage

    add_action( 'omega_before_main', 'church_breadcrumb' );
    
    function church_breadcrumb() {
      if ( function_exists('yoast_breadcrumb') ) {
        yoast_breadcrumb('<p id="breadcrumbs">','</p>');
      } 
    }
    in reply to: Adding Yoast Breadcrumbs to Church theme? #3026
    han
    Keymaster

    First you need to install this plugin, https://wordpress.org/plugins/code-snippets/

    Then add new Snippet and drop below code into code textarea

    add_action( 'omega_before_main', 'church_breadcrumb' );
    
    function church_breadcrumb() {
      if ( function_exists('yoast_breadcrumb') && !is_front_page() ) {
        yoast_breadcrumb('<p id="breadcrumbs">','</p>');
      } 
    }
    
    in reply to: Text Wrap around Featured image in Church Theme #3020
    han
    Keymaster

    Go to “Appearance > Customize > CSS” and insert this code

    .entry-content img.medium,
    .entry-content img.thumbnail {
    	float: left;
    	margin: 7px 24px 24px 0;
    }

    I’ll add this in the next release

    in reply to: Customize Tagline Font – Church theme #3016
    han
    Keymaster

    Go to Appearance > Customize > CSS and drop this code

    .site-description {
        font-weight: bold;
        font-style: italic;
    }

    yes, Google font is supported. Example font import that you can drop into your style-sheet.

    @import url(http://fonts.googleapis.com/css?family=Open+Sans);

    in reply to: How to insert a jquery item before the content #3015
    han
    Keymaster

    If you want NivoSlider, I’d suggest to use this plugin https://wordpress.org/plugins/wp-nivo-slider/

    And insert this code into functions.php of your Omega child theme.

    add_action ('omega_before_main', 'omega_child_slider');
    
    function omega_child_slider() {
       if ( function_exists('show_nivo_slider') ) { show_nivo_slider(); } 
    }
    in reply to: Shop page don't show products #2987
    han
    Keymaster

    I see the products there 🙂

    in reply to: "Read more" button doesn't show up #2986
    han
    Keymaster

    You can find the setting under “Appearance > Customize > Posts”

    in reply to: Only home page looks good on a phone #2977
    han
    Keymaster

    It is because your ad-sense in content area. Check the plugin you use and see if it has responsive capability.

    in reply to: 2 baners – adsense #2976
    han
    Keymaster

    It looks like that requires custom coding, but check out wp-insert plugin at wordpress.org

    in reply to: Comments on static pages #2975
    han
    Keymaster

    1. Go to “Appearance > Customize > Comments”
    2. The easiest way to hide them is using css (display: none), Go to “Appearance > Customize > CSS”

Viewing 15 posts - 106 through 120 (of 434 total)