signsintime
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Perennial proble with uploading photosYou’ve only posted the workaround barely 7 hours ago and you’ve already saved me untold headaches. THANK YOU! Such a frustrating problem to suddenly start having.
Forum: Fixing WordPress
In reply to: Conditional statements for alternate page headers if, elseif, elseI found the answer for the proper format here:
How to Write WordPress If Statements<?php if ( is_page('upcoming-conferences') ): ?> MY HTML FOR UPCOMING CONFERENCES HERE <?php elseif (is_page('in-the-news') ): ?> MY HTML FOR IN THE NEWS HERE <?php else: ?> MY HTML FOR HOME AND ALL OTHER PAGES HERE <?php endif ?>
It was user error! That worked! many thanks. ?? LOVE this theme!
I think I’ve gone mad. Although I have added the css, there is no .site-header div being output, so it’s having no effect. Is there some setting within GeneratePress that I may have edited which would turn this off? Many thanks for your quick reply, by the way.
I’ll try that and let you know. Thanks!
Forum: Themes and Templates
In reply to: [Minamaze] Mobile LayoutI just figured it out. Go to Appearance>Theme Options. The setting is there to turn on responsive but it’s defaulted to off. Never realized it was there and so happy I found it!
Christinevarniere, to add the code to automatically use first image as featured, where in the functions.php does that go or can it be added at the very end of the file? Does it replace any previous code?
When using a modified functions.php file does it go in the child theme folder or does it only work from parent theme folder?
function autoset_featured() { global $post; $already_has_thumb = has_post_thumbnail($post->ID); if (!$already_has_thumb) { $attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" ); if ($attached_image) { foreach ($attached_image as $attachment_id => $attachment) { set_post_thumbnail($post->ID, $attachment_id); } } } } add_action('the_post', 'autoset_featured'); add_action('save_post', 'autoset_featured'); add_action('draft_to_publish', 'autoset_featured'); add_action('new_to_publish', 'autoset_featured'); add_action('pending_to_publish', 'autoset_featured'); add_action('future_to_publish', 'autoset_featured');
Thanks!
JeriForum: Themes and Templates
In reply to: [Tonic] Change Header PictureAlso, you can go to Dashboard>Appearance>Themes and where your active theme (Tonic) shows above all installed themes there are text links beneath it to edit different aspects. “Header” is one of the choices. That’s where I located the uploader. ?? Hope that helps.
Forum: Plugins
In reply to: [Easy Add Thumbnail] Featured Image – Same Thing?Thank you for the fast reply and my apologies on posting here.
Forum: Plugins
In reply to: [Easy Add Thumbnail] Featured Image – Same Thing?I have been setting the featured image of posts manually, from within the post creation page, so any posts I have created from my desktop PC all have featured images already and I want those to remain unchanged.
If I install this plugin, can I then rely on it to create featured images for future posts I make from my mobile app (which doesn’t allow for setting featured images) without affecting my current posts that have a featured image already set?
I’d rather just set mobile posts to pending and add featured images later if this plugin is going to have a negative affect on previous posts.
Thanks so much!
Forum: Themes and Templates
In reply to: [Theme: Magazine Basic] Mobile Menu Changed to 3 Search ButtonsHmm On a hunch I disabled my custom header file and I see that the menu works on mobile. Therefore I guess I need to update my child theme header file to mimic whatever was updated in the main Magazine Basic file.