dtab428
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Sometimes refreshing my pages yields lack of contentThank you!
Forum: Developing with WordPress
In reply to: Sometimes refreshing my pages yields lack of content@kjodle thank you for your swift reply. See below of how I’m enqueing my separate JS files (I’ve added this to functions.php).
When I started this project, I basically made a copy of the “TwentySeventeen” theme and began from there.
/** * Add Custom JS to the Footer */ function add_scripts() { // Register the script like this for a theme: wp_register_script( 'revealer', get_template_directory_uri() . '/js/revealer.js', false, true ); wp_register_script( 'custom', get_template_directory_uri() . '/js/custom.js', false, true ); // For either a plugin or a theme, you can then enqueue the script: wp_enqueue_script( 'revealer' ); wp_enqueue_script( 'custom' ); } add_action( 'wp_footer', 'add_scripts' );
Forum: Themes and Templates
In reply to: Wanting to insert Between Bread Crumbs Page TitleThis issue is (most likely) due to a CSS-based problem. Or, perhaps, one of my plugins could have an influence… it’s not exactly a theme-related issue (in that only theme developers would know how to fix this) in my opinion.
Forum: Themes and Templates
In reply to: Wanting to insert Between Bread Crumbs Page Title@esmi – it will not allow me to post there (you must subscribe to post there)
I don’t know the rules, but I’ve tried to “bump” my post before, and I got a warning for it. So, I made a new thread.
Still looking for help with this please!
Forum: Themes and Templates
In reply to: Wanting to insert Between Bread Crumbs Page TitleYes, I am using Hybrid News (https://themehybrid.com/demo/hybrid-news/), a child theme.
Okay! Thank you for your swift response hoff.
Thank you very much alchymyth. That worked perfectly.
Ah yes, sorry forgot to link it. Here is my site: https://www.fbsserver.org.
Forum: Themes and Templates
In reply to: Can't Change Header Image (Hybrid News Theme) or even fontsNever mind everyone! I guess my browser was cached and not displaying changes for some reason. RESOLVED!