Equal Web Creative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Theme creation and editingI always use Dreamweaver in order to maniplulate PHP code but other software is available depending on your platform. Coda is supposed to be good for the Mac.
In terms of acknowledgements that you should be fine to remove them as the frameworks should have a GPL licence if they are being used with WordPress.
Forum: Themes and Templates
In reply to: No Theme , Just functionsYes.
You just need to design a theme that looks exactly like your current site design and then the user will notice no difference.
You will probably find it easier to have your entire site based on WordPress though.
Forum: Themes and Templates
In reply to: google will not recognize my website_html problem?How long has your site been live?
Perhaps some SEO plugins would help. Search SEO in WP plugins section.
Forum: Themes and Templates
In reply to: Couple CSS / Commenting questionsTo remove the ability for visitors to comment on your site then remove the call to `<?php comments_template(); ?> in your themes single.php file.
I think the weird space comes from the
min-height: 400px;on your #content css rule.Forum: Themes and Templates
In reply to: Fatal Eror when changing a themeIs the theme you are activating a child theme of the one that the site was already using?
Forum: Themes and Templates
In reply to: Styling the nav (wp_nav_menu) with classesI cannot access the site at the moment as there is a PHP error
Forum: Themes and Templates
In reply to: WP3 Multiple sites-Child theme selectionIf you want to create a child theme then the folders you create must be outside of the Twenty Ten folder. Then select the child theme as the ‘active’ theme for your site. It will use the Twenty Ten as its parents (if set up correctly) by default without it being activated.
Take a look here for more about creating a child theme:
Forum: Fixing WordPress
In reply to: Duplicate Static HomepageDepends on what theme you are using but I guess that your theme is adding the home link into the navigation bar automatically. That way when you add the page it gives you two.
Try looking in header.php in your themes folder and see if there is a call to a link to the home of your blog.
Forum: Fixing WordPress
In reply to: php include not workingIt is probably because the file you are trying to include is not a PHP file. Save it as PHP instead and then try it.
Forum: Fixing WordPress
In reply to: How to add my photo to comments?Forum: Fixing WordPress
In reply to: Is there a setting to overwrite jpg in media file?Can’t you just delete the old ones first. They when the new ones upload, they will have the same name and then they should just display.
Forum: Networking WordPress
In reply to: Get Blog Path with WordPress 3.0 Multisite@djilmour
Thanks for that – just the stuff I was looking for and it works a treat. Thats saved me a lot of hassle 🙂
My solution in the end was this to output the path of the current blog/site:
<?php global $current_blog; $blog_path = $current_blog->path; echo $blog_path; ?>Forum: Fixing WordPress
In reply to: if custom field is blank helpTry using this code:
<?php if ( get_post_meta($post->ID, "random-thumb", true) ) { ?> <?php // place code here for what to do when custom field is present ?> <?php } else { ?> <?php // place code here for when custom field is not present ?> <?php } ?>Forum: Fixing WordPress
In reply to: Offset not working in category pageCould it be this part:
<?php $my_query = new WP_Query('showposts=2&offset=1'); ?> <?php while(have_posts()) : the_post();Shouldn’t that be:
<?php $my_query = new WP_Query('showposts=2&offset=1'); ?> <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>Forum: Fixing WordPress
In reply to: Plugin to Control Access to Certain PagesGive this one a try