juggledad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: the_excerpt(): First words are missingmy bad, debugging 101 is ‘disable ALL plugins and see if the issue goes away’
Glad you found it, remember to mark this as resolved.
Forum: Fixing WordPress
In reply to: Sidebar is not showing at allIt has nothing to do with the css, The page template is not displaying the sidebar. Since it doesn’t build the sidebar elements, the CSS can’t be applied.
You need to fix the PHP code
Forum: Fixing WordPress
In reply to: Sidebar is not showing at allthe sidebar is not being displayed – this could be issue with the customization. Not knowing what you have customized or having access to the customized theme code, there is not much I can suggest but that you review the code to see why it is not displaying the sidebar.
Forum: Fixing WordPress
In reply to: the_excerpt(): First words are missingSo this leads me to beleive it is something about the post itself.
What I would do is go to the post and view it in the text editor (not the visual editor). I would copy the entire text portion and save it to a text file. Next I would create a new post and paste the text into it and see if this post shows the same issue. If it does, I would edit the post taking ot the leading html bit by bit till the post excerpt shows up correctly and then you will have narrowed down what in the post is causing the issue
Forum: Fixing WordPress
In reply to: php error_log showing SELECT SQL_CALC_FOUND_ROWSthe problem is the part ‘ORDER BY wp_postmeta.meta_value+0’ – note the ‘+0’ – that is messing things up.
If you are using the Bazar Shop theme you should contact the theme author since that is a premimum theme and we do not have access to it.
Forum: Fixing WordPress
In reply to: Some cached code appeared at bottom of websiteAre you using the plugin W3 Total Cache? If so, try disabling it .
Forum: Fixing WordPress
In reply to: Text all out of line large gapsIt looks fine for me, but you have a caching plugin active and are displaying the stats(hidden) on the page. I’d suggest purging the caches and disabling the plugin (W3 total cache) while you are doing development
Forum: Fixing WordPress
In reply to: Sidebar is not showing at allIt looks like you are using a customized version of the twenty eleven theme. Do you actally have any widgets in the sidebar?
If yo do, then I would suggest that there is a bug in the themes customization and without access to the theme there is not much that we can help you with.
Forum: Fixing WordPress
In reply to: Max User Connections in MySQLI think I’ll have to get in touch with Facebook to see what is happening!
Good luck with that. If you identify the IP they are coming from, you could deny it in the .htaccess file or shutoff comments or only allow comments from people who are logged in and been approved.
Forum: Fixing WordPress
In reply to: Allowing someone restricted editorial access to my siteyou have two choices (1) make them an editor – which will allow them to edit all pages and other things (see Roles and Capabilities) or (2) use a plugin like ‘role manager’ or ‘user role editor’
Forum: Fixing WordPress
In reply to: Some cached code appeared at bottom of websiteInstall the ‘WordFence’ plugin and do a scan to see if you have been hacked.
What theme are you using?
Forum: Fixing WordPress
In reply to: Max User Connections in MySQLThe access to the database is the wordpress user you specified in the wp-config.php. You could try disabling ALL your plugins (do you have many?) and switching to one of the default twenty-xxxxx themes to see if it still happens.
Forum: Fixing WordPress
In reply to: the_excerpt(): First words are missingdoes the issue happen if you use the actual theme – i.e. not using the child theme?
If it doesn’t, then it has to do with your customizations
Forum: Fixing WordPress
In reply to: the_excerpt(): First words are missingcould it be possible you are calling the code twice? here is something to try: change the code to this
<?php if ( is_search() ) : // Only display Excerpts for Search ?> <div class="entry-summary"> <?php echo 'about to do the excerpt<br>'; ?> <?php the_excerpt(); ?> </div><!-- .entry-summary --> <?php else : ?> [...]Then see what shows when you do a search.
Forum: Fixing WordPress
In reply to: the_excerpt(): First words are missingDo you maybe need the html codes from “further above”?
is there more in the post previous to this code? If so, yes I’d like to see that too.