stanordan
Forum Replies Created
-
Forum: Developing with WordPress
In reply to: Datagrid in WP PageIt may be best to check the lazymofo documentation. If this is possible to use with WordPress, it is likely going to be incorporated into custom theme files. In which case, that would be located in
wp-content/themes.Forum: Fixing WordPress
In reply to: Mobile background in portrait mode shrinkIt’s normal for the mobile versions of a design to have a different look, sometimes more compressed than the other layouts. But if it noticeably impairs the user experience then you may want to consider trying a different theme developed with mobile responsiveness (incorporating a library like Bootstrap would be good). Or, consider looking for a developer who can modify your current theme. This seems like more a design issue than a WordPress-specific issue. Specifically, this would involve modifying CSS and Javascript.
Forum: Fixing WordPress
In reply to: Gallery Display Options Missing After UpdateIt is possibly the theme, but you could test that by checking compatibility with one of the default WordPress themes like Twenty-Seventeen.
Forum: Developing with WordPress
In reply to: Theme developement – incative sidebarsIf you remove all widgets from the inactive sidebar, that warning should disappear.
Forum: Fixing WordPress
In reply to: Being just a platform providerYou may be interested in trying out some LMS plugins. Those should provide different user types for students and teachers.
Forum: Developing with WordPress
In reply to: Color pickerIf you mean color options in the onboard Customizer then that would depend on the theme options.
Forum: Fixing WordPress
In reply to: News feed missing after installing new languageIf the error happened after the plug-in installation, the first thing you may want to do is disable the plugin and see if the content returns to normal. This would isolate the issue to the plugin, and it would then be best to see if the developer of that particular plugin has any suggestions.
Forum: Fixing WordPress
In reply to: Multi rss feed on wordpressIf the custom post type is publicly available and in the main query, you should be able to put
/feedafter the Site URL to get all the published content.Forum: Everything else WordPress
In reply to: Bulk Change Meta “Title” Box for AttachmentsYou may need to do so in the database with a query. It’s possible to do it with a plugin or in a program like phpMyAdmin, or manually on the command line. This article discusses options in more detail.
Forum: Fixing WordPress
In reply to: Twenty Seventeen Theme – Category Page DescriptionsIt seems the category descriptions appear by default in the twenty-seventeen theme. Below the header, right above the post content. That is what I’m seeing in my test site running the twenty-seventeen theme. Do you mean you’re seeing the description above the headings of the posts?
Forum: Themes and Templates
In reply to: Add header image to posts page that doesn’t have oneYou may want to consider making a child theme and editing the
single.php(single post page) file to match the top content of theindex.php(showing multiple posts) file. Generally, those are the template files used for those pages. However, it is not best advised to edit those in your production site. It would be better to set up a development site on your server or in a localhost environment.Also, the theme developer would be the best source to contact for advice editing the theme.
Forum: Fixing WordPress
In reply to: Can a subscriber view a pewview of draft post/page/productAt the moment, it appears a subscriber can only manage their own profile.
- This reply was modified 9 years, 4 months ago by stanordan.
Forum: Fixing WordPress
In reply to: My all font has changedThose fonts should be derived from default system fonts. Did you adjust any font preferences in your browser?
Forum: Fixing WordPress
In reply to: wall-feed add on for external URL like facebookContextual Related Posts is well regarded in some cases. I tested it and it works well as far as adding recommended content underneath post and page content. I searched around for some plugins that simulate the Facebook wall, but could only find plugins that display a Facebook wall — if that might interest you.
Forum: Fixing WordPress
In reply to: Image being resized? Cant figure this outYes, this is happening because of the size limitations of the div element within which the image is nested.
I noticed resizing the window to a reduced width started to resize the image. This appears to be part of the theme’s responsive layout, which makes sure the images are clearly visible on a variety of different window sizes and devices with smaller screens (like phones and tablets).