WebTechGlobal
Forum Replies Created
-
This is a duplicate, ongoing discussion regarding this here…
http://ww.wp.xz.cn/support/topic/wp-changing-my-adsense-id?replies=8#post-2196229
Forum: Fixing WordPress
In reply to: Thumbnails not working after WP upgradeNo one edited your core files by any chance did they? Need to rule out the possibility that a function has been removed. Some people forget they paid a lot of money to a developer who decides to edit the core files!
Thats never good.
Forum: Fixing WordPress
In reply to: Thumbnails not working after WP upgradeCould be a security thing. Not sure, would need to investigate more and it could be hard to determine.
Forum: Fixing WordPress
In reply to: Sidebar won't show on frontpage, but shows fine on other pagesI’m thinking your widgets before you made the modification were only hard coded, rather than from the widget page?
Have you added widgets to your sidebar on the widget page? Just making sure you have not added get_sidebar() and it is working, just no widgets.
Been a while since I worked on themes but normally we use sidebar.php, are you possibly missing out something there?
So are you also saying this message and search form do not appear?
<?php get_sidebar();?> <h2><?php _e('The page youre looking for doesnt exist', 'blank'); ?></h2> <div class="search-404">try putting something just before the get_sidebar line and if that displays then we know it is stepping into
<?php } elseand then blank sidebar would indicate get_sidebar is not working properly because from the code you have shown that message regarding no page being found and a search box should appear.
I could probably fix it quick enough with access to your theme but I need to log off soon, past 1am here.
Forum: Fixing WordPress
In reply to: Need help with incorporation wordpress into existing site.To open in your own site you could do this.
Instead of the full post url to the WP installation, you have a url that has the post ID only…
http://beckin.com/post.php?wppostid=324
post.php would be a script that uses $_GET[‘wppostid’], if it is not set in the url it could display a notice and possibly a list of your latest posts.
If the ID is set such as in my example. Your page would then query and get the entire post content using the post ID passed by url.
Know much PHP?
This approach above is fine. It may suit you. The approach I linked to is basically the idea that your entire post is on the page, you just don’t see it all. User clicks then it appears without changing page.
Also I don’t think your allowed to discuss money on here 😉
Forum: Fixing WordPress
In reply to: How do you hide links from non signed in users?That does sound messy, are you sure your not meant to do more with the blank page?
Settings to show registration form maybe?
This question can’t be fully answered without knowing what plugin your talking about. Also, it would require php modifications to be made, do you know PHP?
Would need to add code that checks if visitor is logged in. Maybe you also need to check that the user logged in has some other status such as they have paid for a service or product?!
I would offer to to do this but I’m on here seeking help myself and deep into a project. Get hold of me in a few days if your still stuck.
Forum: Fixing WordPress
In reply to: Using lightbox when clicking on Thumbnails in albumsI think jQuery light box is one I used.
When you go to add the image to post, on the media window there is a checkbox for applying lightbox.
I may be thinking of another plugin I use, there are so many. The one I’m talking about makes it easy, simple checkbox on the same screen where you enter or edit image details.
Forum: Fixing WordPress
In reply to: NEED TEMPLATE AND WIDGET HELPI think you should take things one step at a time.
Firstly WordPress is a blog CMS, it will be a blog when you install it. With the blog posts on home page.
Go into Settings, browse all settings and complete them. They include your site title.
Go to plugins and search for a Calander plugin.
Go to Appearance, Widgets and look for a calander widget for displaying in your sidebar.
As for everything else I recommend searching for plugins that do the task, considering theme modifications and asking more questions once you have your blog running with the initial steps complete.
Good luck and have fun
Forum: Fixing WordPress
In reply to: Thumbnails not working after WP upgradeWordPress does not seem to allow some URL being used for thumbnails.
I came accross this with a customer who imported thousands of records and created thousands of posts using Easy CSV Importer. Everything was great apart from specific affiliate url which were fine on their own but not in WordPress for featured images.
Dynamic url are a no no, are your url dynamic?
I would like to know more about anything you find on this. To get around it I had to stop using the images externally and copy them all to the server, use them locally.
I would help you with this in terms of actual code but I’m really short of time right now, on here seeking help myself and deep in a project.
Forum: Fixing WordPress
In reply to: redirect all posts 301I think there is a plugin named WP Redirect or similiar.
Forum: Fixing WordPress
In reply to: auto postEasy CSV Importer is the best automatic post plugin.
But you must put your posts into a CSV file. You can do this by putting it into a spreadsheet and exporting it from Excel as CSV.
There are various other ways also.
Forum: Fixing WordPress
In reply to: Sidebar won't show on frontpage, but shows fine on other pagesSo it seems the value $breathe_ads_bottom is set to yes.
From what I read at the start of your code this variable is set using options data. Could it simply be your theme or a plugin setting?
Forum: Fixing WordPress
In reply to: Sidebar won't show on frontpage, but shows fine on other pagesFrom what I read, your sidebar is not meant to show on all pages…
<?php if ( $breathe_ads_bottom == yes ) { ?> // DO THIS... <div class="bottom-ads"> <?php echo stripslashes($breathe_ads_code_bottom); ?> </div> <?php } else // display sidebar... get_sidebar();?>[Please post code snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: query posts in page template not working after 3.1.4. upgradeAh ok you must have been editing when I posted lol
Forum: Fixing WordPress
In reply to: query posts in page template not working after 3.1.4. upgradeHave you checked blog settings, I just remembered there is a setting to limit number shown aswel as doing it in code?