Will Schmierer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Twenty Thirteen child theme: Custom home page problemIt looks as though if you move your custom .hentry further up the stylesheet that this should work as you expect. I’m not entirely sure why where you have it isn’t working, but by moving it to just above section 3(Basic Structure) of your stylesheet in the browser it appears to work. See if that works for you as well.
How exactly are you envisioning the widgets to be placed on that page as well? Looks like there is specific styles on those elements, which maybe why your’s having issues trying to override how you’d like them to display. Hope this helps some.
Forum: Fixing WordPress
In reply to: Changing font size and menu buttons – mr tailor websiteMaryanne,
I’m not super familiar with this specific theme, but it should be somewhere in the options/’settings page if it’s available to be changed in the theme itself. You may also want to check under appearance and view the customizer if it’s available. If non of these are options, you would have to edit the css files of your theme. I hope this helps and if you’re unable to find a way to change it within the backend I can help point you where to edit the css file.
Forum: Fixing WordPress
In reply to: Can't Locate 'Sharing' option on the SettingsThere is no sharing automatically from within WordPress by default. However there is this plugin that you may want to check out to achieve what you’re after. I’ve not tried it personally however.
https://wordpress.org/plugins/social-media-auto-publish/
If you have Jetpack enabled on your site, I believe there is option there as well to publicize posts on social media once you’ve published a new post. Both seem like good options, but this may be easier if you’re already running Jetpack.
http://jetpack.me/support/publicize/
Hope this helps!
Forum: Fixing WordPress
In reply to: need to create Drop down list of categories (menu) as WidgetHave you considered creating a custom menu with the categories and then in the widgets section add the custom menu widget and select the menu you created? That might be the best way to achieve what you’re after without editing code or doing something more custom. Hope that helps.
Forum: Fixing WordPress
In reply to: The Editor tabs (Visual / Html)Is it possible you have javascript turned off in your browser? If so, turning it back on should resolve this issue.
Forum: Fixing WordPress
In reply to: Slider is not workingIs this still an issue? It looks like it’s working in Chrome for Mac currently?
Forum: Installing WordPress
In reply to: SSL on several pages how to do and which pluginNorus,
There are a couple of options for using SSL in your WordPress setup. I recommend taking a look at this article to see what is best for you and your setup. There are plugin options or if your comfortable with manually setting things up there are instructions for that as well in this tutorial. Hope this helps.
http://www.elegantthemes.com/blog/tips-tricks/how-to-use-ssl-https-with-wordpress
Forum: Fixing WordPress
In reply to: Admin Redirect ProblemPerhaps this is a long shot, but have you tried another browser? Also try website.com/login rather than website.com/wp-admin to see if that might do the trick. I’ve experienced a similar issue in the past. Also if you’re using a browser like Chrome, you might want to try Incognito mode as well. Hope one of these might help.
Forum: Fixing WordPress
In reply to: Cannot show author and date on postsAre you still experiencing issues? Looks like you may have resolved this issue based on the link provided?
Forum: Fixing WordPress
In reply to: automatically convert omg tag to use lightboxIf you’re looking for all images on the site to open in a lightbox without adding additional code, I believe this plugin has a setting to allow for all images to open in a lightbox.
Forum: Fixing WordPress
In reply to: site taglineYou can try doing something like this based on the id of your custom page to your code above. Hope this helps.
// Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) { echo " | $site_description"; } elseif ( is_page('page-id') ) { echo "Alternatate Description For Custom Page here"; }Forum: Fixing WordPress
In reply to: Pixelated Image after uploadingIf you’re still experiencing this issue, it may be that the original image size is too small, so it becomes pixelated because WordPress is trying to make a small image larger. If that’s not the case and the original images are large, you might consider using this plugin to regenerate the images and see if that works for you.
Forum: Fixing WordPress
In reply to: flash filesForum: Fixing WordPress
In reply to: flash filesSorry for the duplicate posts. Something got stuck when I posted originally.
Forum: Fixing WordPress
In reply to: flash filesThere are some concerns for security reasons, but if you want to add additional file types to your media library and feel reasonably comfortable with code, you can check out this tutorial to allow for additional files types to be uploaded to your site.