WebTechGlobal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: query posts in page template not working after 3.1.4. upgradeJust trying to think this one over but there is no limit to how many posts can be displayed but there is a browser memory limit.
Unless your posts are very big then I doubt that is the cause.
Forum: Fixing WordPress
In reply to: Comments form missingPlease confirm if it worked fine when you applied comments to a single post manually?
Thank you
Forum: Fixing WordPress
In reply to: back ups are not finishingOh and that error display code will display errors for entire blog. I give it to customers and they always think I broke their blog or my plugins that use this code has done even through the errors point to other plugin files lol
Forum: Fixing WordPress
In reply to: back ups are not finishingTry displaying errors, if there is a bug and you find something quick for the community it could help a lot…
global $wpdb;
ini_set(‘display_errors’,1);
error_reporting(E_ALL);
$wpdb->show_errors();Put that in the plugin main file or config file.
If you get no errors, then maybe it is still running in a loop, does the browser show processing activity?
Forum: Fixing WordPress
In reply to: Need help with incorporation wordpress into existing site.Yes your printing the url to your WordPress installation by using each posts permalink.
It will take a bit more work to get what you want.
Me personally. If I were you I would use jQuery so when the Continue Reading is clicked, the rest of the post just appears. No page changing. Your already displaying some of the post right, the rest of the post can easily be in a hidden div that jQuery controls.
Not a hard one to do and it would look nice. Something like this, only the default starting with the div being hidden…
Forum: Fixing WordPress
In reply to: Permalink and warning problemsMonths ago I had an issue with “open_basedir restriction in effect”, customers reported this while others did not but using the same version of my plugin.
I think it is the server myself but nothing is ever 100% sure.
I would consider these paths needing changed if your hosting is sure there setup is acceptable…
/var/www/vhosts/variante000096/httpdocs/wp-content/themes/Builder/lib/layout-engine/modules/class.module.php.bak/images
Maybe the images folder can be accessed without using…
/var/www/vhosts/variante000096/httpdocs
Forum: Fixing WordPress
In reply to: How to put latest post in a separate Div to other postsYes esmi is correct.
Kanger what you need to examine is The Loop. The loop is where WordPress loops through all posts or pages.
Inside the loop, the_excerpt() and the_content() is used.
There are endless approaches to doing what you need to do but the basic simply requires you to count the number of posts displayed already then after a certain number begin printing different html/styles/div
Hope that helps to clear it up. Have fun messing around with this part of WordPress it can get interesting.
Forum: Fixing WordPress
In reply to: WP update: custom post_types GONEAll you need to backup is your database. Any issues on upgrading allows you to then use the older version of WordPress until you sort any complications out.
However if you make changes to the WordPress core files (that does not include anything in wp-content) then you would need to back the core installation up for the sake of applying the changes to the new version of WordPress. But that is something you or your webmaster or hired developer should take care of. If you hired someone to work on WordPress check on any changes to the core files and find out of there is a backup.
If this is not the case. Then I would not worry. As long as you have your database backed up and start troubleshooting you will restore your site eventually.
Try automatic upgrade. Good luck.
Forum: Developing with WordPress
In reply to: Images on category pagesShowing any images in relation to a post is now done with post thumbnails or on the interface is it known as Featured Image.
If your post meta (custom fields) contained a value that can be used to complete the path to the image on your server, then it is possible to code it directly into your theme but that is a very custom and permanent approach. Such an approach could deal with the situation of an image not existing for a post.
If your theme uses featured posts/thumbnails but does not handle it not being set very well. You might want to considering some changes to your theme such as a default featured image being used.
Forum: Plugins
In reply to: Is there a plugin to add or customize the footer?Oh and one last thing.
You would actually be better having the script hard coded into your theme and avoiding the use of a plugin. If it is in your budget it is worth considering. It will help page load time.
However, you would need to be sure your sticking with that theme or ensure the upgrade can be copied to new themes easily enough.
Forum: Plugins
In reply to: Is there a plugin to add or customize the footer?Hi
What your asking for is not really that hard to do I’m surprised the ability to apply the footer to different posts is not already in the existing plugins.
I’m deep into WordPress projects right now otherwise I would build a new plugin to handle what you need. I will make a note of this on my to do list on WebTechGlobal site.
Check in on me sometime in future if you don’t get this from someone else.
Ryan
Forum: Fixing WordPress
In reply to: WP changing my Adsense IDI agree, nothing in WordPress would specifically target and change a value like that. Is it happening as soon as you refresh the page after saving?
So you save your own ID then on refresh again it changes or does it change randomly?
You should troubleshoot and get more information for us.
Please confirm the plugin you are using?
Also, did you update your plugin and could it simply be the plugin resetting the value?
Create a new blog, no plugins etc. Can you confirm it happens when no plugins are active and this would rule out plugins causing it?
Search the value 00000000000 in your code using Windows or Dreamweaver. Anything that will search a files content, this could possibly locate the file with a script that updates the value.
Forum: Fixing WordPress
In reply to: WordPress Own POT File Invalid on PoEditEasy CSV Importer now has translation files in place.
Translation is yet to be complete but the prep has been done.
Version 6.1.8 has just been released. I think I created this post at about version 4.0 so it has come a long way.
New version of paid edition released today fixing the blank post issue.
Thanks everyone.
Hi
I did fix an issue in the Beta for the full edition that caused blank posts. Something really simple. It must have been released.
I will update the plugin with a fix asap.
Did you say you tried the test blog and that worked fine? That was updated with the most recent paid edition beta.
Thanks for trying the plugin and test site. ECI is nearly finished so to speak. Just need to complete the Taxonomy panel and the plugin will have everything anyone needs.