david wolfpaw
Forum Replies Created
-
Hi Gabriele,
The ID’s of your posts/users/etc shouldn’t matter much, as WordPress will just start the count wherever you left off. The simplest method that I can think of off the top of my head is to use a plugin like Duplicator to copy the site, then go through and delete posts/pages/users and start making your new data.
Another simple method would be to compare side-by-side as you create the new site, ensuring that the same plugins are installed with the same settings, but this isn’t as quick as you’d probably like.
Forum: Fixing WordPress
In reply to: Page content not updatedHi John,
I know that you said that you deleted all plugins, but can you confirm that you’re not still using one while trying this, specifically a visual editor plugin? I’ve found that more often than not they cause issues like this when trying to use them. If you aren’t using any plugins and are on the default theme right now, you might want to try clearing your database when you do a reinstall of WordPress, to see if that helps.
Forum: Fixing WordPress
In reply to: Display name websiteI’m not sure if your theme has any SEO settings, but that issue would probably fall under there, in terms of finding where to make that change. You can try installing a plugin like WordPress SEO then setting up the “Titles and Meta” page in that plugin to display more useful info, like your site name and the page name.
Forum: Fixing WordPress
In reply to: How to add a logoWhere you want the logo is important, but if I’m working on the assumption that you want it where the site title currently is in the header, there’s a few things that I’d try. Your theme, Portfolio Press, should have an options panel in the WordPress dashboard to put a logo. If you use that field (I’m not sure exactly where it shows up with your theme), you can upload an image from your computer to be your site logo.
Forum: Fixing WordPress
In reply to: Thumbnail ShortcodeGood catch, I didn’t even notice the incorrect usage of the_post_thumbnail.
My recommendation can still stand if it is still loading out of the div, as you’re being more specific in where you want the code to go.
Forum: Fixing WordPress
In reply to: How To Add Multiple CSS files in your wordpress theme?Additionally, you can import new CSS files in your main stylesheet through imports.
After you have your main style.css file loading, you can tell that stylesheet to load additional CSS files, based on a relative location. Since that file has to be in the main folder of your theme, let’s say you have others in a css folder in the theme. Your imports would then look like this:
/* Stylesheet comments here */ @import url('css/slider.css'); @import url('css/colors.css');
Based on the names of your files and the folders that they are in. This gives you the added bonus of being able to control load order for cascading styles.
Forum: Fixing WordPress
In reply to: HELP! All my wordpress sites text/code is getting cut!Hi astonadam,
Are you using any visual editor plugins? I don’t see any there, but I find that is a common cause of post save errors.
Forum: Fixing WordPress
In reply to: Mosaic feature not showing all picturesHi hoomel,
Are you using any caching right now? The images are not loading because the server request is timing out, meaning that it is not requesting them in time to load them. I’d first look at plugins that might be causing this load to slow, starting with caching plugins.
Thanks,
DavidForum: Fixing WordPress
In reply to: Thumbnail ShortcodeHi Wippy,
I’d suggest rewriting the function to make each thing that you’re returning a discreet element to avoid this.
function post_thumbnail( $atts, $content = null ) { $output = '<div id="post_thumbnail">'; $output .= the_post_thumbnail('thumbnail'); $output .= '</div>'; return $output; } add_shortcode("post_thumbnail", "post_thumbnail");
This should put the thumbnail back within your div.
Yahoo is familiar with the issue, and the workaround for it does allow it to work occasionally, as it is more of a timing out and number of connections error. My suggestion would be to use the service directly https://www.smushit.com/ysmush.it/ or do small batches of images when it is available.
Do you have a link to the page that it’s appearing on? You can most likely just set whatever element that holds it to display: none in your CSS, as that’d be better than messing with the plugin code itself.
Do you have an example of the content that is being placed above the short code but appearing below it?
Forum: Fixing WordPress
In reply to: My permalink structure is disturbed.Do you have any plugins or code that you are aware of that is causing it to refresh the page when you hit the back button? I notice that it is cycling between two URLS with different appended permalinks when I try to go back. This may be a place to start looking.
It is most definitely a javascript issue of some sort, as I disabled javascript in my browser and it loaded fine.
You also have a div loading in your head, which should be moved out of there, preferably to the footer. Additionally, you have two copies of Google Analytics, one in the header, one in the footer. Might not do anything, but may as well clean it up.
I’d flush your cache in W3 Total Cache and check that.
Forum: Fixing WordPress
In reply to: Categories broken after WP 3.3.2 upgradeHave you made changes or updates? It appears to be working fine for me.
Forum: Fixing WordPress
In reply to: Text is not wrappingWhile something like
word-wrap: break-word;
could momentarily fix your problem, it’s not anywhere near an ideal solution.When using the visual editor, do you have it set to Visual or HTML? When live editing the code of your site and adding in some filler text in place of the Testing, I see that it is breaking properly. As alchymyth has pointed out above, you are using in your text. As the name implies, it is non-breaking, meaning it will continue to go until a break is found.
You mentioned that it happens with each theme that you tried, so my guess is just in how you copied and pasted the testing in. I see on other posts that other text properly breaks.