mtjarrett
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.Also, I am certain everything was working fine before the update. I had my site open in two browsers and after noticing it in my main browser (where I stay logged in and where I ran the update from), I checked the site in the other browser and it looked correct. So I refreshed the page in that other browser and it went bad.
Forum: Fixing WordPress
In reply to: wp_title ?? what happened? i'm not a techie.Hi Gary,
Thanks for your help.
I have a child theme of Hemingway.
The code is :
<title><?php wp_title('|', true, 'right'); ?></title>Is that what you needed?
Forum: Plugins
In reply to: [Subtitles] Subtitles only adds HTML when there is a Sub-titlethanks man. i’ll give it a shot.
Forum: Plugins
In reply to: [Subtitles] Subtitles only adds HTML when there is a Sub-titleHere’s what I’m talking about.
Here is the code in my template:
the_title( sprintf( '<h1 class="post-title entry-title">', esc_url( get_permalink() ) ), '</h1>' );If I DO NOT have a subtitle it outputs this:
<header class="entry-header"> <h1 class="post-title entry-title">My Title</h1> </header> <!-- .entry-header -->If I DO have a subtitle it outputs this:
<header class="entry-header"> <h1 class="post-title entry-title"><span class="entry-title-primary">My Title</span> <span class="entry-subtitle">My Subtitle</span></h1> </header> <!-- .entry-header -->I’m a shade-tree programmer but as far as I can understand the answer to your question is “no, I cannot apply styling to the title alone.”
Thanks for your help.
Forum: Themes and Templates
In reply to: [Quest] Adding Separators to Menu Itemsawesome. thanks
Forum: Themes and Templates
In reply to: [Quest] Adding Separators to Menu ItemsThanks for checking it out. I switch back to the old theme when I’m not working on the re-model.
The workaround I’m using (for anyone interested): I just created a menu with a Custom Item (containing my separator) between each of my menu items.
In a bit more detail: Go to menus, create a Custom Link, put “#” in the URL box and your separator in the Link Text box (I used “•”). Then add that Separator item wherever you want a separator.
Ugly, but it works (until you look at it on mobile, but there’s ways around that too).
Forum: Themes and Templates
In reply to: [Quest] Child Theme Stylesheet Not Loadingthanks for all your help
Forum: Themes and Templates
In reply to: [Quest] Child Theme Stylesheet Not Loadingyou got a paypal account where I can give you a tip?
Forum: Themes and Templates
In reply to: [Quest] Child Theme Stylesheet Not Loadingstyle.css
it’s named correctly.
Forum: Themes and Templates
In reply to: [Quest] Child Theme Stylesheet Not LoadingStyles are not being applied.
Currently you can notice that there is a class “test” being applied to the <div> that contains the words “See a Sample PGx Report.”
This is in my styles.css
.test { color: #ff0000; font-size: 100px; }Thanks for your time, man.
Forum: Themes and Templates
In reply to: [Quest] Child Theme Stylesheet Not LoadingThanks.
I do have a functions.php
I was doing it this way
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' );I changed it to do it your way but that didn’t seem to make any difference.
Forum: Themes and Templates
In reply to: [Quest] Full blog postYes. Thank you pacethemes. I’ve noticed how quick you are to respond. Very impressive. Thanks for your work.
Forum: Themes and Templates
In reply to: [Quest] Full blog postprateek91, could you post your solution please. Thank you.
Forum: Fixing WordPress
In reply to: jQuery or jQuery css but not bothi had to switch it back for tomorrow morning (so now the tabs work fine but the jquery accordion mobile menu does not work).
basically, what is happening is the jquery-ui.css is not loading when i do the jquery call (above) in the functions.php. so all of the styling for the ui tabs, except what i have changed in my child css, is left undone.
i know i could work around it and simply style the whole thing in my child style.css but that’s not what i want to do. i’d like to make it work properly.
thanks.
Forum: Fixing WordPress
In reply to: jQuery or jQuery css but not bothhey guys, thanks a ton. as a confession, y’alls questions are a little out of my league.
anyhow, what i’ve done for the evening is put the jquery call back in my functions.php. this make the mobile menu work correctly as an accordion style menu.
see here via mobile:
http://thetrinitymission.orghowever it makes the tabs on each of my actual blog post not work because the jquery css is not being called in. see here:
http://thetrinitymission.org/morningprayer/august-17th-2013/this is how the above link should look when the tabs css is applied correctly:
http://thetrinitymission.org/wp-content/themes/twentytwelve_kid/images/Screen%20Shot%202013-08-18%20at%203.48.45%20PM.pngthank you so much for your expertise in this. i am clearly an amateur.