newsdevice
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Not able to add Tags and not able to see Editing ToolbarPlease try to:
– disable all plugins
– use the default theme
– make sure you WP install is up to dateForum: Fixing WordPress
In reply to: Getting rid of split screen viewWhat I meant by install was: is it your own hosting with WP installed? (or is it the WP.com version, or this particular website)… all pretty much irrelevant since this is a browser issue.
Since this is not an issue with WP, I would suggest to Google the issue (https://www.google.com/search?&q=firefox+always+split+screen) or check FireFox related forums.Forum: Fixing WordPress
In reply to: Getting rid of split screen viewUh, to me, this sounds like a browser problem. I’m sorry Dave, maybe I don’t fully understand what you are asking…
So you have the FireFox browser displaying like a split screen and your WP install is always one of them?Forum: Fixing WordPress
In reply to: Future compatiability of custom plug-ins?Hello Raz.
I would strongly suggest that you speak to the developer of your custom plugins regarding these types of issues. Make sure they are aware of your concern regarding future compatibility and see if they are available for any future updates.
Helpful links: WP Roadmap | Writing a PluginForum: Fixing WordPress
In reply to: How do I get pages to not sort by ID in wp_list_pagesI’m pretty sure you don’t need both include & exclude, one or the other.
<?php wp_list_pages('sort_column=menu_order&title_li=&include=131,16,29,75,21');?
>Forum: Fixing WordPress
In reply to: Posts disappears from site but not the themes customizationHave you tried switching to the default theme, or any other theme?
Forum: Fixing WordPress
In reply to: Thumbnail sizes help. Different thumbnail sizes in media browserI would suggest using Regenerate Thumbnails to make sure all the images have the right sizes you want: https://www.ads-software.com/extend/plugins/regenerate-thumbnails/
Forum: Fixing WordPress
In reply to: How come posts aren't publishingIf the article is initially a draft, then seems to publish on its’ own later, then this is probably an issue of the time zone not being set correctly.
Go to the wp-admin settings and make sure that the time is accurate; it will show you what time the WP install thinks it is.
Forum: Fixing WordPress
In reply to: Slider HelpPlease tell us what plugin you are using.
Forum: Fixing WordPress
In reply to: Please help! Plugin updates messed up admin page.Before you start moving things all over the place…
To me, the image you posted simply looks like the CSS file for the WP admin is not loading. Is your site (back & front end) fully functional?
Are you able to move around the wp-admin section and add/edit posts, etc.?
If so, then I would suggest taking a look at the admin section with: default theme activated and no plugins. If it still looks the same, and the admin is loading slowly, then go to your web hosting control panel and see if your server is being overloaded at the moment.
Forum: Themes and Templates
In reply to: Getting rid of gap at top of my site. (Adventure Theme)Your welcome alamantra.
For the homepage, just remove
the_title
(https://codex.www.ads-software.com/Function_Reference/the_title) from a custom home.php template (https://codex.www.ads-software.com/Template_Hierarchy#Home_Page_display)Forum: Everything else WordPress
In reply to: Utterly stupid questionThis may seem a little simplistic, but have you tried to just create a custom page in your theme (https://codex.www.ads-software.com/Theme_Development#Custom_Page_Templates) then included the php script after
the_content
function?This would allow you to ‘wrap’ the script in WordPress.
Forum: Fixing WordPress
In reply to: Facebook sharing problemwow! typo-rama! I feel a little embarrassed… I meant to say:
I took a quick look at your site and noticed you are using the Facebook Open Graph protocol plugin, and that is not completely setup yet. That appears to be the problem.
Anyways, head over to the official FB debugging tool (https://developers.facebook.com/tools/debug), and enter your URL. It will show you the Object Properties. Setting up Facebook Open Graph properly will take care of the issue.
Forum: Themes and Templates
In reply to: Getting rid of gap at top of my site. (Adventure Theme)On line 45 of your style.css file you will find:
#center { width: 1000px; margin: 50px auto; position: relative; }
Change it to:
#center { width: 1000px; margin: 0 auto; position: relative; }
– always make a backup of any file prior to making changes.
Forum: Fixing WordPress
In reply to: Comments on pagesYour welcome, anytime. Hope it works out the way you want.