mtjarrett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Child theme issues@t-p yes, that is what I followed.
Forum: Plugins
In reply to: [Sermon Browser] Error loading bible verses@klandis79 THANK YOU!
This did it.
As I said, I am happy to pay you for this time. You can let me know how to do so here or drop me a line at my website thetrinitymission.org.
Thanks.
Forum: Plugins
In reply to: [Sermon Browser] Error loading bible versesThanks @klandis79.
I would gladly pay you for your time if you could help me get this thing transferred to V3 with my new key. I’ve read the docs page you linked to several times and it assumes a knowledge that I simply don’t have.
My old function looked like this:
function get_esv_reading($scripture, $options) { $key = "test"; $passage = urlencode($scripture); $url = "http://www.esvapi.org/v2/rest/passageQuery?key=".$key."&passage=".$passage."&".$options; $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); $response = curl_exec($ch); curl_close($ch); return ("<span class=\"esv-scripture\">" . $response . "</span>"); }Forum: Fixing WordPress
In reply to: Post Display Out of Order in AdminThought I might ask again. Thanks guys.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.I’ll start a new thread on the question above. Thanks y’all.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.Thank you Neo (thanks to you both). That did it.
A follow-up question though (if I need to make it a separate thread let me know) –
I have selected to use a static page for my home page. The old way of wp_title() used to format the title of the home page like so:
Site Title | Site Tagline
I understand that for SEO purposes having the Page Title first before the Site Title may be better, but is there a way for the Home Page still to show the Site Title first?
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.Thanks again.
I’m not seeing the title tag though. In Chrome it still shows “treesourcetexas.com” up in the tab instead of “Tree Source of Texas | Specializing in Mountain Laurels” (which is what it used to show before I updated WP)
I’ll try the @import thing you suggested but the reason I used what I used was because of this:
https://codex.wordpress.org/Child_ThemesThat’s where I copied the code that I put in my functions.php file.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.esmi, thanks for your help. i have to go to work. i’ll leave the site in the jacked-up way until i can check back in here. thanks again,
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.treesourcetexas.com
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.did it. but it jacked up the whole site,
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.this is the file:
function theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ) ); } add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.yes.
the functions.php file i just copied from some site that was explaining how to make child themes. it has a block that starts with:
function theme_enqueue_styles() …
the header.php is just a cut and paste of the parent header.php with a couple blocks of things re-arranged.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.i created the child theme. but it’s mostly just cutting and pasting to have this above that or add this class to this other thing, etc. basically an html &css child theme.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.Thanks Neo.
I understand that there is this move to lose the wp_title() bit. The problem is: what am I supposed to do now? I’m not a professional programmer. And here I have my first theme I updated no longer working. I have six other websites that I’m unwilling to update because I don’t want them to break too.
Can anyone help me figure out what I need to do at this point. What does it mean to add theme support in my foundation functions.php?
It really seems to me that WordPress has gone outside the boundary of offering something for everyone and now is moving toward being a software for developers only.
Any help is appreciated. Thanks
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.hey guys. any news on this?