joshrodgers
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Prev Next Link SizeStephen,
I figured it out!! Turns out I had to specify both the font size and the font family ?? Yay!
Thanks,
JoshForum: Plugins
In reply to: [Event Organiser] [Plugin: Event Organiser] Prev Next Link SizeStephen,
Just discovered that it seems to be a Safari issue, the weird thing is that on your site (on the demos) page the arrows are the same size…even in Safari ??
Not sure what’s going on…you can see a screenshot here: https://postimage.org/image/ixj5w2ybh/
Thanks,
JoshForum: Fixing WordPress
In reply to: Normal and Custom Post Type Columns the sameWhat I didn’t realize was that I didn’t need multiple filters or actions, because they are both posts, I can use the same code for both my normal posts and my custom post type posts.
Here is my final code: https://pastebin.com/w1jqVCYs ??
Thanks,
JoshForum: Fixing WordPress
In reply to: Normal and Custom Post Type Columns the sameOops…made a typo…image_column1 is just image_column, there is no one…
sorry ??
Josh
Forum: Fixing WordPress
In reply to: Custom Post Type Column ContentI modified the following (and the code is working!): https://pastebin.com/HZWgHrZf.
I got it here: https://justintadlock.com/archives/2011/06/27/custom-columns-for-custom-post-types
For every column you simply add another case ??
Thanks,
JoshForum: Themes and Templates
In reply to: Gallery Row PaginationI found a solution here: https://stackoverflow.com/questions/10963165/total-image-widths-in-while
Thanks,
JoshForum: Plugins
In reply to: [Pronamic Google Maps] [Plugin: Pronamic Google Maps] Info WindowI ended up just switching plugins…I am now using MapPress: https://www.ads-software.com/extend/plugins/mappress-google-maps-for-wordpress/
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageChip,
You’re right…those are good suggestions that I will definitely put to good use in the future (I like the hair on my head…lol)!!
Thanks,
JoshForum: Fixing WordPress
In reply to: Posts Page Featured ImageChip,
I have this code in index.php and everything is working great!
Thanks,
JoshForum: Fixing WordPress
In reply to: Posts Page Featured Imagealchymyth,
I feel like such an idiot!! I was trouble-shooting this last night and I guess I removed the featured image for the news page…so, of course, the image wasn’t showing up!
I added the featured image and the following code:
<?php if(is_home()) { ?> <?php $page_for_posts = get_option( 'page_for_posts' ); echo get_the_post_thumbnail($page_for_posts, 'large'); ?> <?php } ?>
Now, everything works as expected…THANKS so much for your help!
Josh
Forum: Fixing WordPress
In reply to: Posts Page Featured ImageOk,
Keep in mind I didn’t write this code, I’m just tweaking it for a friend of mine: index.php…https://pastebin.com/YbdFNZ3j functions.php: https://pastebin.com/NP55A2bD
Thanks,
JoshForum: Fixing WordPress
In reply to: Posts Page Featured ImageOk,
So, after looking into the issue, I wrote the following:
<?php $page_for_posts = get_option( 'page_for_posts' ); echo $page_for_posts; echo get_the_post_thumbnail($page_for_posts, 'large'); ?>
The only problem is that my ID echo’s just fine, but it still doesn’t display the thumbnail ??
Thanks,
JoshForum: Fixing WordPress
In reply to: Posts Page Featured Imageblacklizt,
Nope…I have a featured image assigned to a page called “news”. I did this by going to: Settings > Reading > and choosing “news” in the Posts Page dropdown.
Thanks,
JoshForum: Fixing WordPress
In reply to: Posts Page Featured Imagealchymyth,
I’m sorry, neither one of those work ??
I left them as is, I changed page_for_posts to be news, News, or 113 and the code still didn’t work ??
Any Ideas…Thanks,
JoshForum: Fixing WordPress
In reply to: Multiple Category SearchOk…after all that I discovered I still had a problem with my search…
I have fixed the problem and the solution looks like this:
My functions page now looks like: https://pastebin.com/dZ4S6XbG
My form now looks like: https://pastebin.com/y5WiaT6y
My search page now looks like: https://pastebin.com/1bnPb2XuHope this helps someone ??