Mike Sneed
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [GeneratePress] GridsThat helped a lot!
Thanks,
MichaelForum: Plugins
In reply to: [WP Job Manager] Jobs not appearing even though they are activeYou’re wicked, Mike Jolley!
It makes sense now.. I just updated Theme Customizr today and just a second ago I deleted the update and re-installed the older version and viola! Everything’s fine again.
Thanks so much!!!
I’ll contact the developer and let him know.. maybe he can update the theme!
All my best!
Cheers,
MichaelForum: Plugins
In reply to: [WP Job Manager] Jobs not appearing even though they are activeThanks Mike for the quick reply..
I took out the code which just added a ‘featured news’ flag on the sticky post with javascript; however, nothing has changed.
I used:
[jobs orderby="title" order="asc"]
..on the careers page if it makes a difference and I set the careers page to be the ‘jobs-listing’ page..
Any thoughts?
Thanks Mike..Forum: Plugins
In reply to: [WP Job Manager] Jobs not appearing even though they are activeI also deactivated wp super cache but there remains a drop-in called advanced-cache.php…
Wp super cache has been working well for me but sometimes with the caching plugin installed it’s hard to see updates right away.. I’ve had conflicts with this type of plugin before..
Currently I disabled it.
The site in question is here.
Thanks!
MichaelForum: Themes and Templates
In reply to: [Customizr] Slider paragraph text is hidden on smaller devicesThat worked fine actually. Thanks, Oxygen89!
Michael
Forum: Themes and Templates
In reply to: [Customizr] Slider paragraph text is hidden on smaller devicesThanks Oxygen89 I’ll give it a shot!
MForum: Themes and Templates
In reply to: [Customizr] Navbar menu not spanning full width of headerThanks again for the help!! I used what rdell did in that snippet and just targeted an array like you pointed out in your note.. and it worked like a charm! I took the span 9 and made it span12!
add_filter( 'tc_navbar_wrapper_class', 'rdc_navbar_wrapper_class' ); function rdc_navbar_wrapper_class() { return array('navbar-wrapper', 'clearfix', 'span12'); }
Thanks!
MichaelForum: Themes and Templates
In reply to: [Customizr] Navbar menu not spanning full width of headerThanks Nikeo.. I know you’re busy and I appreciate the help.
I look forward to donating soon.
Thanks again!
MichaelForum: Plugins
In reply to: [Increase Upload Max Filesize] Can't upload a 5mb pdfI checked again with IT and they increased the memory.. now I have 10mb to play with!
Thanks Isabel
You make some interesting plugins by the way!
Michael
Forum: Plugins
In reply to: [Increase Upload Max Filesize] Can't upload a 5mb pdfThanks so much for your reply.. actually the site will be an intranet site so the IT dept. does it locally.
My stats are:
Your upload_max_filesize is 64M.
Your post_max_size is 3M.I made custom settings changes (but no changes seem to happen):
Set a custom upload_max_filesize 64
Set a custom post_max_size 64Thank you.
MichaelForum: Themes and Templates
In reply to: [Customizr] Formating pluginsMaybe this is too much but this page had a lot of resources for Bootstrap here. Also, I tried searching with these keywords on Google:
plugin bootstrap layout
Hope it helps!
MichaelForum: Themes and Templates
In reply to: [Customizr] Remove Footer widgets but not on custom templateI’ve been getting a lot better at the functions and hooks after I read the article on hooks written by you. This time I think I was a little confused.. so it seems clearer now to use an action..
That said.. unfortunately I got all the widgets back but also on the custom template page that I didn’t want them on..
Any thoughts?
Thanks EF!
Forum: Themes and Templates
In reply to: [Customizr] Remove Footer widgets but not on custom templateThis code works on the breadcrumbs for this page and doesn’t affect the other pages:
<?php add_action ('wp_head' , 'tc_disable_breadcrumb'); function tc_disable_breadcrumb() { if ( ! is_page_template( 'custom-template-page.php' ) ) return; remove_action( '__before_main_container', array( TC_breadcrumb::$instance , 'tc_breadcrumb_display' ), 20 ); } ?>
Forum: Themes and Templates
In reply to: [Customizr] Featured image thumbnail position in postsThanks so much for the response!!!
Worked great!
Michael
Forum: Themes and Templates
In reply to: [Customizr] Logo & Favicon are gone!EF: Some how I traced it back to the class-header-header_main.php file that I put in the parts folder like you’re supposed to use it in a child-theme. I took that out and with a tweak or two I got the header back.. It turned out that all that lead me to a function that I didn’t have completed correctly to make: .brand .span3 turn into .brand .span10 and take up the center of the header area.. I actually ended up putting class-header-header_main.php back in my child-theme to add some Google fonts as things were back on track. A stressful morning however.
Snippets for this can be found here and also here. Of course, brought to you by some great community members!
Now things are fine.
Thanks again for responding to my post.
Michael