Forum Replies Created
-
AuthorPosts
-
han
KeymasterHi 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.
han
KeymasterGo to “Appearance > Widget”, you’ll find new widgetized areas: Footer 1, Footer 2, Footer 3
han
Keymasterattachment uses default template. You can add your own attachment template if you want
han
KeymasterThanks 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 );han
KeymasterAwesome! Glad you found it.
han
KeymasterUse 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>'); } }han
KeymasterFirst 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>'); } }han
KeymasterGo 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
han
KeymasterGo 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);han
KeymasterIf 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(); } }han
KeymasterI see the products there 🙂
han
KeymasterYou can find the setting under “Appearance > Customize > Posts”
han
KeymasterIt is because your ad-sense in content area. Check the plugin you use and see if it has responsive capability.
han
KeymasterIt looks like that requires custom coding, but check out wp-insert plugin at wordpress.org
han
Keymaster1. Go to “Appearance > Customize > Comments”
2. The easiest way to hide them is using css (display: none), Go to “Appearance > Customize > CSS” -
AuthorPosts
