conciseac
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [OceanWP] Add a CSS file via the child themeThanks – but that didn’t work for me – but this did (by changing this line):
get_stylesheet_directory_uri()
Thanks!
Forum: Themes and Templates
In reply to: [OceanWP] How To Add Bing SEO Verification META File?thanks that worked great.
fantastic.
Thanks for the help.
I think you are making an amazing plugin that should become very popular in 2019.
Good Luck!
I’ll be buying the pro once I’ve developed my site.
Forum: Themes and Templates
In reply to: [OceanWP] Remove underline from navigation buttonsExcellent – thanks VERY much!
Forum: Themes and Templates
In reply to: [OceanWP] Remove underline from navigation buttonshttps://conciseinfosec.staging.wpengine.com
Thanks for your help
Forum: Themes and Templates
In reply to: [OceanWP] Remove underline from navigation buttonsThanks Amit – you can see it when you hover over “Submit My Event” > https://conciseinfosec.staging.wpengine dot com/ Thanks!
- This reply was modified 6 years, 1 month ago by conciseac.
Forum: Themes and Templates
In reply to: [OceanWP] Inserting shortcodes into specific places in OceanWPThat’s great thanks very much
Forum: Themes and Templates
In reply to: [OceanWP] Question on customized sidebarOK FIXED IT (I think?!)
So this works:
function my_custom_sidebar_display( $sidebar ) {
// Return a different sidebar for custom post type ‘gallery’
if ( in_category( ‘Alaska’ ) ) {
return ‘ocs-tester-sidebarx’;
}
// Return theme defined sidebar area
else {
return $sidebar;
}
}
add_filter( ‘ocean_get_sidebar’, ‘my_custom_sidebar_display’ );*** The difference being the IN CATEGORY – that’s where I had the “issue”
Really amazing thanks very much. I always find that with OceanWP there is always (refreshingly) a solution.
So – another question pls – is it possible to make “rules” for the hooks?
For example, let’s say I have posts in these categories: “apples, pears, peaches”; is it possible to show shortcode via Hooks to posts in those categories?
If so, that would be fantastic!
Forum: Themes and Templates
In reply to: [OceanWP] Increase padding from the header?yes, good idea – worked great! Thanks
- This reply was modified 6 years, 3 months ago by conciseac.
Forum: Themes and Templates
In reply to: [OceanWP] Setting a default Oceanwp WP Settings?Sorry – was a dumb question – my settings were set to transparent that got me confused ??
Pls ignore!
Forum: Themes and Templates
In reply to: [OceanWP] Add the Ocean Settings Metabox in a Custom Post Typedid you change the code in the [] bit? Yours must be unqiue to your CPT
Forum: Themes and Templates
In reply to: [OceanWP] Adding bootstrap CSS?Yes I am trying it out now. One simple work around would be to simply customize the boostrap that you need…
I am trying to load the .css via the child theme functions.php but am having limited joy…
Can you see where I might be going wrong?
Thanks v much BTW
function weather_scripts() {
if ( is_page_template(‘page-alert-amber.php’)):
wp_enqueue_style(‘bootstrap css’, get_template_directory_uri() . ‘/bootstrap/css/test.css’, array(), ‘0.1’);
wp_enqueue_script(‘bootstrap js’, get_template_directory_uri() . ‘/bootstrap/js/test.js’, array(), ‘0.2’);
endif;
}
add_action(‘wp_enqueue_scripts’, ‘weather_scripts’);Forum: Themes and Templates
In reply to: [OceanWP] Question on archive.php – why it’s missing?Amazing thanks for your help as ever!
Forum: Themes and Templates
In reply to: [OceanWP] Question on creating page templates plsThank you for your help and thank you for making this theme!